.menu-list .menu-parent{
    color:#F26821
}
.menu-list .menu-parent ul li:first-child a {
    color: #F26821
}
.menu-list .menu-parent:after{
    border-color: #F26821;
}

.document-section,.gallery{
    display: grid;
    grid-template-columns: repeat(4,1fr);
}
.document-section .document-cards{
    position: relative;
    background-color: #4267b0da;
    height: 200px;
    margin: 10px;
    display:flex;
    border-radius: 1rem;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-direction: column;
    overflow: hidden;
    font-family: 'Raleway', sans-serif;
}

.document-section .document-cards span{
    position: absolute;
    font-size: 19em;
    bottom: -0.4em;
    font-weight: 500;
    left: -0.1em;
    color: #ffffff5a;

}
.gallery{
    margin-bottom: 10rem;
}
.gallery .picture{
    max-width: 100%;
    max-height: 250px;
    overflow: hidden;
}
.gallery .picture img {
    width: 100%;

}

.document-section .document-cards a{
    font-size: 2.5em;
    text-align: center;
    color: #fafcff;
}

@media screen and (max-width: 1024px) {
    .document-section,.gallery {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
        }
        .gallery .picture {
            min-height: max-content;
            max-height: 250px;
        }
}

@media screen and (max-width: 480px) {
    .document-section,.gallery {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }
}