@import url('https://fonts.googleapis.com/css?family=Allura|Josefin+Sans');

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body{
  background: rgb(0,0,63);
  background: linear-gradient(90deg, rgba(0,0,63,1) 0%, rgba(11,40,106,1) 35%, rgba(69,80,153,1) 100%);   
  font-family: 'Josefin Sans', sans-serif;
}

.wrapper{
  margin-top: 75px;
}

.wrapper h1{
  font-family: 'Allura', cursive;
  font-size: 52px;
  margin-bottom: 50px;
  text-align: center;
  color: white;
}

.team{
  display: flex;
  justify-content: center;
  width: auto;
  text-align: center;
  flex-wrap: wrap;
}

.team .team_member{
  margin: 5px;
  margin-top: 75px;
  margin-bottom: 50px;
  width: 300px;
  padding: 20px;
  line-height: 20px;
  color: #FFF;  
  position: relative;
}

.team .team_member h3{
  color: #00B85C;
  font-size: 26px;
  margin-top: 75px;
}

.team .team_member p.role{
  color: #86B2B8;
  margin-top: 12px 0;
  font-size: 12px;
  text-transform: uppercase;
}

.team .team_member .team_img{
  position: absolute;
  top: -75px;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 150px;
  border-radius: 50%;
}

.naseeb {
  background: rgb(40,159,243);
  background: linear-gradient(90deg, rgba(40,159,243,1) 0%, rgba(22,204,205,1) 35%, rgba(1,251,166,1) 100%);
}

.mukul {
  background: rgb(49,171,188);
background: linear-gradient(90deg, rgba(49,171,188,1) 0%, rgba(114,221,235,1) 50%, rgba(53,158,172,1) 100%);
}

.jatin {
  background: rgb(242,113,155);
  background: linear-gradient(90deg, rgba(242,113,155,1) 0%, rgba(248,130,134,1) 50%, rgba(255,147,115,1) 100%);
}

.team .team_member .team_img img{
  width: 150px;
  height: 150px;
  padding: 5px;
}

.team_member .social {
    margin: 0;
    padding: 5px;
}
.social ul li {
    margin: 3px;
    list-style: none outside none;
    display: inline-block;
}

.social i {
    width: 36px;
    height: 36px;
    color: #FFF;
    background-color: #909AA0;
    font-size: 18px;
    text-align:center;
    padding-top: 12px;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    -o-border-radius: 50%;
    transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    -webkit-transition: all ease 0.3s;
    -o-transition: all ease 0.3s;
    -ms-transition: all ease 0.3s;
}

.social i:hover {
    color: #FFF;
    text-decoration: none;
    transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    -webkit-transition: all ease 0.3s;
    -o-transition: all ease 0.3s;
    -ms-transition: all ease 0.3s;
}

.social .fa-facebook:hover {
    background: #4060A5;
}

.social .fa-twitter:hover {
    background: #00ABE3;
}

.social .fa-github:hover {
    background: #343434;
}

.social .fa-linkedin:hover {
    background: #0094BC;
}

.social .fa-instagram:hover {
    background: #375989;
}

.social .fa-envelope:hover {
    background: #DB4437;
}