
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700&display=swap');


/* Varialbes */
:root {
	--font-default: 'Times New Roman', sans-serif;
	--font-heading: 'Times New Roman', sans-serif;
	--fontawesome: "Font Awesome 5 Pro";
	--black: #000000;
	--dark: #040836;
	--dark-secondary: #202942;
	--white: #ffffff;
	--color-primary: #CE0412;
	--color-secondary: #02ebad;
	--color-heading: #202942;
	--color-paragraph: #666666;
	--box-shadow-primary: 1px 4px 20px -2px rgba(0, 0, 0, 0.1);
	--box-shadow-secondary: 0 20px 50px rgba(0, 0, 0, 0.1);
	--box-shadow-regular: 0px 2px 12px 0px #e7e7e7;
	--box-shadow-extra: 0 5px 50px 0 rgba(0, 0, 0, 0.15);
	--bg-gray: #edf5ff;
	--bg-gradient: linear-gradient(45deg, #02ebad 0%, #5a57fb 50%);
}


/* ==============================================================
     # Reset Browsers
=================================================================== */


html {
	width: 100%;
	height: 100%;
	position: relative;
	overflow: visible;
}

body {
	font-family: var(--font-default);
	font-size: 15px;
	font-weight: 400;
	line-height: 26px;
	color: var(--color-paragraph);

	padding: 10px;

	 box-sizing: border-box;
}

html,
body,
.wrapper {
	height: 100%;



}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: var(--color-heading);
	font-weight: normal;
	line-height: 1.2;
	font-family: var(--font-heading);
	letter-spacing: 0;
	margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin-bottom: 15px;
}

h1 {
	font-size: 40px;
}

h2 {
	font-size: 36px;
}

h3 {
	font-size: 27px;
}

h4 {
	font-size: 20px;
}

h5 {
	font-size: 16px;
}

h6 {
	font-size: 14px;
}

img {
	border: none;
	outline: none;
	max-width: 100%;
}

label {
	display: inline-block;
	font-weight: normal;
	margin-bottom: 5px;
	max-width: 100%;
}

a,
.btn,
button {
	transition: all 0.35s ease-in-out;
	-webkit-transition: all 0.35s ease-in-out;
	-moz-transition: all 0.35s ease-in-out;
	-ms-transition: all 0.35s ease-in-out;
	-o-transition: all 0.35s ease-in-out;
	outline: medium none;
}

a img,
iframe {
	border: none;
}

p {
	color: var(--color-paragraph);
	margin: 0 0 15px;
	text-transform: none;
	font-weight: 400;
	font-family: var(--font-default);
}

hr {
	margin-top: 0;
	margin-bottom: 0;
	border: 0;
	border-top: 1px solid #eee;
}

pre {
	display: block;
	margin: 0 0 30px;
	padding: 9.5px;
	word-wrap: break-word;
	word-break: break-all;
	color: #333;
	border: 1px solid #ededed;
	border-radius: inherit;
	background-color: #f9f9f9;
	font-size: 13px;
	line-height: 1.42857143;
}

input:focus,
textarea:focus,
select:focus {
	outline: none;
	box-shadow: inherit;
}

ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}

a,
a:active,
a:focus,
a:hover {
	outline: none;
	text-decoration: none;
	color: var(--color-heading);
}

a:hover {
	color: var(--color-heading);
}

a {
	transition: all 0.35s ease-in-out;
	-webkit-transition: all 0.35s ease-in-out;
	-moz-transition: all 0.35s ease-in-out;
	-ms-transition: all 0.35s ease-in-out;
	-o-transition: all 0.35s ease-in-out;
	text-decoration: none;
	font-weight: 900;
}

b,
strong {
	font-weight: 900;
}

.btn.active,
.btn:active {
	background-image: inherit !important;
}

.btn.focus,
.btn:active:focus,
.btn:active:hover,
.btn:focus,
.btn:hover {
	outline: 0;
}

.btn.circle {
	-webkit-border-radius: 40px;
	-moz-border-radius: 40px;
	border-radius: 40px;
}

