
.wrap-aside-left {
    margin: 0 -10px;
}

.wrap-bloc-documentation {
    width: 33.33%;
    padding: 30px 10px 0;
    margin-bottom: 35px;
    box-sizing: border-box;
}

.bloc-documentation {
    position: relative;
    height: 100%;
    display: flex;
}

.content-doc {
    position: relative;
    padding: 15px 15px 30px 15px;
    box-sizing: border-box;
    overflow: hidden;
    -webkit-transition: ease all 0.55s;
    transition: ease all 0.55s;
    box-shadow: 0px 0px 16px 4px rgb(0 0 0 / 10%);
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    width: 100%;
}

.content-doc:before {
    content: "";
    background: var(--primary-color);
    position: absolute;
    width: 100%;
    height: 7px;
    bottom: 0px;
    z-index: 2;
    transition: all 0.8s ease;
    left: 0;
    visibility: visible;
    opacity: 1;
}

.content-doc:hover {
    top: -8px;
    cursor: pointer;
}

.top-document {
    min-height: 70px;
}

.icon-documentation {
    padding: 35px;
    position: absolute;
    right: 0;
    top: 0;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* z-index: 0; */
    font-size: 40px;
    color: #fff;
}

.icon-documentation:before {
    background: var(--second-color);
    width: 150px;
    height: 150px;
    content: "";
    position: absolute;
    top: -95px;
    left: -40px;
    z-index: -1;
    -webkit-transform: rotate(40deg);
    transform: rotate(40deg);
    border-radius: 30px;
}

.icon-documentation svg {
    width: 30px;
    height: 30px;
    z-index: 15;
}

.icon-documentation img {
    position: relative;
    z-index: 10;
    max-width: 35px;
}

.left-top-doc {
    left: 20px;
    position: absolute;
    margin-right: 100px;
}

.categorie-documentation {
    color: gray;
    font-size: 14px;
    position: relative;
    margin-bottom: 10px;
    line-height: 1.1;
}

.categorie-documentation:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 7px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 10px;
}

.categorie-documentation:after {
    content: "";
    height: 3px;
    width: 40px;
    background-color: var(--primary-color);
    position: absolute;
    bottom: -5px;
    left: 12px;
    border-radius: 10px;
    border: none;
}

.btn-telechargement {
    text-transform: uppercase;
    font-weight: 600;
    color: var(--second-color);
    position: relative;
    font-size: 13px;
}

.titre-documentation {
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.5;
    color: #1a1a1a;
}

.portfolio-btn {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0px;
    z-index: 2;
}

.btn-style2 {
    position: relative;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
}

.btn-style2 span {
    color: #fff;
    font-size: 14px;
    text-align: center;
    font-weight: 500;
    visibility: hidden;
    opacity: 0;
    margin-left: 10px;
    transition: all 0.5s ease-in-out;
}

.bloc-documentation:hover .btn-style2 span {
    visibility: visible;
    opacity: 1;
}

.btn-style2::after {
    opacity: 1;
    visibility: visible;
    content: "";
    width: 50px;
    aspect-ratio: 1;
    background-color: var(--primary-color);
    border-radius: 30px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    transition: all 0.8s ease;
}