.card::after,
.card img {
  border-radius: 50%;
}

.card {
  display: flex;
  padding: 2.5rem 2rem;
  border-radius: 10px;
  max-width: 500px;
  box-shadow: 0 0 30px rgba(0, 0, 0, .15);
  margin: 1rem 0;
  position: relative;
  transform-style: preserve-3d;
  overflow: hidden;
  background-color: var(--newlandingtile);
}
.card::before,
.card::after {
  content: '';
  position: absolute;
  z-index: -1;
}
.card::before {
  width: 100%;
  height: 100%;
  /*border: 1px solid #FFF; */
  border-radius: 10px;
  top: -.7rem;
  left: -.7rem;
}
.card::after {
  height: 15rem;
  width: 15rem;
  background-color: #00bcff;
  top: -8rem;
  right: -8rem;
  /* box-shadow: 2rem 6rem 0 -3rem #FFF */
}

.card img {
  width: 8rem;
  min-width: 80px;
  box-shadow: 0 0 0 5px #FFF;
  background-color: #fff;
}

.infos {
  margin-left: 1.5rem;
}

.name {
  margin-bottom: 1rem;
}
.name .name-title {
  font-size: 2rem;
  display: block;
  font-weight: 700;
}
.name .name-subtitle {
  font-size: 1.2rem;
  display: block;
font-weight: 600;
}

.links a {
  min-width: 120px;
  padding: .5rem;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: all .25s linear;
  text-decoration: none;
  text-align: center;
  display: inline-block;
}
.links .skype,
.links .telegram:hover {
  background-color: #2396f7;
  color: #FFF;
}
.links .telegram,
.links .skype:hover{
  background-color: #4a5662;
  color: #FFF;
}

@media screen and (max-width: 450px) {
  .card {
    display: block;
  }
  .infos {
    margin-left: 0;
    margin-top: 1.5rem;
  }
  .links a {
    min-width: 100px;
  }
}
