.download_files_section {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: var(--color-background);
    border-radius: 8px;
    padding: 1.75rem;
    transition: background-color 0.3s ease;
}

.download_files_section p {
    margin-bottom: 0 !important
}

.download_files_section:hover {
    background-color: rgb(194, 198, 202);
    cursor: pointer;
}

.download_files_section a {
    text-decoration: none;
    color: inherit;
}

.download_files_section span {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-primary);
    width: 50px;
    height: 50px;
    border-radius: 12px;
}

.download_files_section .bi-file-earmark-text {
    color: #fff !important;
    font-size: 1.5rem;
    font-weight: bolder;
    padding: 10px;
}

.download_files_section .bi-download {
    font-size: 1.5rem;
    color: var(--color-primary) !important;
}

.download_section {
    padding: 2rem;
    background-color: white;
    border-radius: 12px;
}

.downloads_layout {
    margin-top: 4rem
}


.downloads_file_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-primary);
    width: 70px;
    height: 70px;
    border-radius: 50%;
}

.downloads_file_icon i {
    color: #fff;
    font-size: 2.5rem;
    font-weight: bolder;
    padding: 10px
}

.download_section {
  scroll-margin-top: 9rem;
}
@media (max-width: 768px) {
    .download_section {
        scroll-margin-top: 3rem;
    }
}


@media (max-width: 530px) {
    .download_section {
        padding: 1rem;
    }

    .download_files_section .bi-download {
        display: none !important;
    }

    .downloads_file_icon {
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: var(--color-primary);
        width: 50px;
        height: 50px;
        border-radius: 50%;
    }
    
    .downloads_file_icon i {
        color: #fff;
        font-size: 1.5rem;
        font-weight: bolder;
        padding: 10px
    }

   
}