/* .done-wrok {
    display: block;
    position: relative;
    max-width: 750px;
    max-height: 430px;
    height: 100vh;
    width: 100%;
    padding-top: 20px;
    padding-left: 30px;
    padding-bottom: 40px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    overflow: hidden;
}
.done-wrok::after {
    content: '';
    height: 10px;
    width: 100%;
    background-color: var(--primary);
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
    transition: all .6s;
}
.done-wrok-data__wrapper {
    position: relative;
    z-index: 1;
}
.done-wrok__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .6s;
}
.done-wrok-data {
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: var(--background);
    width: fit-content;
    margin-bottom: 10px;
}
.done-wrok-data__icon {
    max-width: 25px;
    max-height: 25px;
}
.done-wrok-data__name {
    font-size: var(--font-size-14-16);
    font-weight: 500;
    line-height: 150%;
    color: var(--txt);
    position: relative;
    z-index: 2;
}
.done-wrok__name {
    position: relative;
    z-index: 2;
    font-weight: 700;
    font-size: var(--font-size-18-24);
    line-height: 120%;
    color: var(--white);
    transition: all .6s;
}
#done-work-block .btn {
    padding-right: 35px;
    padding-left: 35px;
}
.done-wrok:hover .done-wrok__image {
    transform: scale(1.2);
}
.done-wrok__description {
    position: absolute;
    z-index: 2;
    font-weight: 500;
    color: var(--white);
    font-size: var(--font-size-14-16);
    line-height: 150%;
    bottom: -150px;
    transition: all .6s;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-width: 650px;
}
.done-wrok:hover .done-wrok__description {
    bottom: 30px;
}
.done-wrok:hover .done-wrok__name {
    transform: translateY(-50px);
}
.done-wrok:hover::after {
    height: 169px;
    background-color: rgba(0, 0, 0, 0.6);
}
@media (max-width: 1024px) {
    .done-wrok {
        max-width: 100%;
        width: 100%;
    }
} */