.documents-container {
    width: 100%;
}

.documents-wrapper {
    width: 100%;
    margin-top: 100px;
}

.page-header {
    width: 100%;
}

.page-header h2 {
    color: var(--dark-grey);
    font-size: var(--font-m);
    font-weight: var(--text-medium);
    text-align: center;
}

.document-holder-box {
    width: 100%;
    margin-top: 50px;
    display: flex;
}

.document-items {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.document-item {
    width: 150px;
    height: 230px;
    display: flex;
    align-items: center;
    justify-content: start;
    flex-direction: column;
    margin: 10px 15px;
}

.document-icon {
    width: 140px;
    height: 140px;
    border: 3px solid var(--main);
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.document-icon:hover {
    background-color: var(--main);
}

.document-icon a:hover {
    color: var(--white);
}

.document-icon a {
    position: absolute;
    font-size: var(--font-xxl);
    color: var(--main);
}



.document-heading {
    width: 100%;
}

.document-heading p {
    text-align: center;
    margin-top: 10px;
}

