@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap");

.team {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;

}

.team-wrapper .team-title {
    text-align: center;
}

.team-title h4 {
    display: inline-block;
    padding: 20px;
    color: #000000;
    font-size: 50px;
    font-weight: 500;
    letter-spacing: 1.2px;
    word-spacing: 5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    text-transform: uppercase;
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    word-wrap: break-word;
}

.team-wrapper .team-card-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 40px 0;
}

.team-card-container .team-card {
    position: relative;
    width: 300px;
    height: 400px;
    margin: 20px;
    overflow: hidden;
    box-shadow: 0 30px 30px -20px rgba(0, 0, 0, 1),
                inset 0 0 0 1000px rgba(67, 52, 109, .6);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.team-card .team-img-box, .team-img-box img {
    width: 100%;
    height: 100%;
}

.team-card .team-content {
    position: absolute;
    bottom: -160px;
    width: 100%;
    height: 160px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    backdrop-filter: blur(15px);
    box-shadow: 0 -10px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: bottom 0.5s;
    transition-delay: 0.65s;
}

.team-card:hover .team-content {
    bottom: 0;
    transition-delay: 0s;
}

.team-content .team-content-box h3 {
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 2px;
    font-weight: 500;
    font-size: 18px;
    text-align: center;
    margin: 20px 0 15px;
    line-height: 1.1em;
    transition: 0.5s;
    transition-delay: 0.6s;
    opacity: 0;
    transform: translateY(-20px);
}

.team-card:hover .team-content .team-content-box h3 {
    opacity: 1;
    transform: translateY(0);
}

.team-content .team-content-box h3 span {
    font-size: 12px;
    font-weight: 300;
    text-transform: initial;
}
.team-content .unique-social-icons {
    position: relative;
    bottom: 10px;
    display: flex;
}

.team-content .unique-social-icons li {
    list-style: none;
    margin: 0 10px;
    transform: translateY(40px);
    transition: 0.5s;
    opacity: 0;
    transition-delay: calc(0.2s * var(--i));
}

.team-card:hover .team-content .unique-social-icons li {
    transform: translateY(0);
    opacity: 1;
}

.team-content .unique-social-icons li a {
    color: #fff;
    font-size: 24px;
}