.btn.active,
.btn:active {
	outline: 0;
	-webkit-box-shadow: inherit;
	box-shadow: inherit;
}

input {
	border: 1px solid #e7e7e7;
	border-radius: inherit;
	box-shadow: inherit;
	min-height: 50px;
}

@media only screen and (min-width: 768px) {
	.row {
		--bs-gutter-x: 30px;
	}
}


.navbar-brand img

	{
		line-height: 60px;
    padding: 10px 0;
	}

/* Default CSS */
.container-medium {
	padding: 0 15px;
	margin: auto;
	max-width: 1400px;
}

.container-full {
	padding: 0 15px;
	margin: auto;
	max-width: 1400px;
}

.container-fill {
	padding: 0 15px;
	margin: auto;
	max-width: 100%;
}

@media (min-width:576px) {
	.container-medium {
		max-width: 540px;
	}
}

@media (min-width:768px) {
	.container-medium {
		max-width: 720px;
	}
}

@media (min-width:992px) {
	.container-medium {
		max-width: 960px;
	}
}

@media (min-width:1200px) {
	.container-medium {
		max-width: 100%;
		width: 100%;
	}
}

@media (min-width:576px) {
	.container-full {
		max-width: 540px;
	}
}

@media (min-width:768px) {
	.container-full {
		max-width: 720px;
	}
}

@media (min-width:992px) {
	.container-full {
		max-width: 960px;
	}
}

@media (min-width:1200px) {
	.container-full {
		max-width: 1400px;
		width: 90%;
	}
}

@media (min-width:576px) {
	.container-fill {
		max-width: 540px;
	}
}

@media (min-width:768px) {
	.container-fill {
		max-width: 720px;
	}
}

@media (min-width:992px) {
	.container-fill {
		max-width: 960px;
	}
}

@media (min-width:1200px) {
	.container-fill {
		width: 90%;
		max-width: 1400px;
	}

	.container-fill a.navbar-brand {
		padding-left: 15px;
	}
}

@media (max-width:1199px) {
	.container-fill {
		padding: 0 15px;
	}
}

@media (min-width: 1200px) {

	.container,
	.container-lg,
	.container-md,
	.container-sm,
	.container-xl {
		max-width: 1200px;
	}
}

.fixed-bg {
	position: absolute;
	left: 0;
	bottom: 0;
	height: 100%;
	width: 100%;
	z-index: -1;
}

.bg-cover {
	background-position: center center;
	background-size: cover;
}

.bg-fixed {
	background-attachment: fixed;
	background-position: center top;
	background-size: cover;
}

.bg-gray {
	background-color: #edf5ff;
}

.bg-light {
	background-color: var(--white) !important;
}

.bg-dark {
	background-color: var(--dark) !important;
}

.bg-theme {
	background-color: var(--color-primary);
}

