@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;900&display=swap');

*{
	font-family: 'Montserrat', sans-serif;
}
body{
	background: #ffffff url('../images/background.svg') center top no-repeat;
	background-size: 100% auto;
}
header{
	position: relative;
	padding-top: 50px;
	padding-bottom: 30px;
}
header>a{
	display: block;
	position: absolute;
	top: 20px;
	left: 20px;
}
header img{
	max-height: 45px;
}
header h1{
	text-align: center;
	font-weight: 700;
	font-size: 30px;
	/*color: #000000;*/
	color: #dd2255;
	margin: 0;
	line-height: 1.4;
	padding-left: 20px;
	padding-right: 20px;
}

.main{
	max-width: 1160px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 100px;
}
.main .text{
	max-width: 770px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 30px;
	opacity: 0.8;
}
.main h2{
	font-weight: 400;
	font-size: 20px;
	color: #000000;
	line-height: 1.4;
	margin-bottom: 30px;
	text-align: center;
}
.main label{
	font-size: 16px;
	color: #000000;
	display: block;
	margin-bottom: 10px;
	font-weight: 500;
}
.main input[type=number]{
	width: 200px;
	box-sizing: border-box;
	padding: 18px 20px 18px 20px;
	font-size: 14px;
	color: #000000;
	line-height: 1;
	border-radius: 10px;
	border: 0;
	outline: none;
	-webkit-box-shadow: 0px 4px 8px 0px rgba(34, 60, 80, 0.1);
	-moz-box-shadow: 0px 4px 8px 0px rgba(34, 60, 80, 0.1);
	box-shadow: 0px 4px 8px 0px rgba(34, 60, 80, 0.1);
	width: 100%;
	max-width: 200px;
}
.main .field{
	margin-bottom: 40px;
	display: inline-block;
	vertical-align: top;
	width: 100%;
	max-width: 25%;
	margin-right: -4px;
}
.main .field .error{
	color: red;
	padding-top: 10px;
	font-size: 12px;
}
.main .buttons{
	text-align: center;
	margin-bottom: 90px;
	clear: both;
	padding-top: 10px;
}
.main .buttons input[type=button]{
	display: inline-block;
	vertical-align: top;
	font-size: 16px;
	line-height: 1;
	padding: 18px 20px 18px 20px;
	border-radius: 30px;
	width: 100%;
	max-width: 225px;
	text-align: center;
	border: 1px solid #dd2255;
	margin-left: 10px;
	margin-right: 10px;
	color: #000000;
	background: #ffffff;
	font-weight: 500;
	cursor: pointer;

	-webkit-transition: all 0.3s linear;
	-moz-transition: all 0.3s linear;
	-ms-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
	transition: all 0.3s linear;
}
.main .buttons input[type=button]:hover{
	background: rgb(221,34,85);
	background: linear-gradient(353deg, rgba(221,34,85,1) 0%, rgba(253,93,91,1) 100%);
	color: #ffffff;
}
.main .buttons input[type=submit]{
	display: inline-block;
	vertical-align: top;
	font-size: 16px;
	line-height: 1;
	padding: 18px 20px 18px 20px;
	border-radius: 30px;
	width: 100%;
	max-width: 225px;
	text-align: center;
	border: 1px solid #dd2255;
	margin-left: 10px;
	margin-right: 10px;
	color: #000000;
	background: #ffffff;
	font-weight: 500;
	cursor: pointer;

	-webkit-transition: all 0.3s linear;
	-moz-transition: all 0.3s linear;
	-ms-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
	transition: all 0.3s linear;	

}
.main .buttons input[type=submit]:hover{
	background: rgb(221,34,85);
	background: linear-gradient(353deg, rgba(221,34,85,1) 0%, rgba(253,93,91,1) 100%);
	color: #ffffff;
}
.calc-result{
	overflow: hidden;
	max-height: 0;

	-webkit-transition: all 0.3s linear;
	-moz-transition: all 0.3s linear;
	-ms-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
	transition: all 0.3s linear;
}
.calc-result-open{
	max-height: 5000px;
}
.calc-result .roi{
	background: #ffffff;
	padding: 7px 7px 7px 7px;
	border-radius: 10px;
	width: 100%;
	max-width: 230px;
	box-sizing: border-box;
	margin-bottom: 40px;
	margin-left: auto;
	margin-right: auto;

	-webkit-box-shadow: 0px 4px 8px 0px rgba(34, 60, 80, 0.1);
	-moz-box-shadow: 0px 4px 8px 0px rgba(34, 60, 80, 0.1);
	box-shadow: 0px 4px 8px 0px rgba(34, 60, 80, 0.1);
}
.calc-result .roi>div{
	background: rgb(253,93,91);
	background: linear-gradient(180deg, rgba(253,93,91,1) 0%, rgba(221,34,85,1) 100%);
	padding: 7px 7px 7px 7px;
}
.calc-result .roi .heading{
	color: #ffffff;
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 5px;
	text-align: center;
}
.calc-result .roi .text{
	color: #ffffff;
	font-size: 14px;
	font-weight: 400;
	margin-bottom: 5px;
	text-align: center;
}
.calc-result .roi .result{
	color: #ffffff;
	font-size: 30px;
	font-weight: 700;
	text-align: center;
}
.green-blocks{
	margin-left: -30px;
	margin-right: -30px;
}
.green-blocks .block{
	vertical-align: top;
	display: inline-block;
	padding: 0 30px 0 30px;
	width: 100%;
	max-width: 33.33%;
	box-sizing: border-box;
	float: left;
}
.green-blocks .block>div{
	box-sizing: border-box;
	border-radius: 10px;
	padding: 20px 20px 20px 20px;
}
.green-blocks .block>div>div{
	position: relative;
}
.green-blocks .block .heading{
	font-size: 20px;
	color: #ffffff;
	font-weight: 700;
	margin-bottom: 0;
}
.green-blocks .block .text{
	font-size: 14px;
	color: #ffffff;
	font-weight: 400;
	margin-bottom: 10px;
}
.green-blocks .block .short-text{
	max-width: 100px;
	margin-left: 0;
}
.green-blocks .block .result{
	font-size: 30px;
	color: #ffffff;
	font-weight: 700;
	position: absolute;
	right: 0;
	bottom: 0;
}
.green-blocks .block-1>div{
	background: rgb(0,181,116);
	background: linear-gradient(270deg, rgba(0,181,116,1) 0%, rgba(68,154,0,1) 100%);
}
.green-blocks .block-2>div{
	background: rgb(5,130,200);
	background: linear-gradient(270deg, rgba(5,130,200,1) 0%, rgba(1,169,89,1) 100%);
}
.green-blocks .block-3>div{
	background: rgb(5,64,217);
	background: linear-gradient(270deg, rgba(5,64,217,1) 0%, rgba(1,143,188,1) 100%);
}

