@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700&family=Roboto:wght@400;500;700&display=swap');

/*slick  slider css*/
.slick-list,.slick-slider,.slick-track{position:relative;display:block}.slick-next,.slick-next:focus,.slick-next:hover,.slick-prev,.slick-prev:focus,.slick-prev:hover{color:transparent;outline:0;background:0 0}.slick-slider{box-sizing:border-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-touch-callout:none;-khtml-user-select:none;-ms-touch-action:pan-y;touch-action:pan-y;-webkit-tap-highlight-color:transparent}.slick-list{overflow:hidden;margin:0;padding:0}.slick-list:focus{outline:0}.slick-list.dragging{cursor:pointer;cursor:hand}.slick-slider .slick-list,.slick-slider .slick-track{-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);-o-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.slick-track{top:0;left:0;margin-left:auto;margin-right:auto}.slick-track:after,.slick-track:before{display:table;content:''}.slick-track:after{clear:both}.slick-loading .slick-slide,.slick-loading .slick-track{visibility:hidden}.slick-slide{display:none;float:left;height:100%;min-height:1px}[dir=rtl] .slick-slide{float:right}.slick-initialized .slick-slide,.slick-slide img{display:block}.slick-arrow.slick-hidden,.slick-slide.slick-loading img{display:none}.slick-slide.dragging img{pointer-events:none}.slick-vertical .slick-slide{display:block;height:auto;border:1px solid transparent}.slick-next,.slick-prev{font-size:0;line-height:0;position:absolute;top:40%;display:block;width:20px;height:20px;padding:0;cursor:pointer;border:none}.slick-next:focus:before,.slick-next:hover:before,.slick-prev:focus:before,.slick-prev:hover:before{opacity:1}.slick-next.slick-disabled:before,.slick-prev.slick-disabled:before{opacity:.25}@media(min-width:992px){.slick-next,.slick-prev{-webkit-transform:translate(0,-50%);-ms-transform:translate(0,-50%);transform:translate(0,-50%);top:50%}}

:root {
	--pri-color: #005826;
	--sec-color: #1fa669;
	--font-family-Roboto: 'Roboto', sans-serif;
	--site-Radius: 6px;
	--site-Shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
	--site-LBorderC: #0002;
}
/*Commons Css Start*/
.template_btn {
  font-family: var(--font-family-Roboto);
  font-weight: 500;
  display: inline-flex;
  justify-content: space-between;
  margin-top: 10px;
  align-items: center;
  transition: 0.5s;
  color: #fff;
  background-color: var(--pri-color);
  justify-content: center;
  padding: 14px 24px;
  font-size: 20px;
  border: 1px solid #fff;
}
.template_btn::before {
  content: "\f095";
  display: inline-block;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-right: 12px;
}

.template_btn:hover {
  background-color: var(--pri-color);
  opacity: .9;
  color: #fff;
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
  -webkit-transform: translateY(-3px);
  transition: opacity .45s cubic-bezier(.25,1,.33,1),transform .45s cubic-bezier(.25,1,.33,1),border-color .45s cubic-bezier(.25,1,.33,1),color .45s cubic-bezier(.25,1,.33,1),background-color .45s cubic-bezier(.25,1,.33,1),box-shadow .45s cubic-bezier(.25,1,.33,1)
}
@media(min-width:992px){
  .template_btn {
    min-width: 250px;
    padding: 18px 32px;
    font-size: 24px;
  }
}
/*Commons End*/

