

.wrapper{
  width:100%;
  float:left;
  margin-top:10px; 
}

.wrapper h1{
  font-family: 'Indie Flower', cursive;
  font-size: 50px;
  margin-bottom: 70px;
  text-align: center;
 /* text-shadow: 0px 15px 12px #000;*/
}

.team{
  width: 100%;
  margin-left:5px;
  margin-right:50px; 
  display: flex;
  justify-content: center;
  text-align: center;
  flex-wrap: wrap;
}

.team .team_member{
  background: #fff;
  margin: 5px;
  margin-bottom:70px;
  width: 250px;
  padding: 20px;
  line-height: 20px;
  color: #8e8b8b;  
  height:auto;
  position: relative;
}

.team .team_member h3{
  color: #81c644;
  font-family:'Josefin Sans', sans-serif;
  font-size: 25px;
  margin-top: 100px;
  margin-bottom: 20px;
}

.team .team_member p.role{
  color: #ccc;
  margin: 12px 0;
  font-size: 20px;
  text-align: center;
  text-transform: uppercase;
}

.team .team_member .team_img{
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: #fff;
  
}

.team .team_member .team_img img{
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  border:2px solid red;
  transition: all 2s ease-in-out;
}

.team .team_member .team_img img:hover{
    transform: rotateY(180deg);
}

.clearfix::after {
  content: "";
  clear: both;
  display: table;
}

.myicons{
    color:blue;
    font-size:30px;
    margin:12px;
    justify-content: space-between;
}


.myicons:hover{
    color:red;
}

@media screen and (max-width: 1050px) {

   .team{
     width: 100%;
     margin-left:0px;
    /* margin-right:70px; */
    }
}

@media screen and (max-width: 650px){
    .wrapper{
        width:100%;
        margin-top:40px;
    }
    .team{
        width:100%;
        margin-left:0px;

    }
}