@import url('https://fonts.googleapis.com/css2?family=PT+Sans:wght@400;700&display=swap');
/*font-family: 'PT Sans', sans-serif;*/


h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, var,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video, ul, ol, li {
	margin:0;
	padding:0;
	border:0;
	outline:0;
	font-size:100%;
	font-weight:normal;
	vertical-align:top;
	background:transparent;
	list-style:none;
}

article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {
	display:block;
}

html, body {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
body {
	font-family: 'PT Sans', sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	color: #6B6F81;
	padding: 0;
	margin: 0;
	text-size-adjust: none ;
	-webkit-text-size-adjust: none;
	overflow-x: hidden;
}
*,
:after,
:before {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
}
.cf:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}
.cf {
	display: block;
}
img {
	display:block;
	max-width:100%;
}
a {
	color: #078041;;
	text-decoration: none;
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	padding: 0;
	outline: none;
}
a:hover {
	color: #6B6F81;
}

hr {
	border: 0;
	border-top: 1px solid #D0D0D0;
	height: 1px;
	margin: 60px 0;
	padding: 0;
}

.title {
	margin-bottom: 35px;
}
h1 {
	font-family: 'PT Sans', sans-serif;
	font-size: 48px;
	line-height: normal;
	font-weight: 400;
	color: #000;
	margin-bottom: 15px;
}
h1 span,
h2 span {
	color: #078041;
}
h2 {
	font-family: 'PT Sans', sans-serif;
	font-size: 36px;
	line-height: normal;
	font-weight: 400;
	color: #000;
	margin-bottom: 15px;
}
h4 {
	font-family: 'PT Sans', sans-serif;
	font-size: 24px;
	line-height: normal;
	color: #000;
	margin-bottom: 10px;
}
h5 {
	font-family: 'PT Sans', sans-serif;
	font-size: 20px;
	line-height: normal;
	color: #000;
	margin-bottom: 10px;
}
h6 {
	font-family: 'PT Sans', sans-serif;
	font-size: 16px;
	line-height: normal;
	color: #000;
	margin-bottom: 10px;
}
p {
	margin-bottom: 20px;
}
.title:last-child,
h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child,
p:last-child {
	margin-bottom:0;
}
.text-center {
	text-align: center;
}

/* Form css start */
.form-list {
    margin: 0 -7px;
    font-size: 0;
}
.form-list li {
    width: calc(50% - 14px);
    vertical-align: middle;
    margin: 5px 7px;
    display: inline-block;
    font-size: 16px;
    vertical-align: top;
}
.form-list li.full {
    width: calc(100% - 14px);
}
.text-field {
    position: relative;
    width: 100%;
    background-color: #ffffff;
    border: 0;
    font-family: 'PT Sans', sans-serif;
    font-size: 18px;
    color: #323750;
    text-align: left;
    padding: 18px 25px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    -webkit-text-shadow: none;
    -moz-text-shadow: none;
    text-shadow: none;
}
.dark-bg .text-field {
	color: #323750;
}
.error .text-field {
    background-color: #FFC0C0;
}
.error-msg,
.dark-bg .error-msg {
    color: #FF0000;
    display: block;
    margin-top: 5px;
    font-size: 18px;
    line-height: 18px;
    text-align: left;
    padding-left: 20px;
    font-weight: 500;
}
.error input::-webkit-input-placeholder {
    color: #1E1E25;
    opacity: 1
}
.error input::-moz-placeholder {
    color: #1E1E25;
    opacity: 1
}
.error input:-ms-input-placeholder {
    color: #1E1E25;
    opacity: 1
}
.error input:-moz-placeholder {
    color: #1E1E25;
    opacity: 1
}
.button,
button {
	display: inline-block;
	background: #078041;
	border: 0;
	padding: 18px 30px;
	font-family: 'PT Sans', sans-serif;
	font-size: 18px;
	font-weight: 700;
	color: #fff;
	text-align: center;
	cursor: pointer;
	-webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
}
.button.small-btn {
	padding: 14px 30px;
	font-size: 16px;
} 
.button:hover,
button:hover,
.button:focus,
button:focus {
	color: #fff;
	background: #FB7306;
}
select, button, input {
    filter: none;
    -webkit-appearance:none;
    -moz-appearance:none;
    -ms-appearance:none;
    -o-appearance:none;
    appearance:none;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type='number'] {
    -moz-appearance:textfield;
}
input:focus {
    outline: none;
}

