.quiz {
	background-color: #F2F2F2;
	padding: 68px 0;
	position: relative;
}

.step-pagination {
	background-color: #277B9333;
	height: 12px;
	width: 100%;
	display: flex;
	margin-top: 16px;
}

.step-pagination .step-pagination-line {
	background-color: #277B9333;
	height: inherit;
	width: 10%;
}

.step-pagination .step-pagination-line.step-checked {
	background-color: #277B93;
}

.quiz .quiz-wrapper {
	display: flex;
    width: 100%;
}

.quiz .quiz-left {
	width: 55%;
	border-radius: 20px;
	background-color: #fff;
}

.quiz .quiz-right {
	width: 45%;
	margin-left: 120px;
}

.quiz .quiz-progress {
	display: flex;
	padding: 26px 40px 0;
	justify-content: space-between;
}

.quiz-progress .quiz-title {
	font-weight: 700;
	font-style: Bold;
	font-size: 14px;
	line-height: 130%;
	letter-spacing: 0;
}

.quiz-progress .step-info {
	font-size: 14px;
	line-height: 130%;
	letter-spacing: 0;
	color: #3D3D3D;
}

.quiz-progress span {
	font-size: 14px;
	line-height: 130%;
	letter-spacing: 0;
	color: #3D3D3D;
}

.quiz-step .quiz-step-title {
	margin: 80px 0 44px;
	font-weight: 600;
	font-size: 24px;
	line-height: 130%;
	letter-spacing: 0;
	color: #0C2747;
	padding: 0 40px;
}

.quiz-step .quiz-buttons {
	display: flex;
	align-items: center;
	padding: 0 40px;
}

.quiz-step .quiz-btn {
	max-width: 242px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 55px;
	font-weight: 500;
	font-size: 14px;
	line-height: 15px;
	letter-spacing: 0;
	text-transform: uppercase;
	background-color: #277B93;
	outline: none;
	box-shadow: none;
	border: none;
	border-radius: 10px;
	color: #fff;
	cursor: pointer;
	transition: 0.3s;
}

.quiz-step .quiz-btn:hover {
	background-color: #000000;
}

.quiz-step .quiz-btn.selected {
	background-color: #000000;
}

.quiz-step .quiz-btn:nth-of-type(2) {
	margin-left: 24px;
}

.quiz-right .quiz-image {
	margin-bottom: 32px;
}

.quiz-right .quiz-subtitle {
	font-weight: 700;
	font-size: 20px;
	line-height: 130%;
	letter-spacing: 0;
	margin-bottom: 16px;
}

.quiz-right .quiz-description p {
	font-size: 16px;
	line-height: 130%;
	letter-spacing: 0;
	margin-bottom: 15px;
}

.quiz-right .quiz-description p:last-child {
	margin-bottom: 0;
}

.step-index-11 .quiz-step-title {
	padding: 0;
	text-align: center;
}

.form-wrapper {
	max-width: 632px;
	width: 100%;
	margin: 0 auto;
}

.form-wrapper .form {
	max-width: 478px;
	width: 100%;
	margin: 0 auto;
}

.form-wrapper input {
	width: 100%;
	height: 58px;
	margin-bottom: 24px;
	border: none;
	background-color: #F2F2F2;
	border-radius: 10px;
	font-size: 20px;
	line-height: 130%;
	letter-spacing: 0;
	color: #00000099;
	padding: 0 16px;
}

.form-wrapper input::placeholder {
	font-size: 20px;
	line-height: 130%;
	letter-spacing: 0;
	color: #00000099;
}

.form-wrapper input:last-of-type {
	margin-bottom: 32px;
}

.form-wrapper input[type="submit"] {
	background-color: #277B93;
	color: #fff;
	font-weight: 500;
	font-size: 20px;
	line-height: 130%;
	letter-spacing: 0;
	text-transform: uppercase;
}

.form-wrapper input[type="submit"]:hover {
	background-color: #000;
}

.quiz-right:has(.step-index-11.active){
    width: 0;
    display: none;
}

