body .frame .social.twitter:hover, body .frame .social.twitter:focus, body .frame .social.linkedin:hover, body .frame .social.linkedin:focus, body .frame .social.gmail:hover, body .frame .social.gmail:focus {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 0;
  opacity: .8;
  z-index: 1;
  cursor: pointer;
}

body .frame .social.twitter:hover i, body .frame .social.twitter:focus i, body .frame .social.linkedin:hover i, body .frame .social.linkedin:focus i, body .frame .social.gmail:hover i, body .frame .social.gmail:focus i {
  opacity: 1;
  font-size: 5vw;
}

body {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

body .frame {
  width: 24vw;
  height: 24vw;
  border-radius: 5%;
  overflow: hidden;
  position: relative;
}

body .frame .picture {
  width: 100%;
  height: 100%;
  background: gray;
  z-index: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-transition: all 600ms cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: all 600ms cubic-bezier(0.075, 0.82, 0.165, 1);
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}

body .frame .social {
  position: absolute;
  display: -ms-grid;
  display: grid;
  right: 1vw;
  width: 10%;
  height: 10%;
  border-radius: 50%;
  z-index: 2;
}

body .frame .social a {
  display: contents;
}

body .frame .social a i {
  color: white;
  margin: 7px;
  opacity: 1;
}

body .frame .social.twitter {
  bottom: 74%;
  background-color: #55acee;
}

body .frame .social.linkedin {
  bottom: 41%;
  background-color: #007bb5;
}

body .frame .social.gmail {
  bottom: 8%;
  background-color: #D44638;
}

body .frame:hover .picture, body .frame.focus .picture {
  -webkit-transition: all 600ms cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: all 600ms cubic-bezier(0.075, 0.82, 0.165, 1);
  -webkit-transform: scale(1.3) rotate(10deg);
          transform: scale(1.3) rotate(10deg);
}

body .card:hover {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  background: #55acee;
  height: 40%;
}

body .card:hover h4,
body .card:hover h6 {
  color: white;
}
/*# sourceMappingURL=card.css.map */