.box-item-article{
    display: flex;
    justify-content: center;
}
.page-numbers{
    display: flex;
}
.page-numbers li{
    margin: 0 3px;
}
.item-article img {
    border-radius: 10px;
    width: 100%;
    display: flex;
}
.article-img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.article-img img{
    height: 220px;
    object-fit: cover;
}
.item-article {
    top: 10px;
    position: relative;
    transition: 0.5s;
    display: flex;
    align-items: flex-start;
    margin-bottom: 90px;
    margin-top: 40px;
}
.item-article:hover {
    top: 0px;
}
.item-article:hover .item-article-img {
    opacity: 0.7;
    visibility: visible;
}
.item-article:hover .text_box-article {
    background-color: #041C3F;
}
.item-article:hover .text_box-article h2 {
    color: #F5B904;
}
.item-article-img a {
    color: #F5B904;
    position: absolute;
    top: 42%;
    right: 48%;
    font-size: 24px;
}

.item-article-img {
    background-color: #041C3F;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    position: absolute;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
    top: 0;
}
.text_box-article {
    width: 270px;
    height: 80px;
    border-radius: 10px;
    background-color: #FFFFFF;
    position: absolute;
    bottom: -40px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    text-align: center;
    padding-top: 15px;
    transition: 0.5s;
}
.text_box-article h2{
    color: #000e22;
    font-size: 16px;
    text-align: center;
    margin: 0 20px;
}
.text_box-article a{
    text-decoration: none;
}
.option-item {
    position: absolute;
    bottom: -80px;
    color: #636363;
    display: flex;
}
.date-item span,
.folder-item span {
    padding-inline-start: 5px;
}
.folder-item {
    margin-inline-start: 20px;
}
.folder-item a{
    color: #636363;
    text-decoration: none;
    transition: 0.3s;
}
.folder-item a:hover{
    color: #F5B904;
}
@media (max-width:991px){
    .item-article{
        width: 100;
    }
    .item-article:hover{
        top: 10px !important;
    }
}
@media (max-width:767px){

}