

.quiz-illustration-half-container {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.quiz-illustration-half-content-inner {
    margin-top: 90px;
}

.quiz-illustration-half-illustration {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.quiz-illustration-half-illustration img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.quiz-illustration-half-content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    overflow-y: auto;
    padding: 30px 0;
}

.quiz-illustration-half-container.fullsize .quiz-illustration-half-content-inner {
    max-width:600px;
    width:calc(100% - 30px);
    margin-top:80px;
}


@media (max-width:1100px)
{
    .quiz-illustration-half-illustration {
        display:none;
    }
    .quiz-illustration-half-container {
        display:block;
    }
}