/*======================
   Google fonts
========================*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/*======================
   01. Root
========================*/
:root {
	--blue: #172576;
	--gray: #DDDDDD;
	--yellow: #FFD161;
	--white: #fff;
}

/*======================
   Basic css
========================*/
html {
	font-size: 62.5%;
}

a,
button,
img {
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
footer,
header,
menu,
nav,
section {
	margin: 0;
	padding: 0;
}

body {
	line-height: 1.5;
	 font-family: "Poppins", sans-serif;
	background-color: #6A91E8;
	color: #fff;
	font-weight: 400;
	font-size: 1.8rem;
}

ol,
ul {
	list-style: none;
}

a:hover {
	text-decoration: none;
}

button:focus,
a:focus,
input:focus,
textarea:focus {
	outline: none;
}

/* page loader  */
#preloader {
	position: fixed;
	background: var(--white);
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 99999;
	height: 100vh;
	width: 100vw;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.loader3 {
	width: 6.0rem;
	height: 6.0rem;
	display: inline-block;
	padding: .0rem;
	text-align: left;
}

.loader3 span {
	position: absolute;
	display: inline-block;
	width: 6.0rem;
	height: 6.0rem;
	border-radius: 100%;
	background: var(--blue);
	-webkit-animation: loader3 1.5s linear infinite;
	animation: loader3 1.5s linear infinite;
}

.loader3 span:last-child {
	animation-delay: -0.9s;
	-webkit-animation-delay: -0.9s;
}

@keyframes loader3 {
	0% {
		-webkit-transform: scale(0, 0);
		transform: scale(0, 0);
		opacity: 0.8;
	}

	100% {
		-webkit-transform: scale(1, 1);
		transform: scale(1, 1);
		opacity: 0;
	}
}

@-webkit-keyframes loader3 {
	0% {
		-webkit-transform: scale(0, 0);
		opacity: 0.8;
	}

	100% {
		-webkit-transform: scale(1, 1);
		opacity: 0;
	}
}

/*return-to-top START CSS*/
.back-to-top {
	font-size: 2.4rem;
	width: 4.5rem;
	height: 4.5rem;
	line-height: 4.5rem;
	text-align: center;
	display: none;
	position: fixed;
	bottom: 3.0rem;
	right: 2.0rem;
	border-radius: 50%;
	background: var(--blue);
	z-index: 1000;
}

.back-to-top i {
	color: #fff;
}

.blinking {
	-webkit-animation: blinking 1.3s infinite linear;
	animation: blinking 1.3s infinite linear;
}

@-webkit-keyframes blinking {

	0%,
	100% {
		opacity: 1;
	}

	50% {
		opacity: 0;
	}
}

@keyframes blinking {

	0%,
	100% {
		opacity: 1;
	}

	50% {
		opacity: 0;
	}
}
main{
	position: relative;
}
.background{
	position: absolute;
	content: '';
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	mix-blend-mode: multiply;
	-o-object-fit: contain;
	   object-fit: contain;
	-o-object-position: bottom center;
	   object-position: bottom center;
	z-index: -1;
}
/*======================
   Banner 
========================*/
.banner_sec {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	padding-top: 4rem;
}
.logo{
	width: 100%;
	max-width: 55rem;
	margin-bottom: 4rem;
}
.banner_sec h1 {
	font-size: 5rem;
	font-weight: 600;
	font-style: italic;
}
.banner_sec p{
	margin-top: 3rem;
	max-width: 56rem;
}
.home_box{
	background-color: #CCD5ED;
	color: var(--blue);
	border-radius: 2rem;
	padding: 0.8rem 2.5rem 2.3rem;
	max-width: 55.5rem;
	margin-top: 5rem;
}
.home_box li{
	font-size: 1.5rem;
	margin-top: 1.5rem;
}
.button_wrapper{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-column-gap: 4rem;
	   -moz-column-gap: 4rem;
	        column-gap: 4rem;
	row-gap: 4rem;
}
.button{
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-column-gap: 0.5rem;
	   -moz-column-gap: 0.5rem;
	        column-gap: 0.5rem;
	color: #fff !important;
	font-size: 3rem;
	position: relative;
	z-index: 1;
	padding-left: 1.3rem;
}
.button::before{
	position: absolute;
	content: '';
	left: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	        transform: translateY(-50%);
	height: 8.6rem;
	width: 8.6rem;
	border-radius: 50%;
	border: 0.2rem solid #D9D9D9;
	z-index: -1;
}
.button span{
	font-size: 1.8rem;
	color: #fff;
	background-color: var(--blue);
	border-radius: 2.4rem;
	padding: 1rem 1.5rem;
	min-width: 15.9rem;
}
.fa-phone{
	-webkit-transform: rotate(90deg);
	    -ms-transform: rotate(90deg);
	        transform: rotate(90deg);
}
.home_img{
	width: 69.5rem;
}

/*======================
   Solution
========================*/
.solution_sec {
   margin-top: -1rem;
}
.price_btn{
	padding-left: 5.5rem;
}
.price_btn::before{
	height: 14.4rem;
	width: 14.4rem;
}
.price_btn span{
	font-size: 5rem;
	font-weight: 700;
	line-height: 1.1;
	padding: 1rem 2.5rem;
}
.price_btn + p{
	padding-left: 14rem;
	margin-top: 0.6rem;
	text-transform: uppercase;
}
.partner h3 {
	font-size: 4rem;
	font-weight: 400;
	text-align: center;
}
.partner_img {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-column-gap: 5.5rem;
	   -moz-column-gap: 5.5rem;
	        column-gap: 5.5rem;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}
.partner_img img {
	width: 100%;
	margin-top: 3rem;
}

/*======================
   Service Range
========================*/
.service_sec {
	padding: 0rem 0 7rem;
	margin-top: -7rem;
}
.service_sec .section_title{
	max-width: 93rem;
}
.service_sec .section_title h2 {
	font-size: 5rem;
	font-weight: 400;
	max-width: 56rem;
	margin-bottom: 2.5rem;
}
.range_item_wrap {
	border-radius: 1rem;
	-webkit-box-shadow: 0 .3rem 3.2rem rgb(0 0 0 / 5%);
	        box-shadow: 0 .3rem 3.2rem rgb(0 0 0 / 5%);
	background-color: var(--white);
	height: 100%;
}
.service_img{
	margin-bottom: 2rem;
}
.service_img img {
   width: 100%;
   margin-left: -3rem;
}
.service_text h3 {
	font-size: 3rem;
	font-weight: 400;
	margin-bottom: 1.3rem;
	line-height: 1.1;
	max-width: 28rem;
}
.service_text p {
	font-size: 1.5rem;
}
.service_row{
	margin-left: -2.5rem;
	margin-right: -2.5rem;
}
.service_row>div{
	padding-left: 2.5rem;
	padding-right: 2.5rem;
}
.service_row>div:nth-child(even) {
   margin-top: 20rem;
}

/*======================
   Plumber
========================*/
.plumber_area{
	padding-bottom: 1rem;
	padding-top: 0.5rem;
}
.plumber_area h3{
	font-size: 3.5rem;
	font-weight: 700;
	margin-bottom: 2rem;
}
.plumber_area ul{
	font-size: 1.3rem;
	font-weight: 700;
	margin-top: 1.5rem;
	line-height: 1.5;
}
.plumber_area ul li{
	margin-bottom: 0.5rem;
}
.plumber_wrapper .button p {
	font-size: 1.7rem;
	font-weight: 700;
	line-height: 1.2;
	padding-left: 4rem;
}
.location_content p{
	font-size: 2.5rem;
	text-align: right;
	font-weight: 700;
	margin-top: 1.5rem;
}
.location_content p span{
	color: #0C03F5;
}
.location_content p span.yellow{
	color: #FFD161;
	font-size: 3rem;
}
.call_btn{
	text-align: right;
}
.call_btn p{
	margin-top: 1rem;
}
strong{
	font-weight: 700;
}
/*======================
   Review
========================*/
.review_sec {
	padding: 6.5rem 0;
}
.review_sec h2{
	font-size: 4rem;
	color: #fff;
	font-weight: 400;
}
.review_box {
	background-color: var(--blue);
	border-radius: 2rem;
	padding: 2rem;
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	color: #DDDDDD;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-column-gap: 2rem;
	   -moz-column-gap: 2rem;
	        column-gap: 2rem;
}
.review_box>img{
	height: 12rem;
	width: 12rem;
	border-radius: 50%;
	-o-object-fit: cover;
	   object-fit: cover;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
}
.rating {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	color: #FFD161;
	-webkit-column-gap: 0.5rem;
	   -moz-column-gap: 0.5rem;
	        column-gap: 0.5rem;
	font-size: 1.8rem;
}
.review_box p {
	font-size: 1.4rem;
}
.review_box h5 {
	font-size: 2.4rem;
	font-weight: 400;
	margin-top: 1rem;
	margin-bottom: 1rem;
	color: #F6F6F6;
}
.custom_review_row {
	margin-right: -2rem;
	margin-left: -2rem;
}
.custom_review_row>div {
	padding-left: 2rem;
	padding-right: 2rem;
}

/*======================
   Foter
========================*/
footer {
	overflow: hidden;
	padding-top: 2.5rem;
}
.footer_top{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	    -ms-flex-align: end;
	        align-items: flex-end;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-column-gap: 6rem;
	   -moz-column-gap: 6rem;
	        column-gap: 6rem;
	row-gap: 5rem;
}
.footer_logo{
	width: 29.3rem;
}
footer .button span,
.button.big span{
	font-size: 2.2rem;
	font-weight: 700;
	padding: 1.3rem 2.5rem;
}
footer .button i{
	color: var(--blue);
	font-size: 4rem;
}
.button.big i{
	font-size: 4rem;
}
footer .button::before {
   height: 10.2rem;
   width: 10.2rem;
}
.footer_copyright {
	padding-bottom: 2rem;
	padding-top: 4rem;
}
.footer_copyright p,
.footer_copyright p a {
	font-size: 1.3rem;
	color: var(--white);

}

/* Legales page  */
.header_area {
	background-color: #ffffff;
	padding: 4rem 0;
}

.head_wap h2 {
	font-size: 3.5rem;
	line-height: 1.2;
	font-weight: 700;
	text-transform: uppercase;
	color: #1C2A3F;
}

.head_wap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.head_wap a img {
	max-width: 22rem;
}

.legales_wap {
	padding: 8rem 0;
	background-color: #FAFAFA;
}
.legales_wap h1{
	font-size: 3.5rem;
	line-height: 1.22;
	font-weight: 700;
	color: #000;
	padding-bottom: 4rem;
}

.legales_wap p {
	font-size: 2rem;
	line-height: 1.22;
	color: #000;
	padding-bottom: 2.5rem;
}

.legales_wap h2 {
	font-size: 2.2rem;
	line-height: 1.22;
	font-weight: 700;
	color: #000;
	padding-bottom: 2.5rem;
}

.legales_wap ul {
	padding-bottom: 2.5rem;
}

.legales_wap ul li {
	font-size: 2.2rem;
	line-height: 1.22;
	color: #000;
}