.quiz-left:has(.step-index-11.active) {
    width: 100%;
}

.quiz-left:has(.step-index-11.active) .quiz-progress {
    display: none;
}

.quiz-left:has(.step-index-11.active) .step-pagination {
    display: none;
}

.quiz:has(.step-index-11.active) {
    background: transparent;
}

.quiz:has(.step-index-12.active) {
    background: transparent;
}

.quiz-left:has(.step-index-12.active) .quiz-progress {
    display: none;
}

.quiz-left:has(.step-index-12.active) .step-pagination {
    display: none;
}

.step-index-12 .quiz-step-subtitle {
    font-weight: 400;
    font-size: 20px;
    line-height: 130%;
    letter-spacing: 0;
    color: #3D3D3D;
}

.step-index-12 .quiz-step-title {
    padding-left: 0;
    margin: 8px 0 24px;
}

.step-index-12 .quiz-description p {
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    letter-spacing: 0;
    margin-bottom: 20px;
}

.step-index-12 .quiz-description p:last-of-type {
    margin-bottom: 0;
}

.step-index-12 .card-wrapper .card-title {
    margin-bottom: 16px;
}

.step-index-12 .card-wrapper .text-description {
    margin-bottom: 22px;
}

.step-index-12 .card-wrapper .link-more {
    font-weight: 600;
    font-size: 16px;
    line-height: 130%;
    letter-spacing: 0;
    text-decoration: underline;
    color: #277B93;
    transition: 0.3s;
}

.step-index-12 .card-wrapper .link-more:hover {
    color: #000;
}

@media (max-width: 1024px) {

    .quiz .quiz-wrapper {
        flex-wrap: wrap;
    }

    .quiz .quiz-left {
        width: 100%;
    }

    .quiz .quiz-right {
        width: 100%;
        margin-left: 0;
        margin-top: 60px;
    }

    .quiz .step-index-6 img {
        max-width: 312px;
    }

    .quiz .quiz-left .step-index-12 {
        float: left;
    }

    .quiz .quiz-left:has(.step-index-12.active) {
        width: 50%;
        padding-right: 12px;
    }

    .quiz .quiz-right .step-index-12 {
        float: right;
    }

    .quiz .quiz-right:has(.step-index-12.active) {
        width: 50%;
        padding-left: 12px;
        margin-top: 0;
    }

    .step-index-12 .quiz-step-subtitle {
        font-size: 16px;
    }

    .step-index-12 .quiz-step-title {
        margin: 4px 0 20px;
        padding-right: 0;
    }

    .step-index-12 .quiz-description p {
        font-size: 14px;
    }

}

@media (max-width: 756px) {
    .quiz .quiz-progress {
        padding: 20px 20px 0;
    }
    .quiz-step .quiz-step-title {
        margin: 40px 0 36px;
        padding: 0 20px;
    }

    .quiz-step .quiz-buttons {
        padding: 0 20px;
        flex-wrap: wrap;
    }

    .quiz-step .quiz-btn {
        max-width: 100%;
    }

    .quiz-step .quiz-btn:nth-of-type(2) {
        margin-left: 0;
        margin-top: 24px;
    }

    .quiz .quiz-right {
        margin-top: 40px;
    }

    .quiz-right .quiz-subtitle {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .quiz-right .quiz-description p {
        font-size: 14px;
    }

    .quiz .form-wrapper input[type="submit"] {
        font-size: 14px;
    }

    .quiz .quiz-left .step-index-12 {
        float: unset;
    }

    .quiz .quiz-right .step-index-12 {
        float: unset;
    }

    .quiz .quiz-left:has(.step-index-12.active) {
        width: 100%;
        padding-right: 0;
        min-height: initial;
    }

    .quiz .quiz-right:has(.step-index-12.active) {
        width: 100%;
        padding-left: 0;
        margin-top: 44px;
    }

    .quiz .step-index-12 .quiz-step-title {
        padding: 0;
        margin: 4px 0 20px;
        font-size: 20px;
    }

    .step-index-12 .quiz-step-subtitle {
        font-size: 14px;
    }

}