/*Marquiz*/
.quiz-section {
    background: linear-gradient(180deg, #0096AA 0%, #B3E0E6 100%);
}

.quiz__block {
    padding: 50px 0;
}

.quiz__title {
    color: white;
    margin: 0;
}

.quiz__subtitle {
    color: white;
    font-size: 20px;
    margin-top: 20px;
    line-height: 1;
}

.quiz__feachers {
    margin: 50px 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(100px, 1fr));
    gap: 20px;
}

.quiz__feacher {
    background: #fff;
    border-radius: 10px;
    padding: 15px 10px;
    display: flex;
    flex-direction: row;
    gap: 15px;
    align-items: center;
}

.quiz__feacher--price {
    max-width: 70px;
    width: 100%;
    height: 50px;
    padding: 10px;
    background: #0096AA;
    color: white;
    font-weight: 700;
    border-radius: 10px;
    text-align: center;
    vertical-align: middle;
}

.quiz__feacher--title {
    font-size: 16px;
}

.marquiz__container_inline {
    max-width: 1440px !important;
}

@media (max-width: 768px) {
    .quiz__feachers {
        display: flex;
        flex-direction: column;
    }
}