.wizard-carousel-wrapper {
	display: flex;
	gap: 40px;
	/* padding: 20px;
	background-color: #e6edf5; */
	border-radius: 12px;
}

.wizard-left {
	width: 40%;
	background: white;
	justify-content: space-between;
}
.wizard-left p{
	margin-bottom: 20px;
    margin-top: 20px;
	font-size: 22px;
    line-height: 22px;
	font-family: 'TT Commons Regular';
}
.wizard-left h3{
	font-size: 38px;
    line-height: 36px;
    font-weight: 600;	
    font-family: 'TT Commons Semi Bold';
}

.wizard-button {

	background-color: #00af4f;
    color: white;
    padding: 15px 22px 12px 22px !important;
    border: none;
    border-radius: 8px;
    margin-top: 20px;
    cursor: pointer;
    font-size: 22px !important;
    font-weight: 500 !important;
    line-height: 22px !important;
    fill: var(--e-global-color-text);
    color: var(--e-global-color-text);
    border-radius: 30px 30px 30px 30px;
    padding: 15px 22px 12px 22px;
    color: #FFF !important;
    font-family: "TT Commons Regular", Sans-serif !important;align-content
}

.wizard-nav {
	display: flex;
	justify-content: flex-start;
	gap: 10px;
	margin-top: 20px;
    margin-bottom: 50px;
}

.wizard-nav button {
/* 	background-color: #eee;
	border: none;
	font-size: 20px;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	cursor: pointer; */
	
	background-color: transparent;
    border: none;
    font-size: 20px;
    /* width: 36px; */
    height: 36px;
    /* border-radius: 50%; */
    cursor: pointer;
    padding: 0;
}

.wizard-right {
	width: 60%;
	overflow: hidden;
}


.wizard-slides {
	display: flex;
	transition: transform 0.5s ease-in-out;
	will-change: transform;

}

.wizard-slide-group {
	min-width: 100%;
 	display: flex;
	
	flex-direction: column; 
	gap: 16px;
}
.wizard-slide-item p{
	margin-bottom:0px;
	color:#001E3F;
	font-weight:400;
	font-size:22px;
	font-family:22px;
	 font-family: 'TT Commons Regular';
}
.wizard-slide-item h4{
        color: #001E3F;
    font-weight: 500;
    font-size: 30px;
    line-height: 30px;
    margin-bottom: 2px;
    font-family: "TT Commons", Sans-serif;
}

.wizard-slide-item {
	background-color:#EDF6FF;
	padding: 20px 20px;
    border-radius: 10px;	
}
@media (max-width: 772px) {
.wizard-carousel-wrapper {
    display: inline-grid;
    gap: 40px;
    border-radius: 12px;
	}
	.wizard-left,.wizard-right {
		width: 100%;
	}
}