.radio-style-button {
    margin: 0 15px 15px 0;
    display: inline-block;
}
.radio-style-button:last-child {
	margin-right: 0;
}
.radio-style-button input[type="radio"] {
	display: none;
}
.radio-style-button input[type="radio"] + label {
    display: block;
    background-color: #fff;
    padding: 18px 20px;
    font-size: 18px;
    color: #323750;
    cursor: pointer;
    text-align: center;
    border-radius:5px;
    -webkit-border-radius:5px;
    -moz-border-radius:5px;
    transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
}
.radio-style-button input[type="radio"]:checked + label {
    background-color: #FB7306;
    color: #fff;
}
/* Form css end */

.content-wrapper {
	width: 100%;
	overflow: hidden;
}

.container {
	width: 1340px;
	max-width: 100%;
	padding-left: 50px;
	padding-right: 50px;
	margin: 0 auto;
}
.small-container {
	width: 1080px;
}

.row {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
}
.align-center {
    align-items:center;
    -webkit-align-items:center;
    -ms-align-items:center;
}
.align-start {
    align-items:start;
    -webkit-align-items:start;
    -ms-align-items:start;
}
.align-end {
	align-items: flex-end;
    -webkit-align-items: flex-end;
    -ms-align-items: flex-end;
}
.space-between {
	justify-content: space-between;
    -webkit-justify-content: space-between;
    -ms-justify-content: space-between;
}
.row .col,
.row [class^="col-"] {
    padding-left: 15px;
    padding-right: 15px;
}
.row.no-gutters {
	margin-left: 0;
    margin-right: 0;
}
.row.no-gutters > .col,
.row.no-gutters > [class^="col-"] {
	padding-left: 0;
    padding-right: 0;
}
.col {
	-ms-flex-preferred-size:0;
    flex-basis:0;
    -webkit-box-flex:1;
    -ms-flex-positive:1;
    flex-grow:1;
    max-width:100%;
}
.col-auto{
    -webkit-box-flex:0;
    -ms-flex:0 0 auto;
    flex:0 0 auto;
    width:auto;
    max-width:none;
}
.w-100 {
	width: 100%;
}

/* section padding */
.s-pt,
.s-py {
    padding-top: 100px !important;
}
.s-pb,
.s-py {
    padding-bottom: 100px !important;
}
.s-pt-half,
.s-py-half {
    padding-top: 60px !important;
}
.s-pb-half,
.s-py-half {
    padding-bottom: 60px !important;
}
/* section padding */
/* margin class */
.ml-auto,
.mx-auto {
	margin-left: auto;
}
.mr-auto,
.mx-auto {
	margin-right: auto;
}
/* margin class */
.hide {
	display: none !important;
}

.site-header {
	position: fixed;
	z-index: 10;
	width: 100%;
	top: 0;
	left: 0;
	padding: 20px 0;
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
}
.site-header.fixed {
	padding: 10px 0;
	background: rgba(0,0,0,0.9);
}
.logo {
	display: block;
	max-width: 105px;
	margin: 0 auto;
}

