#questions {
	max-width: 1000px;
	margin: auto;
	display: flex;
	align-items: center;
	position: relative;
	padding: 36px;
	padding-left: 56px;
	padding-right: 56px;
	overflow: hidden;

}

#questions .background {
	content: '';
	position: absolute;
	/*width: calc(100% - 120px - 56px);*/
	width: 150%;
	height: 100%;
	background-image: linear-gradient(to right, #4C8FFC, #3D468D);
	z-index: -1;
	top: 0;
	left: calc(56px + 120px);
	transition: left 0.5s linear;
}

#questions .active {
	left: 0;
}

#questions .icon {
	color: white;
	width: 120px;
}

#questions .icon i {
	font-size: 76px;
}


#questions .text {
	max-width: 400px;
	padding-left: 56px;
	color: white;
}

#questions .text .title {
	margin-bottom: 8px;
}

#questions .button {
	margin-left: auto;
}


