/*********************************
company documents
*********************************/

.documents {
    display: flex;
    position: fixed; /* Change from absolute to fixed */
    top: 50%; /* Vertically center the social icons */
    right: 0; /* Align to the right of the screen */
    transform: translateY(-50%); /* Adjust to exactly center the element */
    z-index: 100; /* Ensure it's on top of other elements */
}

.documents ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.documents li a {
    display: block;
    padding: 10px;
    margin-bottom: 5px;
    font-size: 28px;
    text-align: center;
    color: #ffffff;
    background-color: var(--primaryYellow);
    transition: all 0.3s ease-in-out; /* Add smooth transitions for hover effect */
}

.documents ul li a:hover {
    color: var(--primaryYellow);
    background-color: #ffffff;
    transform: translateX(-10px); /* Slide effect when hovered */
}


@media (min-width: 768px){
    .documents li a {
        font-size: 48px;
    }
}