.bg-gradient {
	background: linear-gradient(45deg, #02ebad 0%, #5a57fb 50%) !important;
}

.gradient-bg {
	background-image: linear-gradient(45deg, #02ebad 0%, #5a57fb 50%);
	background-color: var(--color-primary);
}

.text-light h1,
.text-light h2,
.text-light h3,
.text-light h4,
.text-light h5,
.text-light h6,
.text-light p,
.text-light a {
	color: var(--white);
}

.shadow {
	position: relative;
	z-index: 1;
	box-shadow: inherit !important;
}

.shadow.dark::after {
	background: var(--dark) none repeat scroll 0 0;
	content: "";
	height: 100%;
	left: 0;
	opacity: 0.5;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: -1;
}

.shadow.dark-hard::after {
	background: var(--dark) none repeat scroll 0 0;
	content: "";
	height: 100%;
	left: 0;
	opacity: 0.75;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: -1;
}

.shadow.theme::after {
	background: var(--color-primary) none repeat scroll 0 0;
	content: "";
	height: 100%;
	left: 0;
	opacity: 0.5;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: -1;
}

.shadow.theme-hard::after {
	background: var(--color-primary) none repeat scroll 0 0;
	content: "";
	height: 100%;
	left: 0;
	opacity: 0.7;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: -1;
}

.default-padding,
.default-padding-top,
.default-padding-bottom,
.default-padding-mx {
	position: relative;
}

.default-padding {
	padding-top: 120px;
	padding-bottom: 120px;
}

.default-padding-top {
	padding-top: 120px;
}

.default-padding-bottom {
	padding-bottom: 120px;
}

.default-padding.bottom-less {
	padding-top: 120px;
	padding-bottom: 90px;
}

.default-padding-bottom.bottom-less {
	margin-bottom: -30px;
}

.default-padding-top.bottom-less {
	margin-bottom: -30px;
}

.top-border {
	border-top: 1px solid #e7e7e7;
}

.align-center {
	align-items: center;
}

/* Button */

.btn {
	display: inline-block;
	font-weight: 700;
	line-height: 25px;
	text-transform: capitalize;
	-webkit-transition: all 0.35s ease-in-out;
	-moz-transition: all 0.35s ease-in-out;
	-ms-transition: all 0.35s ease-in-out;
	-o-transition: all 0.35s ease-in-out;
	transition: all 0.35s ease-in-out;
	overflow: hidden;
	border-radius: 5px;
	font-size: 14px;
	text-transform: capitalize;
}

.btn-md {
	padding: 15px 45px;
}

.btn-sm {
	padding: 13px 40px;
}

a:hover,
a:active {
	opacity: 1;
	text-decoration: none;
}

.btn.btn-gradient {
	position: relative;
	z-index: 1;
	color: var(--white) !important;
}

.btn.btn-gradient::after {
	position: absolute;
	left: 0;
	top: 0;
	content: "";
	height: 100%;
	width: 100%;
	background-image: linear-gradient(to right, #118bba, var(--color-primary), #118bba);
	background-size: 300% 100%;
	text-transform: uppercase;
	display: inline-block;
	color: var(--white) !important;
	background-color: #118bba;
	z-index: -1;
	transition: all 0.35s ease-in-out;
}

.btn.btn-gradient:hover::after,
.btn.btn-gradient:active {
	background-position: -50% 0;
	color: var(--white);
}



/* ==============================================================
     # Banner
=================================================================== */
body,
.banner-area,
.banner-area div {
	height: 100%;
}


@media (max-width: 767px) {
    html, body {
        overflow-y: auto;
    }
}

/* ==============================================================
     # Pricing
=================================================================== */

.pricing-area {
	position: relative;
	z-index: 1;
	padding: 0px 0px 20px 0px;
}






/* ==============================================================
     # Footer
=================================================================== */

/* SVG */

.svg-shape svg {
	margin-bottom: -10px;
}

.svg-shape svg.gray {
	fill: #edf5ff;
}

.svg-shape svg.light {
	fill: var(--white);
}

.svg-shape svg.theme {
	fill: #ff4450;
}

.svg-shape svg.dark {
	fill: #111d30;
}

.svg-shape svg.absolute {
	position: absolute;
}

.svg-shape svg.absolute.top {
	top: 0;
	left: 0;
}

.svg-shape svg.absolute.bottom {
	bottom: 0;
	left: 0;
}

/* Main Footer */

footer .f-items .f-item.contact-widget {
	position: relative;
	z-index: 1;
}

footer .f-items .f-item.contact-widget::after {
	position: absolute;
	left: -50px;
	top: -200px;
	height: 300%;
	width: 500%;
	background: #090e49;
	content: "";
	z-index: -1;
}

footer {
	overflow: hidden;
}

footer img,
footer .widget-title {
	margin-bottom: 30px;
	font-weight: 900;
}

footer.bg-dark .f-items .f-item p,
footer.bg-dark .f-items .f-item a,
footer.bg-dark .f-items .f-item {
	color: #adb5bd;
}

footer .f-items .f-item form {
	position: relative;
	margin-top: 30px;
}

footer .f-items .f-item form input {
	background: #283353;
	color: var(--white);
	border: 1px dashed rgba(255, 255, 255, 0.1);
	font-size: 14px;
	padding-left: 20px;
}

footer .f-items .f-item form input::-webkit-input-placeholder {
	/* Chrome/Opera/Safari */
	color: #adb5bd;
}

footer .f-items .f-item form input::-moz-placeholder {
	/* Firefox 19+ */
	color: #adb5bd;
}

footer .f-items .f-item form input:-ms-input-placeholder {
	/* IE 10+ */
	color: #adb5bd;
}

footer .f-items .f-item form input:-moz-placeholder {
	/* Firefox 18- */
	color: #adb5bd;
}

footer .f-items .f-item form button {
	position: absolute;
	right: 0;
	top: 0;
	height: 50px;
	width: 50px;
	background: var(--color-primary);
	color: var(--white);
	font-size: 25px;
	line-height: 55px;
	border-radius: 0 5px 5px 0;
}

footer .f-items .f-item form button::after {
	position: absolute;
	left: 0;
	top: 50%;
	content: "";
	height: 30px;
	width: 1px;
	margin-top: -15px;
	opacity: 0.1;
	border-left: 1px solid var(--white);
}

footer .f-items .f-item.about {
	border-right: 1px solid rgba(255, 255, 255, 0.1);
	padding-right: 40px;
	margin-right: 10px;
}

footer .f-items .f-item.about img {
	height: 60px;
}

footer .f-items .f-item.link li {
	margin-bottom: 12px;
}

footer .f-items .f-item.link li:last-child {
	margin-bottom: 0;
}

footer .f-items .f-item.link li a:hover {
	color: var(--white);
	margin-left: 10px;
}

footer .f-items .f-item.link li a {
	font-weight: 500;
}

footer .f-items .f-item.link li a i {
	font-size: 12px;
	margin-right: 3px;
}

footer .f-items .f-item .address {
	margin-top: 30px;
}

footer .f-items .f-item .address li {
	display: flex;
	margin-bottom: 25px;
}

footer .f-items .f-item .address li i {
	display: inline-block;
	height: 45px;
	width: 45px;
	text-align: center;
	line-height: 45px;
	border-radius: 50%;
	margin-right: 20px;
	background: rgba(255, 255, 255, 0.1);
	color: var(--white);
	border: 1px dashed rgba(255, 255, 255, 0.3);
	font-weight: 300;
	font-size: 18px;
}

footer .f-items .f-item .address li:last-child {
	margin-bottom: 0;
}

footer .f-items .f-item .address li strong {
	display: block;
	text-transform: uppercase;
	color: var(--white);
	font-size: 15px;
}

/* Footer Bottom */
footer .footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 30px 0;
	z-index: 1;
	position: relative;
	background: #535353;
}

footer .footer-bottom ul li {
	display: inline-block;
	margin-left: 15px;
}

footer .footer-bottom p {
	margin: 0;
}

footer.bg-dark .footer-bottom p,
footer.bg-dark .footer-bottom a {
	color: #adb5bd;
}

footer.bg-dark .footer-bottom a {
	font-size: 14px;
}

footer.bg-dark .footer-bottom a:hover {
	color: var(--white);
}


/* ==============================================================
     # Preloader
=================================================================== */
.no-js #loader {
	display: none;
}

.js #loader {
	display: block;
	position: absolute;
	left: 100px;
	top: 0;
}

