.quiz-section * {
    font-family: "Montserrat";
}

body {
    margin: 0;
    padding: 0;
}

.quiz-section .quiz-image {
    width: calc(50% - 15px);
    padding-right: 15px;
}

.quiz-section .container {
    overflow: hidden;
    padding: 0;
}

.quiz-section .quiz-image img {
    max-width: 100%;
    width: 100%;
    object-fit: cover;
}

.quiz-section {
    background-color: transparent;
    padding: 75px 0;
    overflow: hidden;
}

.quiz-section .quiz-form {
    width: calc(50% - 15px);
    margin-left: auto;
    padding-left: 15px;
}

.container {
   max-width: 1220px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
}

        small {
         color: #dedede;
        }
        small a {
         color: #fff;
        }

label {
 font-size: 30px;
 vertical-align: top;
 color: #fff;
}
        
.quiz-section input,
.quiz-section select {
    background-color: #ffffff;
    color: #000;
    height: 39px;
    padding: 0 13px;
    font-size: 12px;
    line-height: 12px;
    width: 100%;
    border: none;
    outline: none;
    box-shadow: none;
}

.quiz-section input[type="radio"] {
    width: 12%;
}

.quiz-section input + .quiz-step-title {
    margin-top: 20px;
}

.quiz-section input::placeholder {
    font-size: 12px;
    line-height: 12px;
    color: #000;
}

.quiz-section .quiz-step:not(:last-of-type) {
    margin-bottom: 12px;
}

.quiz-section .quiz-step .quiz-step-title {
    font-weight: 700;
    font-size: 16px;
    line-height: 18px;
    color: #ffffff;
    margin-bottom: 10px;
}
.quiz-section .quiz-step {
    display: none;
}

.quiz-section .error-text {
    color: #e90f0f;
    margin-top: 5px;
    font-size: 14px;
}

.quiz-section .quiz-title {
    font-size: 38px;
    line-height: 38px;
    margin-bottom: 50px;
    color: #fff;
    max-width: 70%;
    font-weight: 700;
}

.quiz-section .input-error {
    border: 1px solid #e90f0f;
}

.quiz-section .quiz-step.active {
    display: block;
}

.quiz-section .quiz-navigation {
    display: flex;
    align-items: center;
    margin-top: 30px;
}

.quiz-section .quiz-navigation .quiz-btn {
    color: #ffffff;
    font-weight: 700;
    font-size: 16px;
    line-height: 16px;
    background: rgba(255, 182, 78, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 60px;
    height: 59px;
    padding: 0 40px;
    cursor: pointer;
    max-width: 200px;
    width: 100%;
}

.quiz-section .quiz-navigation .quiz-btn:hover {
    background-color: rgba(242,159,59,1);
}

.quiz-section .quiz-navigation .quiz-btn-prev {
    margin-right: auto;
}

@media (max-width: 600px) {
 .quiz-section .quiz-image {
    display: none;
 }
 .quiz-section .quiz-form {
    width: calc(100% - 15px);
 }

}

