.download_section {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(95deg, var(--dark_blue), var(--blue), var(--dark_blue));
    position: relative;
}

.download_section .section_header {
    position: absolute;
    top: 6rem;
    color: var(--white);
    z-index: 1;
}

.download_section .section_header::after {
    background-color: var(--white);
}

.download_section .wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--white);
}

.download_section .wrapper .buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 92%;
    height: 28rem;
    transform: rotate(5deg);
}

.view_button {
    width: 30%;
    height: 100%;
    display: flex;
    font-size: 1.5rem;
    font-weight: 300;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--white);
    fill: var(--white);
    transition: .3s;
    text-decoration: none;
    cursor: pointer;
    transform: rotate(-5deg);
}

.view_button svg {
    width: 2rem;
    margin-bottom: .5rem;
}

.view_button:hover {
    background: var(--dark_blue);
    color: var(--white);
    fill: var(--white);
}

.middle_button {
    /* border-left: 1px solid var(--white_half_opacity);
    border-right: 1px solid var(--white_half_opacity); */
}
@media only screen and (max-width: 960px) {
    
    .view_button {
        font-size: 1rem;
    }
}
@media only screen and (max-width: 620px) {
    .download_section .wrapper .buttons {
        transform: rotate(0deg);
    }
    .view_button {
        transform: rotate(0deg);
    }

    .view_button:nth-of-type(1) {
        margin-top: 3rem;
    }
    .view_button:nth-of-type(3) {
        margin-top: -3rem;
    }
}