.light-bg {
	background: #E8F1EC;
}
.light-orange {
	background: #FFF9F5;
}
.dark-bg * {
	color: #fff;
}
.main-banner {
	min-height: 100vh;
	padding: 100px 0;
	position: relative;
	background-size: cover;
	background-position: center center;
	display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
    align-items:center;
    -webkit-align-items:center;
    -ms-align-items:center;
}
.main-banner:before {
	content: "";
	pointer-events: none;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: .4;
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,000000+100&0+0,0.65+100 */
	background: -moz-linear-gradient(top,  rgba(0,0,0,0) 0%, rgba(0,0,0,0.65) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.65) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.65) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000',GradientType=0 ); /* IE6-9 */
}
.main-banner .container {
	position: relative;
	z-index: 1;
}
.main-banner .form-list {
	max-width: 410px;
	margin: 35px auto 0 auto;
}
.main-banner .form-list li {
	width: calc(55% - 14px);
}
.main-banner .form-list li.btn-wrapper {
	width: calc(45% - 14px);
}
.main-banner .form-list li.btn-wrapper .button {
	width: 100%;
}
.location {
	position: relative;
	padding-left: 20px;
}
.location .icon {
	position: absolute;
	top: 0;
	left: 0;
	width: 13px;
	height: 20px;
	background: url(../images/location.svg) center center no-repeat;
}
.main-banner .list-style {
	margin-top: 40px;
}
.main-banner .list-style li {
	display: inline-block;
	font-size: 18px;
	margin-right: 20px;
}
.main-banner .list-style li:after {
	background: #fff;
}

/* rangeslider start */
.rangeslider-block {
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}
.rangeslider-tooltip {
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    line-height: normal;
    display: block;
    position: relative;
}
.rangeslider-wrapper {
	position: relative;
	margin-top: 20px;
}
.rangeslider {
    display: block;
    overflow: hidden;
    position: relative;
    height: 30px;
    width: 100%;
}
.rangeslider::before {
    content: "";
    position: absolute;
    top: 50%;
    margin-top: -4px;
    height: 8px;
    width: 100%;
    background: #ffffff;
    display: block;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}
.rangeslider__fill {
    display: block;
    background: #FB7306;
    position: absolute;
    height: 8px;
    top: 50%;
    margin-top: -4px;
    -webkit-border-top-left-radius: 4px;
    -moz-border-top-left-radius: 4px;
    border-top-left-radius: 4px;
    -webkit-border-bottom-left-radius: 4px;
    -moz-border-bottom-left-radius: 4px;
    border-bottom-left-radius: 4px;
}
.rangeslider__handle {
    background: #FB7306 url(../images/combined-arrow.svg) center center no-repeat;
    cursor: pointer;
    display: inline-block;
    width: 30px;
    height: 30px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
	transform: translateY(-50%);
    box-shadow: 0 0 8px rgba(0,0,0,0.3);
    touch-action: pan-y;
    -ms-touch-action: pan-y;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
}
.sliderLegend {
    position: absolute;
    width: 100%;
    top: 3px;
    font-size: 16px;
    font-weight: 700;
}
.sliderLegend .sliderLegendItem--start {
    left: -82px;
    position: absolute;
    font-weight: 700;
}
.sliderLegend .sliderLegendItem--end {
    right: -98px;
    position: absolute;
    font-weight: 700;
}
/* rangeslider end */

.statistics-row .block {
	width: 48%;
	min-height: 290px;
	padding: 40px;
	background-color: #fff;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-flow: row wrap;
    align-items:center;
    -webkit-align-items:center;
    -ms-align-items:center;
}
.statistics-row .block h4 {
	margin-bottom: 15px;
}
.statistics-row .block .inner {
	width: 100%;
}
.statistics-row .government-incentives {
	color: #0E1431;
	background-size: auto;
	background-repeat: no-repeat;
	background-position: right 30px bottom;
}
.statistics-row .government-incentives p {
	margin-bottom: 10px;
}
.statistics-row .government-incentives .number {
	font-size: 24px;
	color: #FB7306;
	font-weight: 700;
}
.statistics-row .net-profit {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center top;
}
.net-profit .table {
	max-width: 290px;
}
.net-profit .table li {
	margin-bottom: 10px;
	display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    -ms-justify-content: space-between;
}
.net-profit .table li .label {
	width: 75%;
}
.net-profit .table li .value {
	width: 25%;
	text-align: right;
}
.net-profit .table li.footer {
	font-weight: 700;
	color: #078041;
}

