.task{
    width: 100%;
    background: white;
    padding:40px 10px 10px 10px;
    position: relative;
}
.task_con{
    width: 100%;
    /*padding-top: 4vw;*/
}
.task_list{
    width: 100%;
    margin: 0 auto 0px auto;
    display: flex;
    justify-content: space-between;
    padding: 10vw 20px;
    align-items: flex-end;
    height: auto;
    /*min-height: 100vh;*/
    box-sizing: border-box;
}
.task_list>div{
    width: 48%;
}
.task_title{
    font-size: 30px;
    font-weight: bold;
    font-family: 'Manrope';
    color: #6D6D6D;
    text-align: right;
}
.task_line{
    text-align: right;
    font-family: 'Manrope';
    font-size: 20px;
    font-weight: 400;
    margin: 20px 0;
}
.task_sm_title{
    font-family: 'NunitoSans';
    color: #B20000;
    font-weight: bold;
}
.task_sm_text{
    font-family: 'Manrope';
    font-size: 14px;
    text-align: justify;
}
.task_text_con{
    margin-top: 20px;
}
.task_long_img{
    width: 100%;
    overflow-x: auto;
    height: auto;
    margin-bottom: 80px;
    padding: 0 20px;
}
.task_long_list{
    width: 180%;
    display: grid;
    grid-template-columns: repeat(5,1fr);
    grid-template-rows: auto;
    grid-gap: 40px;
}
@media screen and (max-width: 768px){
    .task_title{
        font-size: 24px;
    }
    .task_list{
        display: block;
        padding: 0;
        margin: 0 auto 50px auto;
    }
    .task_list>div{
        width: 100%;
    }
    .task_con{
        padding-top: 50px;
    }
    .task_line{
        margin: 10px 0;
    }
    .task_list_right{
        margin-top: 20px;
    }
    .task_long_img{
        padding: 0;
    }
    .task_long_list{
        width: 200%;
        display: grid;
        grid-template-columns: repeat(5,1fr);
        grid-template-rows: auto;
        grid-gap: 10px;
    }
    .br_d{
        display: none;
    }
}
