.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;
    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;
}
@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;
    }
}
