.complete-docs__list {
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
}

.complete-docs__item {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 2rem;
}

.complete-docs__item-image {
    width: 49.4rem;
    height: auto;
    border-radius: .8rem;
    overflow: hidden;
}

.complete-docs__item-image img {
    object-fit: contain;
    border-radius: .8rem;
    overflow: hidden;
}
.complete-docs__item-image img:hover {
    cursor: zoom-in;
}

.complete-docs__item-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.complete-docs__item-title {
    font-size: 2rem;
    line-height: 120%;
    font-weight: 500;
    margin-bottom: .8rem;
}

.complete-docs__item-text {
    font-size: 1.6rem;
    line-height: 120%;
    color: var(--darkgrey);
}
.list.complete-docs__item-list {
    margin-top: 2rem;
}
.complete-docs__btns {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: .8rem;
    margin-bottom: 2rem;
}
.complete-docs__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 3.2rem;
    border: 1px solid var(--grey4);
    padding: .9rem 1.4rem;
    color: var(--grey4);
    font-size: 1.6rem;
    line-height: 120%;
}
.complete-docs__btn.active {
    border-color: var(--primary);
    color: var(--primary);
}




@media (max-width: 1280px){
    .complete-docs__item-image {
        width: 100%;
    }
    .complete-docs__item-content {
        width: 100%;
    }
}
@media (min-width: 768px) and (max-width: 1280px){

}
@media (max-width: 767px){
    .complete-docs__item {
        flex-direction: column;
        gap: 1.2rem;
        width: 100%;
    }
}