body{
    background: #f3f3f3;
    font-family: 'Montserrat';
}
.header{
    text-align: center;
    font-size: 50px;
    text-transform: uppercase;
    font-weight: 700;
}

.header span{
    color: #1B5E20;
}
.sub-text{
    text-align: center;
    width: 60%;
    margin: 0 auto 5%;
    font-size: 20px;
}
.single-team{
    padding: 35px;
    transition: all .5s ease;
    border-radius: 10%;
}
.img-area{
    width: 120px;
    height: 120px;
    overflow: hidden;
    display: inline-block;
    border-radius: 50%;
}

.img-area img{
    width: 100%;
}

.single-team h2{
    font-size: 25px;
    font-weight: 500;
}
.single-team h4{
    font-size: 16px;
    font-weight: 500;
}
.socials i{
    margin: 0 15px;
}
.single-team:hover{
    background: radial-gradient(circle, #3A8F35, #1B5E20);
    color: #fff;
}

.single-team p{
    font-size: 20px;
}