.wrapper{
    margin-top: 10%;
    background-color: #ff0000;
}

.wrapper h1{
    font-family: 'Allura', cursive;
    font-size: 52px;
    margin-bottom: 60px;
    text-align: center;
}

.team{
    display: flex;
    justify-content: center;
    width: auto;
    text-align: center;
    flex-wrap: wrap;
}

.team .team_member{
   // background:0 ;
    margin: 5px;
    margin-bottom: 50px;
    width: 200px;
    padding: 10px;
    line-height: 20px;
    color: #fff;
    position: relative;
}

.team .team_member h3{
    color: #fff;
    font-size: 20px;
    margin-top: 100px;
}

.team .team_member p.role{
    color: #fff;
    margin: 4rem 0;
    font-size: 16px;
    position: relative;
    top: -30px;
    /*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;
    padding: 5px;
}

  .__gateway{
      width: 1000px;
      position: relative;
      display: flex;
      justify-content: space-between;
  }
  .__gateway .card {
      position: relative;
      border-radius: 10px;

  }
  .__gateway .card .icon{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      transition: 0.7s;
      z-index:1 ;
  }
  .__gateway .card:nth-child(1).icon{
      background: #ff0000;
  }
  .__gateway .card:nth-child(2).icon{
      background:#4267b2 ;
  }
  .__gateway .card:nth-child(3).icon{
      background: #00aced;
  }
