.section-team {
    position: relative;
    .team-item {
        position: relative;
        transition: 0.4s;
        cursor: pointer;
        .team-img {
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(180deg, #3C3D3E66, #3c3d3e26);
            border-radius: 48px;
            padding: 24px 8px 0;
            overflow: hidden;
            transition: 0.4s;
            position: relative;
            img {
                width: 100%;
            }
            &:before {
                content: "";
                width: 100%;
                height: 100%;
                position: absolute;
                bottom: 0;
                right: 0;
                border-radius: 48px;
                background: #00000080;
                transition: 0.4s;
                opacity: 0;
            }
        }
        .team-body {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-top: 16px;
            .team-content {
                display: flex;
                flex-direction: column;
                text-align: center;
                .name {
                    font-size: 24px;
                    font-family: var(--SemiBold);
                    transition: 0.4s;
                }
                .post {
                    font-size: 18px;
                    font-family: var(--Medium);
                }
            }
        }
        &:hover .name {
            color: var(--color2);
        }
    }
    .social-media {
        display: flex;
        gap: 24px;
        margin-top: clamp(14px, 2vw, 16px);
        a {
            width: 46px;
            height: 46px;
            background: #707070;
            border-radius: 50%;
            color: white;
            font-size: 22px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: 0.4s;
            &:hover {
                background: var(--color2);
            }
        }
    }
}
@media only screen and (max-width: 768px) {
    .section-team {
        .team-item {
            .team-body {
                opacity: 1;
                bottom: 100px;
                transform: translateX(50%);
                top: auto;
            }
            .team-img:before {
                opacity: 1;
                background: linear-gradient(360deg, #000000 0%, rgba(0, 0, 0, 0) 37.02%);
            }
        }
        .social-media {
            flex-direction: row !important;
            justify-content: center;
            margin-top: 24px;
            a {
                background: var(--black);
                color: white;
                &:hover {
                    background: var(--color2);
                    color: white !important;
                }
            }
        }
    }
}