.catalog-download {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 20px;
    font-size: 16px;
}

.catalog-download:hover span {
    text-decoration: underline;
}

.catalog-download:before{
    content: '';
    display: block;
    width: 30px;
    height: 30px;
    background: url(/images/pdf_icon.svg) center no-repeat;
}

@media (max-width: 767px) {
    .catalog-download {
        justify-content: center;
    }
}