.footer {
  width: 100%;
  background: #000;
  min-height: 100px;
  padding: 20px 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.footer .footer-top {
  width: 100%;
  display: flex;
  justify-content: space-around;
}
.footer .footer-center-and-left {
  display: flex;
  flex-direction: row;
  width: 75%;
  justify-content: space-around;
}
.footer .footer-left .social-icon {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-around;
  height: 100%;
  max-width: 300px;
}
.footer .social-icon a {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.footer .social-icon a span {
  font-size: 14px;
  margin-left: 10px;
  letter-spacing: 1px;
  margin-top: 10px;
}

.footer .social-icon,
.menu {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px 0;
  flex-wrap: wrap;
}

.footer .social-icon__item,
.menu__item {
  list-style: none;
}

.footer .social-icon__link {
  font-size: 2rem;
  color: #fff;
  margin: 0 10px;
  display: inline-block;
  transition: 0.5s;
}
.footer .social-icon__link:hover {
  transform: translateY(-10px);
}
.footer .footer-center .menu {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  height: 100%;
}
.footer .menu__link {
  font-size: 1.2rem;
  color: #fff;
  margin: 0 10px;
  display: inline-block;
  transition: 0.5s;
  text-decoration: none;
  opacity: 0.75;
  font-weight: 300;
  letter-spacing: 1px;
}

.footer .menu__link:hover {
  opacity: 1;
}
.footer .footer-right {
  display: flex;
  align-items: center;
}
.footer .footer-right .logo {
  position: relative;
}

.footer .footer-right .logo :nth-child(2) {
  position: absolute;
  top: 0;
  left: 50px;
  animation-name: lamp;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

@keyframes lamp {
  0% {
    transform: rotateZ(0deg);
  }

  25% {
    transform: rotateZ(15deg);
  }

  50% {
    transform: rotateZ(0deg);
  }

  75% {
    transform: rotateZ(-15deg);
  }

  100% {
    transform: rotateZ(0deg);
  }
}

.footer p {
  color: #918e8e;
  margin: 15px 0 10px 0;
  font-size: 1rem;
  font-weight: 300;
  text-align: center;
  margin-top: 100px;
}

@media screen and (max-width: 1130px) {
  .footer {
    flex-direction: column;
    padding: 20px 5px;
  }
}

@media screen and (max-width: 700px) {
  .footer .menu__link {
    font-size: 1rem;
  }
  .footer p {
    font-size: 12px;
  }

  .footer .footer-top {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .footer .footer-right .logo {
    margin-top: 50px;
  }
}
