.company__wrapper {
    display: flex;
    gap: 70px;
    align-items: flex-start;
}

@media (max-width:960px) {
    .company__wrapper {
        gap: 70px;
        flex-direction: column;
    }
}

.section__list-wrap.-outline {
    width: 100%;
    max-width: 74%;
}

@media (max-width:960px) {
    .section__list-wrap.-outline {
        max-width: 100%;
    }
}

.company__pdf {
    width: 100%;
    max-width: 24%;
    display: flex;
    gap: 10px;
    align-items: center;
    flex-direction: column;
}

@media (max-width:960px) {
    .company__pdf {
        max-width: 100%;
        gap: 10px;
    }
}

.company__link {
    width: -moz-fit-content;
    width: fit-content;
    height: 24px;
    margin: 12px 0 0 0;
    padding: 0 24px 0 0;
    display: inline-flex;
    align-items: center;
    position: relative;
    color: #2c2c2c;
    cursor: pointer;
    transition: .2s
}

.company__link::before {
    content: "";
    width: 24px;
    height: 24px;
    position: absolute;
    right: 0;
    display: flex;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10 10"><g transform="translate(0 10) rotate(-90)"><path fill="%23002751" d="M200.1,134.579l-3.349,3.349,3.349,3.349-1.651,1.651-5-5,5-5Z" transform="translate(-192.128 -132.928)"/></g></svg>');
    background-size: 10px 10px;
    background-position: center;
    background-repeat: no-repeat;
    transform: rotate(-90deg);
    transition: .2s
}

.company__link:hover {
    color: #1e89ef
}

.company__link:hover::before {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10 10"><g transform="translate(0 10) rotate(-90)"><path fill="%231e89ef" d="M200.1,134.579l-3.349,3.349,3.349,3.349-1.651,1.651-5-5,5-5Z" transform="translate(-192.128 -132.928)"/></g></svg>');
    background-size: 10px 10px;
    background-position: center;
    background-repeat: no-repeat
}