
.container-item-partner{
    width: calc(100% / 3);
    position: relative;
    overflow: hidden;
    z-index:1;
    min-height: 700px;
    transition: 1s ease-out;
}
.container-item-partner:hover{
    /*width: calc(100% / 2);*/
}
.image-bac-partner{
    position: absolute;
    top: 0;
    object-fit: cover;
    height: 100%;
    width: auto;
    z-index:-1;
}

.text-item{
    backdrop-filter: brightness(.5) blur(1px);
    background-color: var(--bac-color-item);
    transition: 2s ease;
}
.text-item:hover{
    backdrop-filter: brightness(.5) blur(5px);
}
.image-bac-partner{
    transition: 2s ease;
}
.container-item-partner:hover .image-bac-partner{
    transform: scale(1.5);
}
.container-item-partner:hover .fa-arrow-right{
    animation: opacity-text 2s ease;
    opacity: 0;
}
@keyframes opacity-text {
    0%{
        opacity:1;
        transform: translateX(0);
    }
    100%{
        opacity:0;
        transform: translateX(200px);
    }
}
.animation-block{
    opacity: 1;
    animation: opacity-transition 1.5s ease;
}
@keyframes opacity-transition{
    0%{
        opacity: 0;
        transform: translateY(200px);
    }
    100%{
        opacity: 1;
        transform: translateY(0);
    }
}
.head-item{
    font-size: 1.5rem;
}
.feature-partner-text{
    font-weight: normal;
    font-size: 1.1rem;
}
.btn-more{
    font-size: 1.1rem;
    position: relative;
}
.btn-more:after{
    content: "";
    position: absolute;
    display:block;
    height: 2px;
    width: 0;
    transition: .2s ease;
    background-color: white;
}
.btn-more:hover:after{
    width: 100%;
}
@media(max-width:991px){
    .container-item-partner{
        width: 100%;
        height: fit-content;
        min-height: unset;
    }
    .image-bac-partner{
        height: 100%;
        width: 100%;
    }
    .hide-block li{
        font-size: calc(14px + (16 - 14) * (100vw - 320px) / (991 - 320));
    }
}