.report-example {
	margin-top: 50px;
}
.report-example h4 {
	margin-bottom: 20px;
}
.report-list {
	margin: 0 -10px;
}
.report-list li {
	text-align: left;
	width: calc(25% - 20px);
	margin: 0 10px;
	background: #fff;
	padding: 30px;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-flow: row wrap;
    align-items:center;
    -webkit-align-items:center;
    -ms-align-items:center;
}
.report-list li .icon {
	width: 40px;
}
.report-list li .content {
	-ms-flex-preferred-size:0;
    flex-basis:0;
    -webkit-box-flex:1;
    -ms-flex-positive:1;
    flex-grow:1;
    max-width:100%;
    padding-left: 30px;
}
.report-list li h6 {
	margin-bottom: 5px;
}
.report-list li .number {
	font-size: 24px;
	font-weight: 700;
	color: #FB7306;
	display: block;
}

.cost-section {
	width: 100%;
	max-width: 1000px;
	margin:  0 auto;
}
.cost-section .content {
	width: 56%;
}
.cost-section .form-block {
	width: 40%;
	background: #EFEFEF;
	padding: 40px;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
}
.cost-section .form-block .text-field {
	padding: 13px 25px;
}
.cost-section .form-block .msg {
	position: relative;
	padding-left: 17px;
	margin-top: 5px;
}
.cost-section .form-block .msg .icon {
	position: absolute;
	top: 6px;
	left: 0;
	width: 7px;
	height: 13px;
	background: url(../images/flash-icon.svg) center center no-repeat;
}

.how-it-works-section .title {
	max-width: 700px;
}

.how-it-works {
	counter-reset: ordered-counter;
	display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
    margin: 0 -30px;
}
.how-it-works li {
	counter-increment: ordered-counter;
	width: 20%;
	padding: 0 30px;
	position: relative;
	text-align: center;
}
.how-it-works li:before {
	content: counter(ordered-counter);
	position: absolute;
	bottom: 0;
	left: 50%;
	margin: 0 0 -15px -15px;
	width: 31px;
	height: 31px;
	background: #078041;
	border:  2px solid #fff;
	font-size: 14px;
	color: #fff;
	line-height: 24px;
	font-weight: 700;
	border-radius: 30px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
}
.how-it-works li:nth-child(-n + 9):before {
	content: "0" counter(ordered-counter);
}
.how-it-works li:after {
	content: "";
	position: absolute;
	top: 55%;
	right: -13px;
	width: 26px;
	height: 24px;
	pointer-events: none;
	background: url(../images/arrow-right.svg) center center no-repeat;
}
.how-it-works li:last-child:after {
	display: none;
}
.how-it-works li h5 {
	font-size: 18px;
	color: #0E1431;
	margin-bottom: 15px;
}
.how-it-works li img {
	border-radius: 100%;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
}
.solar-info {
	margin-top: 50px;
}
.solar-info .img {
	order: 2;
	width: 40%;
}
.solar-info .img img {
	min-width: 590px;
}
.solar-info .content {
	order: 1;
	width: 56%;
}
.numbr-list {
	counter-reset: ordered-counter;
}
.numbr-list li {
	position: relative;
	counter-increment: ordered-counter;
	margin-bottom: 15px;
	padding-left: 40px;
}
.numbr-list li:after {
	content: counter(ordered-counter);
	position: absolute;
	top: 0;
	left: 0;
	width: 30px;
	height: 30px;
	background: #078041;
	font-size: 14px;
	color: #fff;
	line-height: 30px;
	font-weight: 700;
	text-align: center;
	border-radius: 30px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
}
.numbr-list li:nth-child(-n + 9):after {
	content: "0" counter(ordered-counter);
}

