.module-popup{
    width: 100%;
}
.module__block{
    width: 100%;
    padding: 40px;
}

.tasks{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    max-width: 1326px;
    width: 100%;
}

.task{
    background-color: #fff;
    border-radius: 16px;
    overflow: hidden;
    width: calc(100% / 2 - 1rem);
    margin-right: 2rem;
    margin-bottom: 2rem;
    min-width: 328px;
}
.task:nth-child(2n){
    margin-right: 0;
}
.task .task__logo{
    background-repeat: no-repeat;
    background-position-x: center;
    background-position-y: center;
}
.task.video .task__logo{
    background-image: url('../images/play_but_big.png');
    background-color: #d7f9ff;
}
.task.test .task__logo{
    background-image: url('../images/paper_big.png');
    background-color: #9ecaff;
}
.task.text .task__logo{
    background-image: url('../images/books_big.png');
    background-color: #bde3d1;
}
.task__logo{height: 270px;}

.task__discription{
    margin: 20px;
}
.task__discription .label{
    font-size: 20px;
    font-weight: bold;
}
.task__discription .info{
    font-size: 16px;
}

@media (max-width: 768px){
    .task{
        width: 100%;
        margin-right: 0;
        min-width: 328px;
    }
}