@media only screen and (min-width:750px) and (max-width: 1920px) {
    .download {
        display: flex;
        width: 100%;
        background-color: #f7f7f7;
        justify-content: center;
        padding-bottom: 80px;
        padding-top: 20px;
    }
    
    .download .wrapper {
        width: 90%;
        /* height: 200px; */
    }
    
    .download .head {
        display: flex;
        flex-direction: row;
        width: 100%;
        justify-content: space-between;
    }
    
    .download .title {
        position: relative;
        font-size: 2rem;
        text-align: left;
        padding: 20px 0 20px 0;
        margin-top: 30px;
        /* background-color: #5956a5; */
    }
    
    .download .title::after {
        position: absolute;
        content: ' ';
        left: 0px;
        bottom: 10px;
        width: 50px;
        height: 3px;
        background-color: #eb6100;
    }
    
    .download-files {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        /* justify-content: space-between; */
        justify-content: flex-start;
        margin-top: 30px;
        flex: 1;
    }
    
    .file {
        /* color: #3b3a3a; */
        color: #101010;
        margin-right: 120px;
        background: url(../image/download.png) no-repeat right;
        background-size: contain;
        padding-right: 30px;
        margin-top: 20px;
        cursor: pointer;
        /* font-size: 1.2rem; */
        font-size: 1.4rem;
    }
    
    .file a {
        color: #848484;
        font-size: 1.2rem;
    }
}


@media only screen and (max-width: 750px) {
    .download {
        display: flex;
        width: 100%;
        background-color: #f7f7f7;
        justify-content: center;
        padding-bottom: 80px;
        padding-top: 20px;
    }
    
    .download .wrapper {
        width: 90%;
        /* height: 200px; */
    }
    
    .download .head {
        display: flex;
        flex-direction: row;
        width: 100%;
        justify-content: space-between;
    }
    
    .download .title {
        position: relative;
        font-size: 2rem;
        text-align: left;
        padding: 20px 0 20px 0;
        margin-top: 30px;
        /* background-color: #5956a5; */
    }
    
    .download .title::after {
        position: absolute;
        content: ' ';
        left: 0px;
        bottom: 10px;
        width: 50px;
        height: 3px;
        background-color: #eb6100;
    }
    
    .download-files {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        justify-content: flex-start;
        margin-top: 0px;
    }
    
    .file {
        color: #101010;
        margin-right: 25px;
        background: url(../image/download.png) no-repeat right;
        padding-right: 21px;
        margin-top: 20px;
        cursor: pointer;
        width: 100%;
        background-size: contain;
        font-size: 1.2rem;
        width: 100%;
    }
}