.se-pre-con {
	position: fixed;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	z-index: 999999;
	background: url(../img/preloader.gif) center no-repeat #fff;
	text-align: center;
}



.form-box form .submit-btn {
	padding: 13px 40px;
	font-weight: 700;
	font-size: 14px;
	border: 2px solid var(--color-primary) !important;
	overflow: hidden;
	position: relative;
	z-index: 1;
	color: var(--white);
	display: inline-block;
	text-transform: capitalize;
	background: transparent;
	border-radius: 10px;
}

.form-box form .submit-btn::after {
	position: absolute;
	left: -2px;
	top: -2px;
	content: "";
	height: 120%;
	width: 120%;
	background: var(--color-primary);
	z-index: -1;
	transition: all 0.35s ease-in-out;

}

.form-box form .submit-btn:hover::after {
	width: 0;
}

.form-box form .submit-btn:hover {
	color: var(--color-heading);
}

.form-box form .submit-btn:focus {
	color: var(--color-heading);
}


.form-box form .refresher

	{
		padding: 2px 10px;
		font-weight: 700;
		font-size: 14px;
		border: 2px solid var(--dark-secondary) !important;
		overflow: hidden;
		position: relative;
		z-index: 1;
		color: var(--white);
		display: inline-block;
		text-transform: capitalize;
		background: var(--dark-secondary);
		border-radius: 30px;
	}




