*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Inter", sans-serif;
}

html{
	background: url(img/bg_top.jpg) no-repeat center 0;
	background-size: 100% auto;
	height: 100vh;
}

body{
	background: url(img/bg_bottom.jpg) no-repeat center 100%;
	background-size: 100% auto;
	min-height: 100vh;
}


.result_blur{
	width: 100%;
	height: 100vh;
	background: rgba(255,255,255,.5);
	position: fixed;
	top: 0;
	left: 0;
	backdrop-filter: blur(7px);
	z-index: 9999;
	display: none;
	justify-content: center;
	align-items: center;
}

.result_form{
	width: 100%;
	max-width: 400px;
    padding: 25px 15px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .2);
    margin: auto;
}

.result_title{
	font-size: 26px;
	line-height: 35px;
	font-weight: 600;
	margin-bottom: 10px;
	text-align: center;
}

.result_title span{
	color: #3dbca7;
}



.container{
	max-width: 860px;
	width: 100%;
	margin: 0 auto;
	padding: 0 15px;
}

.top_line{
	height: 80px;
	display: flex;
	align-items: center;
}

.top_line .container{
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.top_info{
	text-align: right;
}

.top_info p{
	font-weight: 500;
	font-size: 14px;
}

.top_info span{
	font-weight: 300;
	font-size: 14px;
}

.meta_link{
	text-decoration: none;
	color: #000;
	display: block;
	padding: 0 20px;
	background: #fff;
	height: 43px;
	border-radius: 25px;
	display: flex;
	align-items: center;
	box-shadow: 0 4px 34px rgba(0, 0, 0, .17);
	transition: background .3s;
}

.meta_link:hover{
	background: #d7f9ef;
	transition: background .3s;
}



.meta_link img{
	display: block;
	margin-left: 5px;
	width: 26px;
}

main{
	display: flex;
	/*justify-content: space-between;*/
	padding-top: 50px;
	align-items: center;
}

.col_left{
	max-width: 330px;
	width: 100%;
}

.screen_mob{
	display: none;
}

.screen_mob img{
	width: 100%;
}

.screen_box{
	margin-left: 15px;
	width: 250px;
	overflow: hidden;
	position: relative;
	height: 530px;
}

.screen_item{
	max-width: 250px;
	width: 100%;
	position: absolute;
	opacity: 0;
	top: 0;
	left: 0;
	transition: opacity 1s ease-in-out; /* Плавна зміна за 0.8 сек */
	pointer-events: none;

}

.screen_item.active{
	opacity: 1;
	pointer-events: auto;
	transition: opacity 1s ease-in-out; /* Плавна зміна за 0.8 сек */
}

.screen_item img{
	display: block;
	width: 100%;
}

.screen_pagin{
	max-width: 250px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: 15px;
}

.screen_pagin span{
	width: 12px;
	height: 6px;
	background: #C4C4C4;
	border-radius: 25px;
	margin: 0 3px;
	cursor: pointer;
	transition: width .3s;
}

.screen_pagin span.active{
	background: #3DBCA7;
	width: 20px;
	transition: width .3s;
}



.col_right{
	max-width: 500px;
	width: 100%;
	/*padding-top: 80px;*/
}

h1{
	font-size: 40px;
	font-weight: 600;
}

.final_h{
	margin-top: 0px;
	text-align: center;
}

.result_box{
	display: none;
	font-size: 14px;
	margin-top: 5px;
}

.result_info{
	margin-top: 20px;
	width: 100%;
	padding: 12px 8px;
	border-radius: 8px;
	background: #FFF1F2;
	border: 1px solid #F1AEB5;
	font-size: 14px;
    line-height: 20px;
	display: flex;
	align-items: center;
	margin-bottom: 15px;
}

.result_icon{
	width: 60px;
	height: 60px;
	border-radius: 8px;
	background: #F7D3D6;
	margin-right: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.result_icon img{
	max-width: 45px;
	width: 100%;
}

.result_info span{
	text-decoration: underline;
	color: #e90000;
	font-weight: 500;
}

.result_box ul li{
	list-style: none;
	padding-left: 32px;
	line-height: 18px;
	font-size: 13px;
	margin-top: 10px;
	position: relative;
}

.result_box ul li:after{
	content: "⚠️";
    position: absolute;
    top: 0px;
    left: 5px;
    font-size: 15px;
}

.result_box ul li:last-child{
	margin-top: 20px;
	font-weight: 500;
	line-height: 20px;
}

.result_box ul li:last-child:after{
	content: "✅";
	position: absolute;
	top: 0;
	left: 5px;
	font-size: 15px;
}

h1 span{
	color: #3dbca7;
}

.step_info{
	/*	text-align: center;*/
	margin-top: 15px;
	font-size: 14px;
}

.progress{
	width: 100%;
	height: 11px;
	border-radius: 25px;
	background: #F4F3F3;
	margin-top: 10px;
	position: relative;
}

.progress span{
	width: 25%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 25px;
	background: #6EBABB;
	transition: width .5s;
}

.quiz_wrap{
	margin-top: 20px;
}

.quiz_title{
	font-size: 20px;
	line-height: 28px;
}

.quiz_title span{
	color: #3dbca7;
}

.quiz_wrap{
	width: 100%;
	overflow: hidden;

}

.quiz_box{
	width: 500%;
	display: flex;
	left: 0%;
	position: relative;
	transition: left .3s;
}

.quiz_step{
	width: 25%;
	height: 0;
}

.quiz_step.active{
	height: auto;
}

.quiz_item{
	margin-top: 15px;
	width: 100%;
	height: 65px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	border: 2px solid #E6ECF5;
	background: #fff;
	cursor: pointer;

}

.item_icon{
	width: 60px;
	text-align: center;
	font-size: 30px;
}

.item_title{
	font-weight: 500;
}

.quiz_item small{
	font-weight: 300;
}

.quiz_info{
	font-size: 12px;
	font-style: italic;
	color: #494949;
	text-align: center;
	margin-top: 25px;
}


.button_box{
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 20px;
	margin-bottom: 15px;
}

.button_box span{
	font-size: 12px;
}

.next_step{
	/*max-width: 277px;*/
	width: 100%;
	height: 47px;
	color: #fff;
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 700;
	background: #d4d4d4;
	border: 0;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.load_box{
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
	flex-direction: column;
	opacity: 0;
	transition: opacity .3s;
}

.analysis{
	font-size: 22px;
	margin-top: 20px;
	font-weight: 500;
}

.analysis span{
	color: #25b09b;
}   

.pdf_img{
	max-width: 345px;
	width: 100%;
	display: none;
	margin: 0 auto;
}

.sub_head{
	font-size: 18px;
	margin-top: 35px;
	display: block;
	line-height: 30px;
}

.sub_head span{
	color: #098E78;
	font-weight: 500;
}

.subs_form{
	/*display: none;*/
}

.input_line{
	position: relative;
}

.input_line:after{
	content: "";
	width: 24px;
	height: 24px;
	background: url("img/email_icon.png") no-repeat center;
	background-size: 24px;
	position: absolute;
	top: 50%;
	left: 15px;
	transform: translateY(-50%);
}

.subs_form input{
	width: 96%;
	padding-left: 50px;
	height: 47px;
	border-radius: 10px;
	font-size: 14px;
	border: 0;
	background: #fff;
	outline: none;
	box-shadow: 0 4px 10px rgba(0,0,0,.17);
	margin-right: 15px;
}

.button_wrap {
    position: relative;
    margin-top: 15px;
}

.button_wrap:after {
    content: "";
    width: 100%;
    height: 100%;
    background: #1ca48d;
    border-radius: 10px;
    position: absolute;
    left: 0;
    top: 4px;
}

.subs_form button{
	background: #3DBCA7;
	cursor: pointer;
	border-radius: 10px;
	width: 100%;
	height: 47px;
	color: #fff;
	border: 0;
	font-weight: 700;
	text-transform: uppercase;
	font-size: 14px; 
	transition: background .3s;
	position: relative;
	z-index: 9999;
}

.subs_form button:hover{
	background: #1bae96;
	transition: background .3s;
}

.subs_form button span{
	width: 40px;
	height: 40px;
	border-radius: 10px;
	background: #1CA48D url("img/pdf_icon.png") no-repeat center;
	background-size: 23px;
	position: absolute;
	top: 50%;
	left: 4px;
	transform: translateY(-50%);
	display: flex;
	align-items: center;
}

.subs_form button small{
	display: block;
	font-weight: 300;
	font-size: 10px;
}

.form_info{
	margin-top: 10px;
	font-size: 12px;
	background: url(img/info_icon.png) no-repeat 0 0;
	background-size: 15px;
	padding-left: 23px;
	font-style: italic;
}

.form_info span{
	font-weight: 500;
	color: #3dbca7;
}





/*Анімація завантаження*/

.loader {
	width: 50px;
	aspect-ratio: 1;
	--_c:no-repeat radial-gradient(farthest-side,#25b09b 92%,#0000);
	background: 
	var(--_c) top,
	var(--_c) left,
	var(--_c) right,
	var(--_c) bottom;
	background-size: 12px 12px;
	animation: l7 1s infinite;
}
@keyframes l7 {to{transform: rotate(.5turn)}}