body{
	line-height: 1.5;
	color: #444;
	padding: 0px;
	font-family: 'Barlow', sans-serif;
	margin: 0px;
}
html * {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
body,
html {
	scroll-behavior: smooth;
}
/*Header css Start*/
.header.contain-header {
    box-shadow: 0 3px 4px rgb(0 0 0 / 7%);
}
.header.contain-header {
	z-index: 99;
	position: fixed;
	top: 0;
	width: 100%;
}
.contain-header {
    position: relative;
    background-color: #fff;
}
.header.contain-header .container {
    position: relative;
}
.site_logo {
    max-width: 140px;
}
.navbar-light.main-menu .navbar-toggler:focus {
    box-shadow: none;
}
.navbar-light.main-menu .navbar-toggler {
    border-radius: 0;
    border-color: transparent;
    padding-top: 0;
    padding-bottom: 0;
}

.header.contain-header .main-menu div>ul>li>a:not(.btn_add) {
    color: #333;
    font-weight: 500;
    font-family: var(--font-family-Roboto);
}
.site_logo:not(.mob_logo_a) {
    padding-top: 10px;
    padding-bottom: 10px;
}
@media(max-width: 991.98px){
	
	.site_logo:not(.mob_logo_a) {
        max-width: 100px;
        padding-top: 8px;
        padding-bottom: 8px;
    }
	.main-menu {
    	justify-content: flex-end;
	}
	.main-menu .navbar-collapse {
	    position: fixed;
	    left: 0;
	    visibility: hidden;
	    top: 0;
	    bottom: 0;
	    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
	    transition: transform 0.3s ease-in-out;
	    background-color: #fff;
	    width: 100%;
	    padding: 1rem;
	    max-width: 100%;
  }

  .main-menu .navbar-collapse.show {
    visibility: visible;
    height: 100vh;
  }
}
@media(min-width: 992px){
	.header.contain-header .main-menu div>ul>li:not(:last-child) {
		    margin-right: 20px;
	}
	.main-menu ul li{
		display: inline-block;
	}
}
@media(min-width: 1200px){
	.header.contain-header .main-menu div>ul>li>a:not(.btn_add) {
		padding: 25px 0;
	}
}
/*Header css End*/

/* New page menu Start*/
.proudly__emirati {
  display: flex;
  align-items: center;
  justify-content: center;
}
.proudly__emirati img{
  max-width: 28px;
  display: inline-flex;
  margin-right: 8px;
}
.proudly_text {
  font-weight: 500;
  font-family: var(--font-family-Roboto);
  color:#333;
  font-size: 10px;
}
@media(min-width: 992px){
  .proudly__emirati {
    justify-content: flex-end;
  }
  .proudly_text {
    font-size: 14px
  }
  .proudly__emirati img {
    max-width: 40px;
  }
}
/* New page menu End*/
/*map with wikinfo Start*/
.map_with_wikinfo {
  background-color: var(--pri-color);
  
}

.info__n_head{
  padding: 20px;
  background-color:#000;
  text-align: center;
  border-radius:var(--site-Radius) var(--site-Radius) 0 0 ;
}
.no__radius .info__n_head {
  border-radius: 0;
}
.info__n_body {
  background-color: var(--pri-color);
   border-radius: 0 0 var(--site-Radius) var(--site-Radius);
}
.no__radius .info__n_body {
  border-radius: 0;
}
.info__n_head p{
  margin-bottom: 0;
  color:#fff;
  font-size: 20px;
  font-family: var(--font-family-Roboto);
}
.info__n_body {
  padding: 20px;
  min-height: 295px;
}
.info__n_body p{
  margin-bottom: 0;
  font-size: 16px;
  font-family: var(--font-family-Roboto);
  color:#fff;
}

/*map with wikinfo End*/
/*Hero Section Start*/
#home {
    width: 100%;
    background-size: cover;
    text-align: center;
    position: relative;
}
.template_home2#home{
  background: url(/userfiles/images/templates/t2/emergency-plumber.webp) top center;
}

#home::before{
	content:'';
	position: absolute;
	width: 100%;
	height: 100%;
	top:0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: #0009;
}
#home .container {
  position: relative;
}

#home h1 {
  margin: 0;
  font-size: 60px;
  font-weight: 700;
  font-style: italic;
  color:#fff;
  padding-bottom: 20px;
  margin-bottom: 7px;
}
#home h2 {
  color: #fff;
  /*margin: 10px 0 0 0;*/
  font-weight: 500;
  font-size: 30px;
  padding-bottom: 20px;
  margin-bottom: 7px;
  font-family: var(--font-family-Roboto);
}