.form-box {
	padding: 50px 40px;
	background: var(--white);
	border-radius: 5px;
	position: relative;

	    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.form-box>i {
	display: inline-block;
	position: absolute;
	right: 40px;
	bottom: 40px;
	font-size: 60px;
	color: var(--color-primary);
	font-weight: 100;
	opacity: 0.2;
}

.form-box .form-header {

	align-items: center;
	padding-bottom: 15px;
	font-weight: 700;
	position: relative;
	z-index: 1;
}

.form-box .form-header h4 {
	margin: 0;
	font-weight: 900;
	background: var(--white);
	padding-right: 20px;
	padding-bottom: 10px;
    margin-bottom: 20px;
	 border-bottom: 3px #000 solid;
	font-size: 32px;
}



.form-box .form-header span {
	background: var(--white);
	padding-left: 20px;
}


.form-box .mini-text

	{
		font-size: 16px;
		margin: 10px 0 10px 0;
	}

.wap-container{padding:150px 0 100px 0;}

.modal-header

    {
        background: #CE0412 !important;

    }

.btn-close

    {
        color: #ffffff !important;

    }


.module-heading

	{
		color: #CE0412 !important
	}

.warenty-text

	{
		color: #CE0412 !important
	}

.form-box .solar-img

	{
		width: 300px;
		display: block;
	}

@media screen and (max-width: 560px)

	{

		nav.navbar.validnavs.navbar-fixed
    	{

    	        width: 90%;
        }

        .wap-container{

            padding:250px 0 100px 0;
            margin-top: 400px;


        }

		.form-box .form-header h4 {

			font-size: 22px;
		}

	}

@media screen and (max-width: 400px)

	{

		nav.navbar.validnavs.navbar-fixed
    	{

    	        width: 100%;
        }

        .wap-container{

            padding:250px 0 100px 0;
            margin-top: 400px;


        }

		.form-box .form-header h4 {

			font-size: 22px;
		}

	}

.chaxun_bg{position:fixed; left:0; top:0; z-index:998; height:100%; width:100%; background:rgba(0,0,0,0.7); display:none;}

.chaxun_zhen,.chaxun_wei{background:#fff; width:550px; box-shadow:0 0 30px rgba(0,0,0,0.5); position:fixed; left:calc(50% - 275px); z-index:999; display:none;}

.chaxun_zhen {height: 560px; top:calc(50% - 237px);}

.result-header{

	text-align:right; background:rgb(206, 4, 18); padding:15px 30px;

	border: 1px solid #ff0000;

}
.result-header img{cursor:pointer; height: 20px;}
.chaxun_zhen .fon_title{font-size:34px; color:rgb(206, 4, 18); text-align:center; padding:30px 0 20px 0; font-weight:bolder;}
.chaxun_zhen .biao{border-left:1px #D8D8D8 solid;border-top:1px #D8D8D8 solid; width:80%; margin:0 auto;}
.chaxun_zhen .biao td{padding:10px;border-bottom:1px #D8D8D8 solid;border-right:1px #D8D8D8 solid; font-size:18px; color:#000;}
.chaxun_zhen .tip {text-align: center; font-size: 14px; color: rgb(206, 4, 18); padding-top: 10px;
