.team {
    padding: 64px 0;
}

.our-team {
    padding: 20px 15px 30px;
    background: #fff;
    border-radius: 4px;
    text-align: center;
    border: 1px solid rgb(196, 196, 196);
}

.our-team .pic {
    display: inline-block;
    width: 80%;
    height: 80%;
    background: #fff;
    padding: 10px;
    margin-bottom: 25px;
    transition: all 0.5s ease 0s;
}

.our-team:hover .pic {
    background: orange;
    border-radius: 50%;
}

.pic img {
    width: 100%;
    height: auto;
    border-radius: 50%;
}

.our-team .title {
    display: block;
    font-size: 20px;
    font-weight: 600;
    color: #2e282a;
    text-transform: uppercase;
    margin: 0 0 7px 0;
}

.our-team .post {
    display: block;
    font-size: 15px;
    color: orange;
    text-transform: capitalize;
    margin-bottom: 15px;
}

.our-team .social {
    padding: 0;
    margin: 0;
    list-style: none;
}

.our-team .social li {
    display: inline-block;
    margin-right: 5px;
}

.our-team .social li a {
    display: block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
    font-size: 15px;
    color: orange;
    border: 1px solid orange;
    transition: all 0.5s ease 0s;
}

.our-team:hover .social li a {
    background: orange;
    color: #fff;
    text-decoration: none;
}

@media only screen and (max-width: 990px) {
    .our-team {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .team {
        padding: 30px 0 0;
    }

    .our-team {
        padding: 20px 15px 30px;

    }

    .our-team .pic {
        width: 50%;
        height: 50%;
    }

}
