.team_2 .card-project {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 133.33%;
    border-radius: 1rem;
}

.team_2 .card-project .img-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--theme-color-violet);
}

.team_2-cover {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: flex-end;
    justify-content: end;
    padding: 0;
    background: transparent;
    -webkit-transition: all .15s ease-in-out;
    transition: all .15s ease-in-out;
}

.team_2-content {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    margin: 0.5rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 1rem;
    -webkit-transition: all .15s ease-in-out;
    transition: all .15s ease-in-out;
}

.team_2-cover:hover .team_2-content {
    background: rgba(0, 0, 0, 0.9);
}

.team_2-cover .team_2-desc {
    font-size: 0.9rem;
    color: #fff;
    opacity: 0.5;
}

.team_2-cover .team_2-title {
    color: #fff;
    opacity: 1;
    margin: 0;
}

.team_2-hidden {
    display: none;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 1rem;
}

.team_2-cover:hover .team_2-hidden {
    display: -webkit-flex;
    display: flex;
    opacity: 1;
}

.team_2-cover .team_2-link {
    display: block;
    font-size: 1rem;
    color: #fff;
    opacity: 0.8;
}

.team_2-cover .team_2-link:hover {
    opacity: 1;
}

.team_2-soc-link svg {
    color: #fff;
    opacity: 0.8;
    margin-right: 15px;
}

.team_2-soc-link svg:hover {
    color: #fff !important;
    opacity: 1;
}