/**
 * Blocks
 */

#header{
	position:relative;
	display:flex;
	justify-content:space-between;
	align-items:center;
	column-gap:30px;
	padding:30px 0;
}
#header:before{
	content:"";
	position:absolute;
	left:-50vw;
	right:-50vw;
	top:0;
	bottom:0;
	margin:0 50%;
	background:var(--light);
	z-index:-1;
}
#header ul,
#header li{
	display:block;
	list-style:none;
	margin:0;
	padding:0;
}
#header ul{
	display:flex;
}
#header li{
	display:flex;
	flex-direction:column;
	justify-content:center;
	padding:12px 20px;
	color:var(--label);
	font-size:16px;
	line-height:1.2em;
	font-weight:700;
	background:var(--place);
}
#header li:first-child{
	border-radius:8px 0 0 8px;
}
#header li:last-child{
	border-radius:0 8px 8px 0;
}
#header li i{
	display:block;
	font-style:normal;
	font-size:0.9em;
	opacity:.5;
}
#header li a{
	display:flex;
	align-items:center;
	column-gap:10px;
	font:inherit;
	color:inherit;
	text-decoration:none;
}
#header li a[href^="tel"]:before,
#header li a.tel:before,
#header li a[href^="terminal"]:before,
#header li a.terminal:before{
	content:"";
	display:block;
	min-width:22px;
	max-width:22px;
	height:22px;
	border-radius:50%;
	background:50% 50% no-repeat var(--secondary);
}
#header li a[href^="tel"]:before,
#header li a.tel:before{
	background-image:url('../svg/phone-icon.svg');
}
#header li a[href^="terminal"]:before,
#header li a.terminal:before{
	background-image:url('../svg/terminal-icon.svg');
}
#header .mobile{
	display:none;
}
#header .button.mobile{
	padding:5px 10px;
}
#header .button.mobile span{
	font-size:16px;
	line-height:1.2em;
} 
#header .button.mobile span i{
	line-height:0.8em;
	line-height:1em;
}
#header .logo{
	min-width:276px;
	max-width:276px;
	height:86px;
}
#header .logo a{
	display:block;
	height:100%;
	width:100%;
}
#header .logo a > *{
	display:block;
	max-width:100%;
	max-height:100%;
	width:auto;
	margin:0;
}
#step-line{
	padding:46px;
}
#step-line ul,
#step-line li{
	display:block;
	list-style:none;
	margin:0;
	padding:0;
}
#step-line ul{
	overflow:hidden;
	display:flex;
	justify-content:space-between;
	align-items:center;
	width:506px;
	max-width:100%;
	margin:auto;
}
#step-line.hidden ul{
	visibility:hidden;
}
#step-line li{
	position:relative;
	box-sizing:border-box;
	width:26px;
	height:26px;
	border:3px solid #DFE7F3;
	border-radius:50%;
	background:50% 50% no-repeat #DFE7F3;
	transition:all .3s;
}
#step-line li.active{
	border-color:var(--primary);
}
#step-line li.completed{
	border-color:var(--primary);
	background-image:url('../svg/phase-check-icon.svg');
	background-color:var(--primary);
}
#step-line i{
	flex-grow:1;
	display:block;
	height:2px;
	background:#DFE7F3;
}
#step-line li.completed + i{
	background:var(--primary);
}
#steps{
	box-sizing:border-box;
	width:770px;
	max-width:100%;
	min-height:100vh;
	margin:0 auto;
}
#steps input[type^="te"],
#steps input[type="email"],
#steps input[type="url"],
#steps input[type="number"],
#steps textarea,
#steps select{
	display:inline-flex;
	box-sizing: border-box;
	height:80px;
	padding:25px 30px;
	color:var(--text);
	font-size:24px;
	line-height:1em;
	font-weight:400;
	text-transform:none;
	border-radius:8px;
	box-shadow:2px 2px 4px 0px #00000040 inset;
	border:1px solid #D1DEF3;
	transition:all .3s;
}
#steps input[type^="te"]:focus,
#steps input[type="email"]:focus,
#steps input[type="url"]:focus,
#steps input[type="number"]:focus,
#steps textarea:focus,
#steps select:focus{
	border-color:var(--primary);
}
#steps input[type="checkbox"]{
	appearance:none;
	display:flex;
	justify-content:center;
	align-items:center;
	box-sizing:border-box;
	width:27px;
	height:27px;
	/*border:3px solid var(--primary);*/
	border:3px solid lightgray;
	border-radius:3px;
	transition:all .3s;
	cursor:pointer;
}
#steps input[type="checkbox"]:before{
	content:"";
	width:15px;
	height:13px;
	background:url('../svg/checkbox-accept.svg') 50% 50%;
	background-size:contain;
	opacity:0;
	transition:all .3s;
}
#steps input[type="checkbox"]:checked:before{
	opacity:1;
}
#steps input[type="submit"],
#steps button,
#steps .button{
	display:flex;
	justify-content:center;
	align-items:center;
	column-gap:12px;
	padding:25px;
	font-size: 24px;
	font-weight:600;
	line-height:1.2em;
	letter-spacing:-0.015em;
	text-align:center;
	text-decoration:none;
	background:#D32121;
	border-color:#D32121;
	color:var(--light);
	border-radius:8px;
}
#steps input[type="submit"]:disabled,
#steps button:disabled,
#steps .button:disabled{
	opacity:.5;
	cursor:not-allowed;
}
#steps .button.large{
	padding:23.5px 30px;
	column-gap:25px;
	font-size:45px;
	line-height:.9em;
	font-weight:700;
}
#steps .button.large span{
	align-items:center;
	text-align:center;
}
#steps .button.large span i{
	font-size:16px;
	line-height:1.375em;
	color:var(--light);
	font-weight:600;
}
#steps .link{
	display:flex;
	justify-content:center;
	align-items:center;
	column-gap:12px;
	box-sizing:border-box;
	max-width:100%;
	padding:25px;
	font-size:24px;
	font-weight:400;
	line-height:1.2em;
	letter-spacing:-0.015em;
	text-align:center;
	text-decoration:none;
	background:#F2F7FF;
	border-color:#F2F7FF;
	color:var(--text);
	border-radius:8px;
}
#steps .link svg path{
	stroke:var(--primary);
}
#steps form{
	position:relative;
}
#steps section{
	box-sizing:border-box;
	width:100%;
	padding:55px 74px 50px;
	border-radius:24px;
	box-shadow:0 24px 50px 0 #0000001A;
	background:var(--light);
}
#steps h2{
	margin:0 0 40px;
	text-align:center;
	font-size:40px;
	line-height:1.225em;
	text-transform:none;
}
#steps h2 *{
	text-transform:inherit;
	display:inline-block;
}
#steps h2 span{
	display:contents;
}
#steps label{
	display:block;
	margin:0 0 20px;
}
#steps label input{
	width:100%;
}
#steps .buttons{
	margin:30px 0 0;
	display:flex;
	column-gap:20px;
}
#steps h2 + .buttons{
	margin-top:50px;
}
#steps .buttons > *{
	width:100%;
}
#steps .icon{
	display:flex;
	justify-content:center;
	align-items:center;
	margin:0 0 28px;
} 
#steps ul,
#steps li{
	display:block;
	list-style:none;
	margin:0;
	padding:0;
}
#steps .radiobuttons{
	display:flex;
	flex-wrap:wrap;
	margin:-10px;
}
#steps .radiobuttons input{
	appearance:none;
	display:flex;
	justify-content:center;
	align-items:center;
	width:calc((100% / 3) - 20px);
	margin:10px;
	height:130px;
	font-size:26px;
	font-weight:400;
	line-height:1.23em;
	letter-spacing:-.01em;
	text-align:center;
	/*text-transform:capitalize;*/
	color:var(--light);
	border-radius:8px;
	background:#D32121;
	cursor:pointer;
}
#steps .radiobuttons input:checked{
	background-color:#b30101;
	cursor:auto;
}
#steps .radiobuttons input:after{
	content:attr(value);
}
#steps p{
	margin:1em 0;
	color:var(--light);
}
#steps p:last-of-type{
	margin-bottom:0;
}
#steps .links{
	margin:40px 0 0;
}
#steps .links > *{
	width:100%;
}
#steps p{
	color:#8394A8;
	font-weight:400;
}
#steps p a{
	text-decoration:none;
}
#steps .acceptance{
	display:flex;
	column-gap:19px;
	margin:28px 0 30px;
}
#steps .acceptance > input{
	min-width:27px;
	max-width:27px;
}
#steps .acceptance p{
	margin:0;
}
#steps .acceptance p strong {
    font-weight: 300;
}
#steps .step-icons{
	display:flex;
	justify-content:space-between;
	align-items:center;
	box-sizing:border-box;
	width:560px;
	max-width:100%;
	margin:0 auto;
	padding:0 0 132px;
}
#steps .step-icons span{
	position:relative;
	display:flex;
	justify-content:center;
	align-items:center;
	box-sizing:borfer-box;
	width:96px;
	height:96px;
	padding:12px;
	border-radius:50%;
	background:50% 50% no-repeat #D9D9D9;
	background-size:100% 100%;
}
#steps .step-icons span:after{
	content:attr(title);
	position:absolute;
	left:0;
	right:0;
	top:100%;
	margin:33px -26px 0;
	font-size:30px;
	font-weight:600;
	line-height:1.1em;
	letter-spacing:-0.01em;
	text-align:center;
	color:#D9D9D9;
}
#steps .step-icons i{
	flex-grow:1;
	display:block;
	height:4px;
	background:#D9D9D9;
}
#steps h4{
	margin:40px 0;
	font-size:30px;
	font-weight:400;
	line-height:1.2em;
	letter-spacing:-.01em;
	text-align:center;
	text-transform:none;
}
#steps h5{
	font-size:25px;
	font-weight:400;
	line-height:1.24em;
	letter-spacing:-.01em;
	text-align:center;
	text-transform:none;
}
#steps br{
	margin:0;
}
#finish h2{
	margin-left:-20px;
	margin-right:-20px;
	letter-spacing:-.03em;
}
#finish .buttons{
	margin-top:40px;
	margin-top:40px;
}
#finish h4{
	margin:55px -40px 77px;
}
#finish .buttons + h5{
	margin-top:68px;
}
#finish h4 strong,
#finish h5 strong{
	display:inline-block;
}
[id$="-popup"]{
	visibility:hidden;
	position:fixed;
	left:0;
	right:0;
	top:0;
	bottom:0;
	display:flex;
	justify-content:center;
	align-items:center;
	padding:40px;
	opacity:0;
	z-index:1000;
	transition:all .3s;
}
[id$="-popup"].active{
	visibility:visible;
	opacity:1;
}
[id$="-popup"] > a{
	position:absolute;
	left:0;
	right:0;
	top:0;
	bottom:0;
	background:var(--dark);
	opacity:.8;
	cursor:pointer;
}
[id$="-popup"] > div{
	overflow:hidden;
	position:relative;
	box-sizing:border-box;
	width:750px;
	max-width:100%;
	margin:0 auto;
	padding:38px 50px 48px;
	text-align:center;
	border-radius:6px;
	box-shadow:0 24px 50px 0 #0000001A;
	background:var(--light);
}
[id$="-popup"] > div:after{
	content:"";
	position:absolute;
	left:0;
	right:0;
	top:53%;
	bottom:0;
	background:#D8E2F5;
}
[id$="-popup"] > div > *{
	position:relative;
	z-index:1;
}
[id$="-popup"] > div > .close{
	position:absolute;
	right:0;
	top:0;
	margin:20px;
	cursor:pointer;
}
[id$="-popup"] > div > .close:after{
	content:"";
	position:absolute;
	left:-10px;
	right:-10px;
	top:-10px;
	bottom:-10px;
}
[id$="-popup"] > div > .close svg path{
	transition:all .3s;
}
[id$="-popup"] > div > .close:hover svg path{
	fill:#D32121;
}
[id$="-popup"] br{
	margin:0;
}
[id$="-popup"] .icon{
	margin:0 0 26px;
}
[id$="-popup"] h2{
	font-size:40px;
	line-height:1.2em;
	margin:8px 0;
	text-transform:none;
}
[id$="-popup"] figcaption{
	margin:8px 0 3em;
	font-size:22px;
	font-weight:600;
	line-height:1.2em;
	color:var(--primary);
	text-transform:none;
}
[id$="-popup"] h4{
	margin:0 0 1em;
	font-size: 23px;
	font-weight:600;
	line-height:1.2em;
}
#exit_intent-popup .button.large{
	padding:15px 28px;
	column-gap:8px;
	font-size:45px;
	line-height:.9em;
	font-weight:700;
}
#exit_intent-popup .button.large span{
	align-items:center;
	font-size:28px;
	font-weight:600;
	line-height:33px;
	text-align:center;
}
#exit_intent-popup .button.large span i{
	font-size:16px;
	line-height:1.375em;
	color:var(--light);
	font-weight:600;
}
.page{
	position:absolute;
	width:100%;
}
.page{
	transition:all .3s;
}
.page.active {
	transform: translateX(0%);
	pointer-events: auto;
}
.page:not(.active) {
	visibility:hidden;
	opacity:0;
	pointer-events: none;
}
.page.next {
	transform: translateX(100%);
}
.page.previous {
	transform: translateX(-100%);
}
#two-blocks-changing{
	position:relative;
	min-height:370px;
}
#two-blocks-changing #analyze{
	position:absolute;
	left:0;
	right:0;
	top:0;
	z-index:1;
}
#two-blocks-changing #finish{
	position:relative;
	z-index:-1;
	opacity:0;
}
#copyright_notification{
	padding-top:40px;
	text-align:center;
	font-size:18px;
	line-height:1.22em;
	color:#8394A8;
}