.team-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 85%;
    margin: auto;
    padding-top: 40px;
}

.our-team {
    background: #f7f5ec;
    text-align: center;
    overflow: hidden;
    position: relative;
    margin: 0px 25px;
    padding: 30px 4%;
}

.our-team .pic {
    display: inline-block;
    width: 130px;
    height: 130px;
    margin-bottom: 0px;
    z-index: 1;
    position: relative;
}

.our-team:hover .pic::before {
    height: 100%;
}

.our-team .pic:after {
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #f7931b;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.our-team .pic img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    transform: scale(1);
    transition: all 0.9s ease 0s;
}

.our-team:hover .pic img {
    box-shadow: 0 0 0 14px #f7f5ec;
    transform: scale(0.7);
}

.our-team .team-content {
    margin-bottom: 30px;
}

.our-team .title {
    font-size: 22px;
    font-weight: 700;
    color: #4e5052;
    letter-spacing: 1px;
    margin-top: 10px;
}

.our-team .post {
    display: block;
    font-size: 15px;
    color: #4e5052;
}

.our-team .social {
    width: 100%;
    padding: 0;
    margin: 0;
    background: #d1cbc1;
    position: absolute;
    bottom: -100px;
    left: 0;
    max-height: 30px;
    transition: all 0.5s ease 0s;
}

.twitter {
    align-items: center;
}

.our-team:hover .social {
    bottom: 0;
}

.our-team .social li {
    display: inline-block;
}

.our-team .social li a {
    text-decoration: none;
    display: block;
    padding: 0px;
    font-size: 17px;
    color: #fff;
    transition: all 0.3s ease 0s;
}

.our-team .social li a:hover {
    color: #1785eb;
    background: #f7f5ec;
    width: 50px;
}

@media (max-width: 840px) {
    .team-container {
        flex-direction: column;
    }
    .our-team {
        width: 40%;
        margin-top: 20px;
    }
    
}

@media (max-width: 915px) {
    .team-container {
        width: 80%;
    }
    .our-team .pic {
        width: 80px;
        height: 80px;
    }
    .our-team .title {
        font-size: 18px;
    }
    .our-team .post {
        font-size: 14px;
    }
    .our-team:hover .pic img {
        box-shadow: 0 0 0 7px #f7f5ec;
        transform: scale(0.7);
    }
}

@media all and (min-width: 916px) and (max-width: 991px) {
    .team-container {
        width: 90%;
    }
    .our-team .pic {
        width: 100px;
        height: 100px;
    }
    .our-team .title {
        font-size: 20px;
    }
    .our-team .post {
        font-size: 15px;
    }
}