.container {
    background: #fff;
    margin-top: 5rem;
}

.our-team {
    padding: 1.2rem 0.75rem;
    background: #fff;
    border-radius: 1rem;
    text-align: center;
    border: 0.5px solid #60c5a8;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 10px 0px, rgba(0, 0, 0, 0.5) 0px 2px 25px 0px;
}

.our-team .pic {
    display: inline-block;
    width: 100%;
    height: 100%;
    background: #fff;
    padding: 0.75rem;
    margin-bottom: 1.5rem;
    transition: all 0.5s ease 0s;
}


/* .our-team:hover .pic {
    background: #60c5a8;
    border-radius: 100%;
} */

.pic img {
    width: 100%;
    height: auto;
    border-radius: 50%;
}

.our-team .title {
    display: block;
    font-size: 1.5rem;
    font-weight: 600;
    color: #60c5a8;
    margin: 0 0 7px 0;
}

.our-team .post {
    display: block;
    font-size: 1rem;
    color: #60c5a8;
    margin-bottom: 1rem;
}

.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: 2rem;
    height: 2rem;
    line-height: 2rem;
    border-radius: 50%;
    font-size: 1rem;
    color: #60c5a8;
    border: 1px solid #60c5a8;
    transition: all 0.5s ease 0s;
}

.our-team:hover .social li a {
    background: #60c5a8;
    color: #fff;
}

.social li a:hover {
    background-color: #025784 !important;
    border: none;
    text-decoration: none;
}

@media only screen and (max-width: 992px) {
    .our-team {
        margin-bottom: 2rem;
    }
}