footer {
  height: 400px;
  width: 100%;
  margin-top: 100px;
  background: -webkit-gradient(linear, right top, left top, from(#110741), to(#251e33));
  background: linear-gradient(to left, #110741, #251e33);
  position: relative;
  padding-top: 120px;
  font-family: "Cairo",Sans-serif;
  /* Add Zoom Animation */
}

footer .cap {
  position: absolute;
  top: -2px;
  left: 0;
  width: 100%;
}

footer .programmer {
  position: absolute;
  height: 60px;
  width: 60px;
  border-radius: 50%;
  background-color: white;
  text-align: center;
  top: 0;
  left: calc(50% - 30px);
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 30px;
  -webkit-box-shadow: 0 0 10px #000;
          box-shadow: 0 0 10px #000;
  cursor: pointer;
  padding: 4px;
}

footer .programmer-info {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 6;
  /* Sit on top */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: rgba(255, 255, 255, 0.418);
  /* Black w/ opacity */
  padding-top: 100px;
  text-align: center;
}

footer .programmer-info .card-info {
  float: left;
  background-color: #2f334b;
  -webkit-box-shadow: 0 0 8px black;
          box-shadow: 0 0 8px black;
  min-height: 300px;
  width: 500px;
  max-width: 95%;
  left: calc(50% - 250px);
  position: relative;
  text-align: center;
  padding: 20px;
  border-radius: 20px;
}

footer .programmer-info .card-info .left-arrow {
  position: absolute;
  left: 20px;
  top: 20px;
  color: white;
  font-size: 22px;
  cursor: pointer;
}

footer .programmer-info .card-info .left-arrow:hover {
  -webkit-animation: rotate 0.3s;
          animation: rotate 0.3s;
}

@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
  }
  100% {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
}

@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
  }
  100% {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
}

footer .programmer-info .card-info .imgcontnr {
  position: relative;
  height: 130px;
  width: 130px;
  background-color: greenyellow;
  border-radius: 50%;
  overflow: hidden;
  right: 50%;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
}

footer .programmer-info .card-info .imgcontnr .pro-img {
  width: 100%;
  height: 100%;
}

footer .programmer-info .card-info .info {
  margin-top: 5px;
  padding: 10px;
}

footer .programmer-info .card-info .info .name {
  color: white;
  font-size: 25px;
}

footer .programmer-info .card-info .info .name span {
  font-size: 27px;
  font-weight: 800;
}

footer .programmer-info .card-info .info .job {
  color: #838383;
  font-size: 15px;
}

@media screen and (max-width: 530px) {
  footer .programmer-info .card-info {
    left: 2.5%;
  }
}

footer .programmer-info hr {
  background-color: #7c7c7c;
}

footer .programmer-info .prosocial {
  width: 100%;
  position: relative;
  text-align: center;
  margin-top: 20px;
}

footer .programmer-info .prosocial a {
  display: inline-block;
  vertical-align: middle;
}

footer .programmer-info .prosocial a i {
  margin-left: 10px;
  color: white;
  font-size: 23px;
  border: 1px solid white;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  padding: 10px;
  -webkit-transition-duration: 300ms;
          transition-duration: 300ms;
}

footer .programmer-info .prosocial a .fa-whatsapp:hover {
  background-color: #4FCE5D;
  color: white;
  text-shadow: 0 0 3px #000;
}

footer .programmer-info .prosocial a .fa-facebook-f:hover {
  background-color: #3b5998;
  color: white;
}

footer .programmer-info .prosocial a .fa-youtube:hover {
  background-color: white;
  color: red;
}

footer .animate {
  -webkit-animation: animatezoom 0.6s;
  animation: animatezoom 0.6s;
}

@-webkit-keyframes animatezoom {
  from {
    -webkit-transform: scale(0);
  }
  to {
    -webkit-transform: scale(1);
  }
}

@keyframes animatezoom {
  from {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

footer .footer-menu {
  width: 100%;
  padding: 10px;
  text-align: center;
}

footer .footer-menu a {
  display: inline-block;
  padding: 10px;
  font-size: 16px;
  color: white;
  text-decoration: none;
}

footer .footer-menu a li {
  list-style-type: none;
}

footer .footer-menu a:hover {
  color: #00b96c;
  text-decoration: none;
}

footer .social {
  width: 100%;
  position: relative;
  text-align: center;
  margin-top: 50px;
}

footer .social a {
  display: inline-block;
  vertical-align: middle;
}

footer .social a i {
  margin-left: 10px;
  color: white;
  font-size: 23px;
  border: 1px solid white;
  width: 45px;
  height: 45px;
  padding: 10px;
  -webkit-transition-duration: 300ms;
          transition-duration: 300ms;
}

footer .social a .fa-snapchat-ghost:hover {
  background-color: #FFFC00;
  color: white;
  text-shadow: 0 0 3px #000;
}

footer .social a .fa-instagram:hover {
  background: radial-gradient(circle at 33% 100%, #fed373 4%, #f15245 30%, #d92e7f 62%, #9b36b7 85%, #515ecf);
  color: white;
  text-shadow: 0 0 3px #000;
}

footer .social a .fa-facebook-f:hover {
  background-color: #3b5998;
  color: white;
}

footer .social a .fa-twitter:hover {
  background-color: #1DA1F2;
  color: white;
}

footer .social a .fa-whatsapp:hover {
  background-color: #25D366;
  color: white;
}

footer .social a .fa-youtube:hover {
  background-color: rgba(255, 255, 255, 0.705);
  color: red;
}

footer .copyrights {
  text-align: center;
  font-size: 15px;
  color: white;
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 5px;
}
/*# sourceMappingURL=footer.css.map */