@import "https://fonts.googleapis.com/css?family=Open+Sans:300,400";
.firstinfo,
.badgescard {
  display: flex;

  align-items: center;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

.content_club {
  margin: 20px 0px;
  position: relative;
  animation: animatop 0.9s cubic-bezier(0.425, 1.14, 0.47, 1.125) forwards;
}

.card_clubs {
  padding: 20px;
  border-radius: 3px;
  background-color: white;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}
.card_clubs:after {
  content: "";
  display: block;
  width: 190px;
  height: 300px;
  background: #c5e6f9;
  position: absolute;
  animation: rotatemagic 0.75s cubic-bezier(0.425, 1.04, 0.47, 1.105) 1s both;
}

.firstinfo {
  z-index: 2;
  position: relative;
}
.firstinfo i {
  border-radius: 50%;
  font-size: 40px;
  background-color: white;
  padding: 10px;
}
/* .profileinfo {
  width: 58%;
} */

.firstinfo .profileinfo a {
  text-decoration: none;
}
.firstinfo .profileinfo {
  padding: 0px 28px;
}
.firstinfo .profileinfo h1 {
  font-size: 20px;
}
.firstinfo .profileinfo h3 {
  font-size: 14px;
  color: #000;

}
/* .club_life {
  width: 30%;
} */
.club_life a {
  border: 1px solid black;
  font-size: 16px;
  border-radius: 5px;
  padding: 8px 12px;
  color: black;
  text-decoration: none;
}

@keyframes animatop {
  0% {
    opacity: 0;
    bottom: -500px;
  }
  100% {
    opacity: 1;
    bottom: 0px;
  }
}
@keyframes animainfos {
  0% {
    bottom: 10px;
  }
  100% {
    bottom: -42px;
  }
}
@keyframes rotatemagic {
  0% {
    opacity: 0;
    transform: rotate(0deg);
    top: -24px;
    left: -253px;
  }
  100% {
    transform: rotate(-30deg);
    top: -24px;
    left: -78px;
  }
}

@media screen and (max-width: 500px) {
  .firstinfo .profileinfo {
    padding: 0px 2px;
    text-align: center;
    margin: 10px 0;
  }
  .firstinfo,
  .badgescard {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
  .club_life a {
    border: 1px solid black;
    font-size: 14px;
    border-radius: 5px;
    padding: 6px 8px;
    color: black;
    text-decoration: none;
  }
}