@media(min-width: 992px){
  #home {
    min-height: 600px;
    justify-content: center;
  }
}
@media (max-width: 991px) {
  #home {
    margin-bottom: 0;
  }

  #home h1 {
    font-size: 30px;
  }

  #home h2 {
    font-size: 24px;
  }
}
/*Hero Section End*/
.template__sec {
  text-align: center;
}
.template__sec p {
  margin-bottom: 0;
  font-family: var(--font-family-Roboto)
}
@media(min-width: 992px){
  .template__sec p {
    font-size: 18px;
  }
}
.about-section .content-column .inner-column{
  padding:  0 0 20px;
}

.about-section .content-column .text{
  position:relative;
  margin-bottom:20px;
}

.about-section .image-column .inner-column{
  position:relative;
  padding:10px 0 0;
}

.about-section .image-column .inner-column:after{
  position:absolute;
  content:'';
  right:0px;
  top:0px;
  left:40px;
  bottom:100px;
  z-index:-1;
  border:2px solid var(--pri-color);
}

.about-section .image-column .inner-column .image{
  position:relative;
}
.about-section .image-column .inner-column .image img{
  position:relative;
  width:100%;
  display:block;
}

.sec-title {
    padding-bottom: 20px;
}
.sec-title .title {
    position: relative;
    color: var(--pri-color);
    font-size: 18px;
    font-weight: 700;
    padding-right: 50px;
    margin-bottom: 15px;
    display: inline-block;
    text-transform: capitalize;
}

@media(min-width: 992px){
  .about-section .image-column .inner-column {
    margin-left:50px;
  }
  .about-section .row{
    align-items: center;
  }
  .about-section .content-column .inner-column {
    padding: 0 50px;
  }
  .about-section .image-column .inner-column {
   padding: 40px 40px 0px 0px 
  }
  
}
/*About Section End*/
/*membership Start*/

.membership:not(.first___sec) {
  background-color:var(--pri-color);
}
.membership h2,
.membership p{
  margin-bottom: 20px;
}
.membership:not(.first___sec) h2,
.membership:not(.first___sec) p {
  color:#fff;
}
.membership p{
  font-family: var(--font-family-Roboto);
}

@media(min-width: 992px){
  .membership p{
    margin-bottom: 30px;
  }
 
  .membership p {
  	font-size: 18px;
  }
  .membership  .row{
    align-items: center;
  }
}
/*membership End*/
/*testimonials start*/
.testimonials .testi__box {
  background-color: #f4f4f4;
  padding: 20px;
}

.testimonials .testi__box .testi__head {
  justify-content: space-between;
}

.testi_body .show-more-height{
	font-family: var(--font-family-Roboto);
}
.testimonials .testi__box .testi__head{
  margin-bottom: 20px;
}
.testi__head .right_t_side img{
	width: 25px;
}
.testimonials .slick-slider {
	margin:0 -10px;
} 
.testimonials .slick-slide {
	padding: 0 10px;
}
.testimonials .testi__box .testi__head,
.left_t_side {
  display: flex;
}
.left_t_side {
  align-items: center;
}
.left_t_side div{
  margin-right: 8px;
}

.left_t_side div img{
  max-width: 30px;
}

.testi_body p{
  font-size: 14px;
  color:#000;
  font-weight: 400;
  margin-bottom: 0;
}
.testimonials .slick-prev,
 .testimonials .slick-next {
 	z-index: 99;
 }
 .testimonials .slick-prev::before,
 .testimonials .slick-next::before {
 	font-family: "Font Awesome 6 Free";
 	font-weight: 900;
 	font-size: 20px;
 	color:#0008;
 }
 .testimonials .slick-prev::before{
 	content: "\f104";
 }
 .testimonials .slick-next::before{
 	content: "\f105";
 }
 .testimonials .slick-next {
 	right: 0;
 }
