.pdf {
    background: white;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    padding: 15px;
    margin-top: 5px;
    margin-bottom: 5px;
    position: relative;
}

.pdf a {
    color: black;
    font-weight: 500;
    width: 60%;
    display: inline-block;
    font-size: 14px;
    text-align: left !important;
}

.pdf a:hover {
    text-decoration: none;
}

.pdf .arrow {
    background-color: #FFDD00;
    transition: 0.5s all;
    border: 1px solid #FFDD00;
    display: block;
    width: 38px;
    position: absolute;
    right: 20px;
    top: 13px;
}

.pdf svg {
    margin: 5px 10px;
}

.pdf a:hover .arrow {
    background-color: white;
    border: 1px solid black
}

@media(min-width:768px) {
    .pdf a {
        width: 90%;
    }
}