.hero-section{
	background: #F6F9FE;
	padding-bottom: 150px;
}
.calculator-wrapper{
	margin-top: -100px;
	background: #FFFFFF;
	border: 1px solid #E1EBFF;
	box-shadow: 0px 4px 12px rgba(179, 205, 255, 0.25);
	border-radius: 6px;
}
.hero-section h1{
	font-style: normal;
	font-weight: 600;
	font-size: 46px;
	line-height: 60px;
	margin-bottom: 30px;
	color: #27283C;
}
.hero-section a.button{
	background: #1863DC;
	border-radius: 2px;
	padding: 20px 25px;
	display: inline-block;
	font-style: normal;
	font-weight: 600;
	font-size: 16px;
	line-height: 20px;
	color: #FFFFFF;
}
.hero-section a.button:hover{
	opacity: .8;
}
.hero-section p{
	font-style: normal;
	font-weight: normal;
	font-size: 18px;
	line-height: 36px;
	margin-bottom: 40px;
	color: #092C4C;
}
.calc-result-wrapper{
	background: #F6F9FE;
	border-radius: 16px;
}
.calc-result-wrapper h3{
	font-style: normal;
	font-weight: 600;
	font-size: 24px;
	line-height: 36px;
	margin-bottom: 25px;
	color: #092C4C;
}
.calc-result-wrapper p{
	font-style: normal;
	font-weight: normal;
	font-size: 18px;
	line-height: 18px;
	color: #1863DC;
	margin-bottom: 45px;
}
.calc-result-wrapper .earnings{
	font-style: normal;
	font-weight: 600;
	font-size: 46px;
	line-height: 46px;

	color: #1863DC;
}
.calc-result-wrapper a.button{
	font-style: normal;
	font-weight: 600;
	font-size: 16px;
	line-height: 20px;
	padding: 20px 25px;
	color: #FFFFFF;
	background: #1863DC;
	border-radius: 2px;
	display: inline-block;
}
.calculator-wrapper .inputs ul{
	border-radius: 6px;
	max-width: 320px;
	border: 1px solid #1964EF;
	margin-bottom: 40px;
}
.calculator-wrapper .inputs ul li{
	border-right: 1px solid #1964EF;
	font-style: normal;
	font-weight: 600;
	font-size: 15px;
	line-height: 22px;
	padding: 12px 20px;
	color: #1964EF;

	transition: all .2s ease;
	cursor: pointer;
}
.calculator-wrapper .inputs ul li:last-child{
	border-right: none;
}
.calculator-wrapper .inputs ul li.active,.calculator-wrapper .inputs ul li:hover{
	background: #1863DC;
	color: #fff;
	transition: all .2s ease;
}
.calculator-wrapper .inputs p{
	font-style: normal;
	font-weight: normal;
	font-size: 18px;
	line-height: 27px;
	color: rgba(0, 0, 0, 0.8);
}
.cy-page-template form input::placeholder{
	color: rgba(9, 44, 76, 0.4);
}
.cy-page-template form input[type=text],
.cy-page-template form input[type=email],
.cy-page-template form input[type=password],
.cy-page-template form input[type=url],
.cy-page-template form input[type=number],
.cy-page-template form textarea{
	border: 1px solid rgba(193, 193, 193, 0.8);
	border-radius: 3px;
	box-shadow: none;
	padding: 13px 15px;
	font-style: normal;
	font-weight: normal;
	font-size: 16px;
	line-height: 28px;
	color: #27283C;
	width: 100%;
}
.cy-page-template form input:focus,
.cy-page-template form textarea:focus{
	outline: none;
	border: 1px solid #1863DC;
	box-shadow: none;
}
.cy-page-template form label{
	margin-bottom: 15px;
	font-style: normal;
	font-weight: normal!important;
	font-size: 15px!important;
	line-height: 28px;
	color: #27283C;
}
.cy-page-template input[type=file]::-webkit-file-upload-button{
	font-style: normal;
	font-weight: normal;
	font-size: 16px;
	line-height: 28px;
	padding: 10px 15px;
	color: #1863DC;
	background: rgba(24, 99, 220, 0.08);
	border: 1px solid #1863DC;
	border-radius: 3px;
}
.cy-page-template input[type=file] {
	border: none;
	box-shadow: none;
	height: 100%!important;
	padding: 0;
}
.cy-page-template button,.cy-page-template input[type=submit]{
	background: #1863DC;
	border-radius: 2px;
	font-style: normal;
	font-weight: 600;
	font-size: 16px;
	line-height: 20px;
	color: #FFFFFF;
	padding: 20px 60px;
	text-align: center;
	display: block;
	width: 100%;
	max-width: 200px;
	border: none;
}
.cy-page-template button.app-submit:hover,.cy-page-template button.app-submit:focus,
.cy-page-template input[type=submit]:hover,.cy-page-template input[type=submit]:focus{
	background: #1863DC;
	opacity: .8;
}