.testi_body .show-more-height {
   margin-bottom: 0;
}
.testi_body .show-more {
	color:#000;
	cursor: pointer;
}
@media(min-width: 992px){
  .testimonials:not(.emergency__testimonials) h3,
  .emergency__testimonials h4{
    margin-bottom: 40px;
  }
  
  .testimonials .col-lg-6:not(:first-child) p {
    font-size: 18px;
    margin-bottom: 0;
  }
}
/*testimonials End*/
/*New FAqs Start*/

.site_faqs .accordion-item {
  border: 0;
  margin-bottom: 20px;
  -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.05);
}
.site_faqs .accordion-item .accordion-header button {
  background-color: #0001;
  border-bottom: 1px solid #ededed;
  padding: 20px;
  font-size: 16px;
  font-weight: 500;
  box-shadow: none;
  font-family: var(--font-family-Roboto);
}

.accordion-body {
	font-family: var(--font-family-Roboto);
}

.site_faqs .accordion-button:not(.collapsed) {
  color: var(--pri-color);
}
.site_faqs .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23005826'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>");
}
.site_faqs .accordion-item .accordion-header button:focus{
  border-color: transparent;
  box-shadow: none;
}
@media(min-width: 992px){
	.accordion-body{
		font-size: 18px;
	}
	.site_faqs .accordion-item .accordion-header button {
		font-size: 20px
	}
  
}
/*New FAqs End*/


/*General Section Css Start*/
p{
  font-family: var(--font-family-Roboto);
}
.template__bg {
    background-color: #f3f0f1;
}

img {
    max-width: 100%;
    height: auto;
}
img.img-fluid {
	width: 100%;
}
a {
    text-decoration: none;
    transition: 0.3s ease-in-out;
    outline: 0;
}
ol, ul {
    list-style: none;
    margin: 0 0 25px;
    padding: 0;
}
h1, h2, h3, h4, h5, h6 {
	color: #1b1a1a;
    font-weight: 700;
}
.section-title {
  text-align: center;
}
.sec_py,
.sec_pt {
	padding-top: 40px;
}
.heading__title {
	font-size: 22px;
	margin-bottom: 20px;
	font-weight: 700;
}
.sec_py,
.sec_pb {
	padding-bottom: 40px;
}
.footer_btm p{
  font-family: var(--font-family-Roboto);
}
.footer_btm p a {
    font-weight: 700;
    color: var(--sec-color);
    font-family: var(--font-family-Roboto);
}
@media(min-width: 992px){
  .section-title h2 {
    font-size: 32px;
  }
  .sec_py,
	.sec_pt {
		padding-top: 50px;
	}

	.sec_py,
	.sec_pb {
		padding-bottom: 50px;
	}
	.heading__title {
		font-size: 30px;
		margin-bottom: 40px;
	} 
}
@media(min-width: 1200px){
	.sec_py,
	.sec_pt {
		padding-top: 60px;
	}

	.sec_py,
	.sec_pb {
		padding-bottom: 60px;
	}
	.heading__title {
		font-size: 34px;
	}
}
/*General Section Css End*/
/*Top Cities Start*/

.top_cate li.cols{
	display: flex;
}
.top_cate li.cols a{
	color:var(--pri-color);
	font-size: 16px;
	font-family: var(--font-family-Roboto);
}
.top_cate li.cols a::before{
	display: inline-block;
	margin-right: 8px;
	font-family: "Font Awesome 6 Free";
	content: "\f3c5";
	font-weight: 900
}
.related__links .top_cate li.cols a::before {
  content: "\f14c";
}
.top_cate ul{
	-moz-columns: 1;
    column-count: 1;
    gap:  16px;
}
.top_cate li {
	margin-bottom: 16px;
}
@media(min-width: 576px){
	.top_cate ul{
		-moz-columns: 3;
    	column-count: 3;
	}	
}
@media(min-width: 992px){
	.top_cate ul{
		-moz-columns: 4;
    	column-count: 4;
	}	
	.top_cate li {
		margin-bottom: 0;
	}
}
/*Top Cities End*/