.list-style li {
	margin-bottom: 10px;
	position: relative;
	text-align: left;
	padding-left: 15px;
}
.list-style li:after {
	content: "";
	position: absolute;
	top: 8px;
	left: 0;
	width: 8px;
	height: 8px;
	background: #14C4F9;
	border-radius: 8px;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
}

.benefits-section {
	border: 1px solid #ddd;
	margin-top: 50px;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
}
.benefits-section .img {
	width: 46%;
}
.benefits-section .content {
	width: 54%;
	padding: 40px;
}

.solar-cost {
	position: relative;
	padding: 100px 0;
}
.solar-cost .container {
	position: relative;
	z-index: 1;
}
.solar-cost .inner {
	max-width: 60%;
}
.solar-cost .bg-img {
	width: 35%;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	pointer-events: none;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.solar-cost .radio-list {
	margin: 0 -7px 5px -7px;
	font-size: 0;
}
.solar-cost .radio-list .radio-style-button {
	width: calc(20% - 14px);
	margin: 0 7px 15px 7px;
}
.solar-cost .button {
	min-width: 162px;
}

.disclosure-section {
	font-size: 14px;
	line-height: 20px;
}
.disclosure-section h6 {
	font-size: 14px;
}

.site-footer {
	background: #000;
	color: #DCDCDD;
	padding: 30px 0;
}
.site-footer a {
	color: #DCDCDD;
}
.site-footer a:hover {
	color: #fff;
}
.site-footer .links a {
	position: relative;
}
.site-footer .links a:after {
	content: "|";
	margin: 0 15px;
	pointer-events: none;
	color: #DCDCDD;
}
.site-footer .links a:last-child:after {
	display: none;
}

@media screen and (max-width: 1439px) {
	.solar-cost .radio-list .radio-style-button {
		width: calc(25% - 14px);
	}
	.report-list li {
		padding: 15px;
	}
	.report-list li .content {
		padding-left: 20px;
	}
	.solar-info .img img {
		min-width: inherit;
	}
}
@media screen and (max-width: 1199px) {
	.main-banner {
		min-height: inherit;
		padding: 100px 0 50px 0;
	}
	.report-list li {
		text-align: center;
	}
	.report-list li .icon {
		width: 100%;
		margin-bottom: 10px;
	}
	.report-list li .icon img {
		margin: 0 auto;
	}
	.report-list li .content {
		padding-left: 0;
	}
	.statistics-row .block {
		padding: 20px;
	}
	.statistics-row .government-incentives .inner {
		width: 50%;
	}
}
@media screen and (max-width: 1023px) {
	.site-header {
		padding: 15px 0;
	}
	.logo {
		max-width: 80px;
	}
	h1 {
		font-size: 40px;
	}
	/* section padding */
	.s-pt,
	.s-py {
	    padding-top: 70px !important;
	}
	.s-pb,
	.s-py {
	    padding-bottom: 70px !important;
	}
	.s-pt-half,
	.s-py-half {
	    padding-top: 40px !important;
	}
	.s-pb-half,
	.s-py-half {
	    padding-bottom: 40px !important;
	}
	/* section padding */
	hr {
		margin: 40px 0;
	}
	.container {
		padding-left: 30px;
		padding-right: 30px;
	}
	.main-banner {
		padding: 90px 0 20px 0;
	}
	.rangeslider-block {
		max-width: 500px;
	}
	.statistics-row .block {
		width: 100%;
		margin-bottom: 20px;
	}
	.statistics-row .block:last-child {
		margin-bottom: 0;
	}
	.report-example {
		margin-top: 30px;
	}
	.report-list li {
		width: calc(50% - 20px);
		margin-bottom: 20px;
		text-align: left;
	}
	.report-list li:nth-last-child(-n+2) {
		margin-bottom: 0;
	}
	.report-list li .icon {
		width: 40px;
	}
	.report-list li .content {
		padding-left: 20px;
	}
	.cost-section .content {
		width: 100%;
		margin-bottom: 30px;
	}
	.cost-section .form-block {
		width: 380px;
		max-width: 100%;
		margin: 0 auto;
	}
	.how-it-works li {
		width: 33.33%;
		margin-bottom: 40px;
	}
	.how-it-works li:nth-child(3):after {
		display: none;
	}
	.solar-info {
		margin-top: 30px;
	}
	.solar-info .img {
		width: 100%;
	}
	.solar-info .content {
		width: 100%;
	}
	.benefits-section {
		margin-top: 0;
	}
	.benefits-section .img {
		width: 100%;
	}
	.benefits-section .img img {
		margin: 0 auto;
	}
	.benefits-section .content {
		width: 100%;
	}
	.solar-cost {
		padding: 0 0 50px 0;
	}
	.solar-cost .bg-img {
		position: relative;
		width: 100%;
		height: 300px;
		margin-bottom: 30px;
	}
	.solar-cost .inner {
		max-width: 100%;
	}
	.site-footer .copyright,
	.site-footer .links {
		width: 100%;
		text-align: center;
	}
	.site-footer .logo {
		order: 1;
	}
	.site-footer .links {
		order: 2;
		margin: 15px 0;
	}
	.site-footer .copyright {
		order: 3;
	}
}
@media screen and (max-width: 767px) {
	.hide-in-mobile {
		display: none !important;
	}
	h1 {
		font-size: 34px;
	}
	h2 {
		font-size: 30px;
	}
	.rangeslider-block {
		max-width: 100%;
		width: 100%;
	}
	.sliderLegend {
		position: relative;
	}
	.sliderLegend .sliderLegendItem--start {
		left: 0;
	}
	.sliderLegend .sliderLegendItem--end {
		right: 0;
	}
	.main-banner .list-style li {
		display: block;
		text-align: left;
		margin-right: 0;
	}
	.solar-cost .radio-list .radio-style-button {
		width: calc(33.33% - 14px);
	}
}

@media screen and (max-width: 567px) {
	h1 {
		font-size: 30px;
		margin-bottom: 10px;
	}
	h2 {
		font-size: 24px;
	}
	h5 {
		font-size: 18px;
	}
	.title {
		margin-bottom: 15px;
	}
	.text-field {
		font-size: 16px;
		padding: 14px 20px;
	}
	.button, button {
		font-size: 16px;
		padding: 14px 30px;
	}
	.container {
		padding-left: 20px;
		padding-right: 20px;
	}
	.main-banner .form-list {
		width: 100%;
		max-width: 100%;
		margin: 50px 0 0 0;
	}
	.main-banner .form-list li,
	.main-banner .form-list li.btn-wrapper {
		width: 100%;
		margin: 0 0 10px 0;
	}
	.main-banner .list-style {
		margin-top: 20px;
	}
	.statistics-row .block {
		min-height: inherit;
	}
	.statistics-row .government-incentives {
		background-size: 150px auto;
	}
	.statistics-row .government-incentives .inner {
		width: 65%;
	}
	.net-profit .table {
		background: rgba(255, 255, 255, .5);
		padding: 10px;
	}
	.net-profit .table li {
		margin-bottom: 5px;
	}
	.report-list li,
	.report-list li:nth-last-child(-n+2) {
		width: 100%;
		margin-bottom: 20px;
	}
	.report-list li:last-child {
		margin-bottom: 0;
	}
	.cost-section .form-block {
		padding: 30px;
	}
	.how-it-works {
		margin: 0 -15px;
	}
	.how-it-works li {
		width: 50%;
		padding: 0 15px;
		margin-bottom: 20px;
	}
	.how-it-works li:after {
		display: none;
	}
	.benefits-section .content {
		padding: 20px;
	}
	.solar-cost .radio-list .radio-style-button {
		width: calc(50% - 14px);
	}
	.site-footer {
		padding: 20px 0;
	}
}
@media (max-width:411px) {
	.container {
		padding-left: 15px;
		padding-right: 15px;
	}
	.cost-section .form-block {
		padding: 20px;
	}
}