body .ui-tooltip{
	border: 0 !important;
	-webkit-box-shadow: 0px 4px 8px 0px rgba(34, 60, 80, 0.1) !important;
	-moz-box-shadow: 0px 4px 8px 0px rgba(34, 60, 80, 0.1) !important;
	box-shadow: 0px 4px 8px 0px rgba(34, 60, 80, 0.1) !important;
	border: 10px !important;
}

/*.download-pdf{
	display: block;
	position: absolute;
	width: 100px;
	height: 100px;
	background: url('../images/pdf-icon.png') center center no-repeat;
	background-size: cover;
	position: fixed;
	top: 50%;
	right: 20px;
	
	opacity: 0;
	pointer-events: none;

	-webkit-transition: all 0.3s linear;
	-moz-transition: all 0.3s linear;
	-ms-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
	transition: all 0.3s linear;
}
.download-pdf-show{
	opacity: 1;
	pointer-events: auto;
}*/
.download-pdf{
	display: inline-block;
	background: linear-gradient(353deg, rgba(221,34,85,1) 0%, rgba(253,93,91,1) 100%);
	/*background-image: url('../images/pdf-icon.png');
	background-position: left center;
	background-repeat: no-repeat;
	background-size: 30px 30px;*/

	opacity: 0;
	pointer-events: none;
	padding: 0;
	width: 0;

	position: relative;
	color: #ffffff;
	font-size: 16px;
	line-height: 1;
	
	border-radius: 30px;
	text-decoration: none;

	-webkit-transition: all 0.3s linear;
	-moz-transition: all 0.3s linear;
	-ms-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
	transition: all 0.3s linear;
}
.download-pdf:before{
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: 10px;
	width: 40px;
	height: 40px;
	margin-top: -20px;

	background: url('../images/pdf-icon.png') center center no-repeat;
	background-size: cover;
	pointer-events: none;	
}
.download-pdf-show{
	opacity: 1;
	pointer-events: auto;
	padding: 18px 20px 18px 60px;
	width: auto;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type=number] {
  -moz-appearance: textfield;
}

@media (max-width: 1240px) {
	.green-blocks .block{
		max-width: 100%;
		margin-bottom: 40px;
	}
	.green-blocks .block>div{
		max-width: 350px;
		margin-left: auto;
		margin-right: auto;
	}
	.main form{
	}
	.main>.text{
		padding-left: 20px;
		padding-right: 20px;
	}
	.main .field{
		max-width: 50%;
		padding-left: 20px;
		padding-right: 20px;
		box-sizing: border-box;
	}
	.main input[type=number]{
		width: 100%;
		max-width: 100%;
	}
	.main .buttons input[type=submit]{
		margin-bottom: 30px;
	}
	.main h2{
		padding-left: 20px;
		padding-right: 20px;		
	}
	header{
		text-align: center;
	}
	header>a{
		display: inline-block;
		position: static;
		margin-bottom: 30px;
	}
}
@media (max-width: 800px) {
	.main label{
		font-size: 10px;
	}
	.calc-result .roi{
		margin-bottom: 10px;
	}
	.calc-result .roi .heading{
		font-size: 16px;
	}
	.calc-result .roi .text{
		font-size: 10px;
	}
	.calc-result .roi .result{
		font-size: 26px;
	}
	.green-blocks .block{
		margin-bottom: 10px;
	}
	.green-blocks .block>div{
		padding-top: 10px;
		padding-bottom: 10px;
	}
	.green-blocks .block .heading{
		font-size: 16px;
	}
	.green-blocks .block .text{
		font-size: 10px;
	}
	.green-blocks .block .last-text{
		margin-bottom: 0;
	}
	.green-blocks .block .result{
		font-size: 26px;
	}
}