.brand-section--download-files {
    margin-bottom: 10.9rem;
}

.brand-section--download-files .line {
    width: 100%;
    background-color: var(--main-color);
    display: flex;
    padding: 1.6rem 5rem;
    justify-content: space-between;
    align-items: center;
}

.brand-section--download-files .line:hover {
    cursor: pointer;
}

.brand-section--download-files .line .title-wrapper {
    font-size: 3.2rem;
    color: #fff;
    font-weight: 600;
}

.brand-section--download-files .icon svg {
    transition: transform .3s ease;
}

.brand-section--download-files .icon svg.rotated {
    transform: rotate(180deg);
}

.brand-section--download-files .files-wrapper {
    display: none;
}

.brand-section--download-files .files-wrapper.active {
    display: block;
    padding-right: 5rem;
}

.files-wrapper.active .single-file {
    margin-top: 2rem;
    font-size: 2rem;
}

@media (max-width: 1024px) {
    .brand-section--download-files .files-wrapper.active {
        padding-right: 1rem;
    }
}