.height-margin{margin: 20px auto;}
.profile-cover{-webkit-filter: blur(15px);filter: blur(15px);height: inherit;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}

.title {
  font-family: 'Mina', sans-serif;
  font-size: 3em;
  font-weight: 700;
  color: #060606;
  margin: 35px 0;
}

.card-title{
  margin-top: -15px;
}

.elegantshadow {
    color: #000;
  text-shadow: 0 13.36px 8.896px #606060,0 -2px 1px #d2c9c9;
  }

.custom-card {
  position: relative;
  margin-bottom: -3px;
  box-shadow: 0px 6px 38px 0px rgba(0, 0, 0, 0.085);
  will-change: box-shadow;
  transition: box-shadow .3s ease;
  overflow: hidden;
  text-align: center;
}
.custom-card:hover {
  box-shadow: 0px 13px 38px 0px rgba(0, 0, 0, 0.15);
}
.custom-card .card-body {
  padding-top: 5px;
}
.custom-card .card-cover {
  position: relative;
  background: none no-repeat center center / cover;

  height: 100px;

}

.custom-card .circle-image {
  position: absolute;
  background: none no-repeat center center / cover;
  width: 70px;
  height: 70px;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
}
.custom-card .circle-image:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: inset 0 0 0 2px #fff;
  width: calc( 100% + 1px );
  height: calc( 100% + 1px );
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .custom-card .card-cover {
    background: none;
    height: 0;
  }
.card-title{
	margin-top: 15px;
}
  .custom-card .circle-image {
    position: relative;
    bottom: inherit;
    width: 60px;
    height: 60px;
    top: 20px;
    left: 10px;
    transform: none;
  }
  .custom-card .circle-image:before {
    box-shadow: none;
  }
  .custom-card .card-body {
    padding-top: 20px;
    padding-left: 80px;
  }
}