.team-section {
    position: relative;
    padding: 40px 0;
    background-color: #edfbff;
}

.team-section .container {
    width: 100%;
    max-width: 1162px;
}

.team-section-header {
    width: 100%;
    max-width: 650px;
    margin: 0 auto 30px;
    text-align: center;
}

.team-section-header h3 {
    font-size: 25px;
    color: #000;
    font-weight: 500;
    padding: 0 0 15px;
    text-transform: none;
    font-family: 'Poppins', sans-serif;
}

.team-section-header p {
    font-size: 15px;
    line-height: 1.5em;
    color: #6e6e6e;
    font-weight: 400;
    padding: 0 0 20px;
    text-transform: none;
    font-family: 'Poppins', sans-serif;
}

.team-section-header p:last-child {
    padding-bottom: 0;
}

.team-feed-box {
    margin-bottom: 20px;
    transition: all .4s ease-in-out;
    position: relative;
}

.team-feed-image-box {
    width: 100%;
    height: 100%;
    background: #ffffff;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 0 15px rgb(0,0,0,4%);
    transition: all .4s ease-in-out;
}

.team-feed-image-box img {
    width: 100%;
    height: 100%;
}

.team-feed-info-box {
    width: 100%;
    max-width: 210px;
    background: #ffffff;
    position: relative;
    box-shadow: 0 0 15px rgb(0,0,0,10%);
    border-radius: 0 10px 10px 10px;
    margin-top: -50px;
    padding: 22px 15px 22px 18px;
}

.team-feed-info-box::after {
    content: "";
    position: absolute;
    top: -1.5px;
    left: 0;
    width: 82px;
    background: #58cafe;
    height: 3px;
}

.team-feed-info-box::before {
    content: "";
    position: absolute;
    top: -1.5px;
    left: 0;
    width: 0;
    background: #4b1fba;
    height: 3px;
    z-index: 99;
    transition: width .4s ease-in-out;
}

.team-feed-box:hover .team-feed-info-box::before {
    width: 82px;
}

.team-feed-info-box h4 {
    padding: 0 0 0;
    font-size: 17px;
    color: #4b1fba;
    text-transform: capitalize;
    margin: 0 0 10px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.team-feed-info-box h5 {
    padding: 0 0 0;
    font-size: 14px;
    color: #818286;
    font-weight: 300;
    letter-spacing: 1.4px;
    font-family: 'Poppins', sans-serif;
}

@media (min-width: 768px) {
    .team-section {
        padding: 60px 0 40px;
    }

    .team-section-header {
        margin: 0 auto 40px;
    }

    .team-feed-box {
        margin-bottom: 30px;
    }
}

@media (min-width: 1025px) {
    .team-section {
        padding: 80px 0 75px;
    }

    .team-section-header {
        margin: 0 auto 60px;
    }

    .team-feed-box {
        margin-bottom: 50px;
    }

    .team-section-header h3 {
        font-size: 38px;
    }
}
