body {
	font-size: 20px;
}

.site-logo img{
	width: 100%;
	max-width: 32rem;
}

.agent {
	height: 80px;
}

.flow-content .container {
	max-width: 49.5rem;
}

.flow-content {
	--red-color: #ef4444;
	--grey-color: #374151;
	--grey-md-color: rgb(107 114 128);
	--grey-light-color: #d1d5db;
	--orange-color: rgb(245 158 11);
	--green-color: rgb(16 185 129);
	--blue-color: rgb(29 78 216);
}

.flow-content h1 {
	font-size: 2rem;
	line-height: 1.1;
}

@media screen and (min-width: 768px) {
	.flow-content h1 {
		font-size: 2.25rem;
	}
}

.flow-content .text-red {
	color: var(--red-color);
}

.flow-content .text-green {
	color: var(--green-color);
}

.flow-content .quiz-highlighted-block {
	background-color: var(--grey-light-color);
	color: var(--grey-color);
	font-size: 1.875rem;
	padding: 1rem;
	margin-bottom: 2rem;
}

@media screen and (min-width: 768px) {
	.flow-content .quiz-highlighted-block {
		padding: 2rem;
	}
}

.flow-content .quiz-list__question {
	font-size: 2rem;
	margin-bottom: 2rem;
}

@media screen and (min-width: 768px) {
	.flow-content .quiz-list__question {
		font-size: 3rem;
	}
}

.flow-content .btn.btn-quiz {
	color: white;
	padding: 2rem;
	border-radius: 0;
	font-size: 2rem;
	background-color: var(--orange-color);
	font-weight: bold;
	box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
}

@media screen and (min-width: 768px) {
	.flow-content .btn.btn-quiz {
		font-size: 3rem;
		padding: 3rem;
	}
}

.flow-content .btn.btn-quiz:hover {
	background-color: rgb(251 191 36);
}

.flow-content .disclaimer {
	color: var(--grey-md-color);
	margin-top: 5rem;
}

@media screen and (min-width: 768px) {
	.flow-content .disclaimer {
		margin-top: 18rem;
	}
}

.flow-content .congratulation-block {
	background-color: rgb(243 244 246);
	padding: 2.5rem;
	border-top: 5px solid var(--blue-color);
	display: flex;
	flex-direction: column;
	align-items: center;
	box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.1);
}

.flow-content .congratulation-block__title {
	color: var(--green-color);
	font-size: 4.5rem;
	font-weight: bold;
	text-align: center;
	margin-bottom: 2rem;
}

.flow-content .congratulation-block__subtitle {
	font-size: 2.25rem;
	line-height: 1.375;
}

.flow-content .cta-text {
	font-weight: bold;
	font-size: 3.75rem;
	line-height: 1;
	text-align: center;
	margin-bottom: 3rem;
}

.flow-content .btn.btn-cta {
	padding: 1.5rem;
	color: white;
	background-color: var(--orange-color);
	font-weight: bold;
	box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.1);
	font-size: 3rem;
	border-radius: 0.5rem;
	line-height: 1.2;
	max-width: 33.75rem;
	width: 100%;
	animation-name: pulse;
	animation-timing-function: ease-in-out;
	animation-iteration-count: infinite;
	animation-duration: 1s;
	animation-fill-mode: both;
}

.flow-content .btn.btn-cta:hover {
	background-color: rgb(251 191 36);
}

.flow-content .progress-bar__container {
	height: 2rem;
	border-radius: 2rem;
	position: relative;
	overflow: hidden;
	box-shadow: 0 0 5px var(--orange-color);
	--progress: 0%;
}

.flow-content .progress-bar__container.completed {
	box-shadow: 0 0 5px var(--green-color);
}

.flow-content .progress-bar__container.completed .progress-bar {
	background-color: var(--green-color);
}

.flow-content .progress-bar {
	position: absolute;
	height: 100%;
	width: var(--progress);
	background-color: var(--orange-color);
	top: 0;
	bottom: 0;
	left: 0;
	border-radius: inherit;
	transition: all 0.5s;
	will-change: width;
}

.flow-content .progress-bar__text {
	text-align: center;
	font-size: 1.875rem;
	font-weight: 400;
	margin-bottom: 2rem;
}

@keyframes pulse {
	0% {
		transform: scaleX(1);
	}
	50% {
		transform: scale3d(1.05, 1.05, 1.05);
	}
	to {
		transform: scaleX(1);
	}
}
