/*!
 * Team Css
 * Version - 1.1.1
 * Copyright (c) 2023 2A digital <info@2adigital.com> and another company
*/

.intro {
    font-size: 16px;
    max-width: 500px;
    margin: 0 auto;
}

.intro p {
    margin-bottom: 0;
}

.people {
    padding: 50px 0;
}

.item {
    margin-bottom: 30px;
}

.item .box {
    text-align: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    height: 300px;
    position: relative;
    overflow: hidden;
}

.item .cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(157, 183, 64, 0.75);
    transition: opacity 0.15s ease-in;
    opacity: 0;
    padding-top: 80px;
    color: #fff;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.15);
}

.item:hover .cover {
    opacity: 1;
}

.item .name {
    font-weight: bold;
    margin-bottom: 8px;
}

.item .title {
    text-transform: uppercase;
    font-weight: bold;
    color: #e5fbbb;
    letter-spacing: 2px;
    font-size: 13px;
    margin-bottom: 20px;
}

.social {
    font-size: 18px;
}

.social a {
    color: inherit;
    margin: 0 10px;
    display: inline-block;
    opacity: 0.7;
}

.social a:hover {
    opacity: 1;
}

/* Phones */
@media only screen and (max-width: 600px) {
    .item .box {
        text-align: center;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: top center;
        height: 400px;
        position: relative;
        overflow: hidden;
    }
}