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

.categories-2 a {
    width: 25%;
    min-height: 200px;
    color: rgb(64, 106, 148);
    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: space-between;
    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: #fafafa;
}

.files-container .file {
    width: 32%;
    background-color: #fff;
    box-sizing: border-box;
    padding: 12px;
    height: 300px;
    box-shadow: -1px 3px 20px -1px rgba(0,0,0,0.34);
}

.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;
}

.main-content{
    color: #616161;
    display: flex;
    flex-direction: column;
    margin: auto;
    max-width: 1170px;
    padding: 5%;
}

.main-text{
    /* font-weight: bold !important; */
    font-size: 16px;
}

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

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