.home-second-section {
    display: block;
    text-align: center;
}
.categories-2 {
    max-width: 1200px;
    margin: 0px auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 8px;
    align-items: center;
}

.categories-2 a {
    width: 25%;
    min-height: 200px;
    color: #2a3d8b;
    padding: 16px;
    text-decoration: none;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
}


.files-container {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 16px;
}

.big-title {
    font-size: 18px;
}

.small-title {
    font-size: 12px;
    font-style: italic;
    margin-bottom: 32px;
}

.files-container .file:hover {
    background-color: #f6f6f6;
}

.files-container .file {
    width: 32%;
    background-color: #fff;
    box-sizing: border-box;
    padding: 12px;  
    /* height: 52%; */
    height: 300px;
    box-shadow: 0px 10px 10px 0px rgb(255 255 255 / 20%);
    
    
}

.files-container .file .header-file {
    width: 100%;
    height: 70%;
}

.files-container .file .footer-file {
    width: 100%;
    height: 30%;
}

.management-section {
    padding: 12px 0px;
    padding-bottom: 24px;
}

.download-link {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 4px;
    gap: 8px;
    transition-duration: 0.5s;
}

.download-link:hover {
    background-color: #fff;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.fixed {
    width: 100px;
    height: 100px;
}
@media screen and (max-width: 920px) {
    .file {
        width: 100% !important;
    }

    .categories-2 a {
        width: 100% !important;
        height: fit-content !important;
        min-height: 100px;
    }
}