@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@100;200;300;400;500;600;700;800;900&display=swap');
:root {
  --theme-color: #000;
  --theme-color-second: #000;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  outline: none;
  font-size: 16px;
  color: #1e1e1e;
  background-color: #dbdbdb;
  scroll-behavior: smooth;
  overflow-x: hidden !important;
  font-family: 'Barlow', sans-serif;
}

* {

   scrollbar-width: auto;

   scrollbar-color: #e92e88 rgb(178, 24, 89);
   
 }
 
 *::-webkit-scrollbar {

   width: 16px;
 }
 *::-webkit-scrollbar-track {

  background-color: rgb(178, 24, 89);
  border-radius: 10px !important;
 }
 *::-webkit-scrollbar-thumb {

   background-color: #e92e88;

   border-radius: 10px;

   border: 1px solid #ffffff;
 }
a {
  color: #0055f1;
  text-decoration: none;
  transition: all 0.5s;
}
p a {
    color: #ff943a !important;
}

a:hover {
  text-decoration: none;
  transition: all .6s;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  margin-bottom: 20px;
  font-family: 'Roboto', sans-serif;
  color: inherit;
}



p {
  margin: 0;
  line-height: 26px;
  margin-bottom: 20px;
  font-size: 16px;
  font-family: 'Barlow', sans-serif;
}

ul li {
  margin-bottom: 0px;
}

.img-fluid {
  display: block;
  width: 100%;
  max-width: 100%;
}

.li {
  display: inline-block;
  padding: 0px 5px;
}

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

h1 {
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 15px;
  font-family: 'Roboto', sans-serif;
}

h2 {
  font-size: 45px;
  font-weight: 500;
  margin-bottom: 15px;
  line-height: 57px;
  font-family: 'Roboto', sans-serif;
}

h3 {
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 15px;
}

h4 {
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 15px;
}

h5 {}

h6 {}

.bg-cover {
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

.row-below {
  margin-top: 30px;
}

section {
  padding: 70px 0px;
}

.form-control:focus {
  border-color: #ced4da;
  outline: 0;
  box-shadow: none;
}

/* ........Scroll top......... */

@-webkit-keyframes AnimationName {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@-moz-keyframes AnimationName {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes AnimationName {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}



.m-backtotop {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: fixed;
  bottom: -50px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: #1ed3e1;
  border-radius: 0px;
  text-align: center;
  border: 2px solid #1ed3e1;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
  opacity: 0;
  overflow: hidden;
  color: #fff;
  border-radius: 50%;
  z-index: 111;
}
.m-backtotop i{
  font-size: 35px;
}
.m-backtotop.active {
  bottom: 40px;
  opacity: 1;
}

.m-backtotop>div {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.m-backtotop>div.arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  opacity: 1;
}

.m-backtotop>div.text {
  font-size: 5px;
  font-size: 0.5rem;
  line-height: 10px;
  text-transform: uppercase;
  font-weight: 500;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(50%) translateX(-50%);
  opacity: 0;
  margin-top: 1px;
}

.m-backtotop:hover {
  transform: scale(1.1);
  bottom: 40px;
  cursor: pointer;
  background: black;
  box-shadow: 0 10px 5px rgba(0, 0, 0, 0.1);
}

.m-backtotop:hover>div.arrow {
  transform: translateY(-150%) translateX(-50%);
  opacity: 0;
}

.m-backtotop:hover>div.text {
  transform: translateY(-50%) translateX(-50%);
  opacity: 1;
}

/* ........Scroll top......... */
.py-5 {
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}

.py-6 {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}

.py-7 {
  padding-top: 70px !important;
  padding-bottom: 70px !important;
}
.py-8 {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}
.py-9 {
  padding-top: 90px !important;
  padding-bottom: 90px !important;
}

.py-10 {
  padding-top: 100px !important;
  padding-bottom: 100px !important;
}

/* ---------Moblie Call Action------------- */
/*.mobile-fixed-button{*/
/*  display: none;*/
/*}*/
/* ---------Moblie Call Action------------- */

/* ..........Button.......... */
.btn1 {
	border-radius: 100rem;
	padding: 1rem;
  font-family: 'Barlow', sans-serif;
	font-size: 1rem;
  padding: 12px 20px;
	color: #fff;
	box-shadow: 0 0 6px 0 rgba(157, 96, 212, 0.5);
	border: solid 1px transparent;
	background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0),rgba(255, 255, 255, 0)), linear-gradient(101deg, #d5145f 0% , #ed5923 100%);
	background-origin: border-box;
	background-clip: content-box, border-box;
  box-shadow: 20px 100px 20px #000 inset;
	background-color: initial;
	display: inline-block;
	text-transform: capitalize;
  width: 220px;
text-align: center;
}
.btn1:hover {
  box-shadow: none;
  color: white;
}
.btn1 i{
  margin-left: 10px;
}
.btn2 i{
  margin-left: 10px;
}
.btn2 {
	border-radius: 100rem;
	padding: 1rem;
  font-family: 'Barlow', sans-serif;
	font-size: 1rem;
  padding: 12px 20px;
	color: #fff;
	box-shadow: 0 0 6px 0 rgba(157, 96, 212, 0.5);
	border: solid 1px transparent;
	background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0),rgba(255, 255, 255, 0)), linear-gradient(101deg, #0ebcef 0% , #28fdba 100%);
	background-origin: border-box;
	background-clip: content-box, border-box;
  box-shadow: 20px 100px 20px #000 inset;
	background-color: initial;
	display: inline-block;
	text-transform: capitalize;
width: 220px;
text-align: center;
}
.btn2:hover {
  box-shadow: none;
  color: white;
}
.btn_gap{
  margin-right: 7px;
}

.btn3 i{
  margin-left: 10px;
}
.btn3 {
	border-radius: 100rem;
	padding: 1rem;
  font-family: 'Barlow', sans-serif;
	font-size: 1rem;
  padding: 12px 20px;
  box-shadow: 0 0 6px 0 rgba(157, 96, 212, 0.5);
	border: solid 1px transparent;
	background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0),rgba(255, 255, 255, 0)), linear-gradient(101deg, #1abcfa 0% , #28fac2 100%);
	background-origin: border-box;
	background-clip: content-box, border-box;
  box-shadow: 0px 0px 0px #000 inset;
	color: #000000;
	
	background-color: initial;
	display: inline-block;
	text-transform: capitalize;
width: 220px;
text-align: center;
}
.btn3:hover {
  box-shadow: 0 0 6px 0 rgba(157, 96, 212, 0.5);
	border: solid 1px transparent;
	background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0),rgba(255, 255, 255, 0)), linear-gradient(101deg, #1abcfa 0% , #28fac2 100%);
	background-origin: border-box;
	background-clip: content-box, border-box;
  box-shadow: 0px 100px 20px #000 inset;
  background-color: initial;
  color: white;
}


.btn4 i{
  margin-left: 10px;
}
.btn4 {
	border-radius: 100rem;
	padding: 1rem;
  font-family: 'Barlow', sans-serif;
	font-size: 1rem;
  padding: 12px 20px;
  box-shadow: 0 0 6px 0 rgba(157, 96, 212, 0.5);
	border: solid 1px transparent;
	background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0),rgba(255, 255, 255, 0)), linear-gradient(101deg, #8f1e7d 0% , #f8636e 100%);
	background-origin: border-box;
	background-clip: content-box, border-box;
  box-shadow: 0px 0px 0px #000 inset;
	color: #ffffff;

	background-color: initial;
	display: inline-block;
	text-transform: capitalize;
width: 220px;
text-align: center;
}
.btn4:hover {
  box-shadow: 0 0 6px 0 rgba(157, 96, 212, 0.5);
	border: solid 1px transparent;
	background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0),rgba(255, 255, 255, 0)), linear-gradient(101deg, #8f1e7d 0% , #f8636e 100%);
	background-origin: border-box;
	background-clip: content-box, border-box;
  box-shadow: 0px 100px 20px #000 inset;
  background-color: initial;
  color: white;
}
/* ---------Nav ber------------- */
.small {
  display: none;
}

.main_header {
  position: relative;
  padding: 6px 0;
  width: 100%;
  background-color: #000000;
  z-index: 11;
}

.main_header .hd_btn_sec {
  text-align: center;
  margin-left: 20px;
}



.main_header .hd_btn_sec span {
  display: block;
  font-size: 14px;
  color: #fff;
}

.main_header .container-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main_header .main_navbar img {
  width: 305px;
}

.main_header .nav_menu .nav_ul {
  display: flex;
  align-items: center;
  justify-content: right;
  margin-bottom: 0;
}
.sub_drop.list-unstyled li a{
  padding: 15px 9px !important;
}
.main_header .nav_menu .nav_ul li {
	margin-left: 35px;
	margin-bottom: 0;

}
.main_header .nav_menu .nav_ul li a{
  position: relative;
}

/*.main_header .nav_menu .nav_ul li a::after{*/
/*  content: "";*/
/*  position: absolute;*/
/*  background: linear-gradient(87deg, rgba(28,196,243,1) 27%, rgba(37,240,203,1) 81%);*/
/*  width: 0;*/
/*  height: 2px;*/
/*  left: 0;*/
/*  right: 0;*/
/*  bottom: -5px;*/
/*  transition: all 0.6s;*/
/*}*/

/*.main_header .nav_menu .nav_ul li:hover a::after{*/
/*  width: 0% !important;*/
/*}*/
/*.main_header .nav_menu .nav_ul li.active a::after{*/
/*  width: 100%;*/
/*}*/
.main_header .nav_menu .nav_ul li a {
  color: #fff;
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
}

.main_header .navbar_logo a img {
  width: 105px;
}

@media (min-width: 1200px) {

  .container,
  .container-sm,
  .container-md,
  .container-lg,
  .container-xl {
    max-width: 1230px;
  }
}
/* DROPDOWN */
/* .............sub drop.......... */

.drop_down{
  position: relative;
}
.drop_down .sub_drop{
  position:absolute;
}
.drop_down .sub_drop li{
display: block;
}
.drop_down .sub_drop li a{
    padding: 13px 8px !important;
}

.sub_drop li .sub_drop_menu li a{
  background: #fff;
}

.drop_down .sub_drop {
	position: absolute;
	background: #ffffff;
  width: 255px;
	padding: 0;
	left: 0;
	visibility: hidden;
	opacity: 0;
	pointer-events: none;
	top: 37px;
	transition: all 0.6s;
}
.drop_down .sub_drop li a {
	display: flex;
	align-items: center;
	justify-content: space-between !important;
}
.drop_down .sub_drop li a i{
  position: absolute;
    right: 5px;
    font-size: 23px;
    top: 50%;
    transform: translateY(-50%);
}
#main_header .nav_menu li {
	display: inline-block;
}
#main_header .nav_menu li a {
	color: #000000;
	font-weight: 400;
	text-transform: capitalize;
	font-size: 15px;
  padding: 29px 12px;
}
#main_header .nav_menu li a:hover {
	color: #0495b3;
}
.drop_down .sub_drop li a:hover{
  background: #0495b3;
  color: #fff !important;
}
.sub_drop.list-unstyled li{
position: relative;
}
#sub_drop_menu_left{
  position: absolute;
  background: #fff;
  width: 255px;
  padding: 0;
  left: -252px;
visibility: hidden;
  opacity: 0;
  pointer-events: none;
  top: 20px;
  transition: all 0.6s;
}


.sub_drop li:hover #sub_drop_menu_left {
visibility: visible;
	opacity: 1;
	pointer-events: all;
  transition: all 0.6s;
}


.main_header .nav_menu li .sub_drop li {
  display: block;
  margin-left: 0;
  border-bottom: 1px solid #e0e0e0;
}
.drop_down:hover .sub_drop{
visibility: visible;
  opacity: 1;
  pointer-events: all;
}
.sub_drop_menu{
  left: 100%;
}
.sub_drop  li{
  position: relative;
}
.sub_drop  li .sub_drop_menu{
  position: absolute;
	background: #fff;
	width: 250px;
	padding: 0;
	left: 100%;
  display: none;
  opacity: 0;
  pointer-events: none;
  top:20px;
}
.sub_drop  li:hover  .sub_drop_menu{
  display: block;
  opacity: 1;
  pointer-events: all;
}
.sub_drop.list-unstyled li a {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.sub_drop.list-unstyled li {
	position: relative;
	display: block;
}
.sub_drop.list-unstyled li a{
  display: block;
}
.navbar_ul{
  display: flex;
  align-items: center;
}
.sub_drop li a {
	display: block;
	width: 100%;
}
.sub_drop.list-unstyled li{
  display: block !important;
}
.sub_drop.list-unstyled li a {
	color: #000 !important;
}
/* .......top ber........ */
.top_bar{
  padding: 10px 0;
background: rgb(28,196,243);
background: linear-gradient(87deg, rgba(28,196,243,1) 27%, rgba(37,240,203,1) 81%);
}
.top_bar .top_ul ul{
margin-bottom: 0;
text-align: right;
}
.top_bar .top_ul ul li{
  display: inline-block;
  margin-left: 15px;
}
.top_bar p{
  font-weight: 500;
}
.top_bar .top_ul li a {
	color: #000;
	font-size: 16px;
	font-weight: 500;
}
.top_bar .top_ul li a i{
  margin-right: 6px;
}

/* banner */
.banner{
  background-color: #000000;
  padding: 130px 0 200px;
 color: #fff;
 position: relative;
}
.banner .banner_heading h1{
  font-size: 60px;
  font-weight: 700;
}
.banner .banner_heading h1 span{
  color: #27fbc2;
}
.banner .banner_img {
 position: relative;
}
.banner .banner_img img {
	position: absolute;
	right: -67px;
	top: -187px;
	width: 700px;
}
/* barend_sec */
.barend_sec .brend_img img{
width: 100%;
cursor: pointer;

}
.barend_sec .brend_img img:hover{
  filter: grayscale(1.1);

}
.barend_sec{
  padding: 40px 0;
  background-color: #dbdbdb;
}
.heading h2 {
	font-size: 45px;
	font-weight: 500;
	margin-bottom: 15px;
  line-height: 57px;
  font-family: 'Roboto', sans-serif;
}
.heading p {
	font-size: 16px;
	line-height: 26px;
	margin-bottom: 20px;
  font-family: 'Barlow', sans-serif;
}
/* service_sec */
.service_sec{
  background-color: #000;
  color: #fff;
}
.service_sec .contented  a{
  color: #fff;
  display: flex;
	align-items: center;
	justify-content: center;
}
.service_sec .contented a .left_con {
  min-width: 80px;
  height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
  background: rgb(28,198,241);
background: linear-gradient(122deg, rgba(28,198,241,1) 27%, rgba(35,226,215,1) 81%); 

	border-radius: 50%;
	margin-right: 28px;
	margin-left: -77px;
}
.service_sec .contented .left_con span {
  font-size: 45px;
	font-weight: 600;
  transition: all 0.6s;
}
.service_sec .contented .content h4 {
	font-size: 24px;
	font-weight: 400;
	margin-bottom: 12px;
}
.service_sec .contented .content p{
  margin-bottom: 0;
}
.service_sec .contented {
  box-shadow: 0 0 6px 0 rgba(157, 96, 212, 0.5);
	border: solid 1px transparent;
	background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0),rgba(255, 255, 255, 0)), linear-gradient(101deg, #0ebcef 0% , #28fdba 100%);
	background-origin: border-box;
	background-clip: content-box, border-box;
  box-shadow: 20px 300px 20px #000 inset;
	background-color: initial;
  border-radius: 10px;
	padding: 25px;
  margin-left: 70px;
  display: flex;
  align-items: self-start;
  transition: all 0.6s;
  cursor: pointer;
}

.service_sec .contented:hover{

  background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0),rgba(255, 255, 255, 0)), linear-gradient(100deg, #e21462 0% , #f44b3e 100%);
	background-origin: border-box;
	background-clip: content-box, border-box;
  box-shadow: 0px 0px 0px #000000 inset;
	background-color: initial;
}
.service_sec .contented:hover .left_con {
	
	display: flex;
	align-items: center;
	justify-content: center;
	background:#fff;
	border-radius: 50%;
	margin-right: 28px;
	margin-left: -77px;
}
.service_sec .contented:hover .left_con span{
  color: #e21462;

}
.gaping{
  margin-bottom: 35px;
}
.service_sec .content_left .heading p{
  color: #b3b3b3;
}
/* boiler_sec */
.boiler_sec{
  background-color: #dbdbdb;
}
.boiler_sec .heading h2{
  color: #141414;
}
.boiler_sec .progres_content{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.boiler_sec .progres_content .content{
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:#fff;
  border-radius: 50%;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  color: #e41b5d;
  margin: 0 auto;
  position: relative;
  z-index: 11;
  transition: all 0.6s;
  cursor: pointer;
}
.boiler_sec .progres_content .content:hover{

  background: linear-gradient(122deg, #e41a5e 27%, #ed384b 81%);
  color: #fff;
}
.boiler_sec .progres_content .content.active{

  background: linear-gradient(122deg, #e41a5e 27%, #ed384b 81%);
  color: #fff;
}
.boiler_sec .progres_content .content span{
  font-size: 55px;
  font-weight: 600;
  transition: all 0.6s;
  
}
.boiler_sec .progres_content .progress_cons{
  text-align: center;
}
.boiler_sec .progres_content .progress_cons h4{
text-align: center;
margin: 15px 0 0;
font-size: 30px;
font-weight: 500;
}
.boiler_sec .progres_content{
  position: relative;
}
.boiler_sec .progres_content::after {
	content: "";
	background-color: #b3b3b3;
	width: 90%;
	height: 3px;
	position: absolute;
	left: 50%;
	bottom: 56%;
	/* right: 0; */
	transform: translate(-50%,-50%);
}
.boiler_sec .progres_content .progress_cons{
  position: relative;
}
.boiler_sec .progres_content .car_sty {
	position: absolute;
	right: -96%;
	top: 12%;
}
.boiler_sec .progres_content .car_sty img{
  width: 100px;
}
/* about_sec */

.about_sec{
background-color: #000000;
color: #fff;
overflow: hidden;
}
.about_sec .heading h2{
  font-weight: 200;
}
.about_sec .heading p{
  color: #b3b3b3;
}
.about_sec .heading h2 span{
  display: block;
  color: #27fbc2;
  font-weight: 500;
}
.about_sec .contented_img {
	position: relative;
	/*margin-left: -72px;*/
	margin-bottom: -20px;
}
/* landlord_sec */
.landlord_sec{
/*   background: url('../image/landlord-bg.jpg') no-repeat center; */
  background-size: cover;
  color: #fff;
}
.landlord_sec .heading h2 span{
  font-weight: 200;
  display: block;

}
.landlord_sec .heading p {
	max-width: 467px;
}
.landlord_sec .heading {
  position: relative;
}
.landlord_sec .heading  .botom_img img{
  width: 120px;
}
.landlord_sec .heading  .botom_img{
  position: absolute;
  right: 43px;
  bottom: 0;
}
/* boiler_service_sec */
.boiler_service_sec{
  background:url('../image/boiler-service-bg.jpg') no-repeat center;
  background-size: cover;
color: #fff;
padding: 125px 0;
}

.boiler_service_sec .heading h2 span{
  font-weight: 200;
  color: #fff;
}
.boiler_service_sec .heading h2{
  color: #ff943a;
}
.boiler_service_sec .heading ul.list-unstyled li {
	display: inline-block;
	/*width: 386px;*/
	margin-bottom: 16px;
  color: #b3b3b3;
}
.boiler_service_sec .heading ul.list-unstyled li img{
  margin-right: 7px;
}
/* home_sec3 */
.home_sec3{
/*   background: url('../image/home-bg1.jpg') no-repeat center; */
  background-size: cover;
  padding: 100px 0;
}
.home_sec3 .heading h2 span{
  font-weight: 200;
  color: #000000;
}
/* why_choose_sec */
.why_choose_sec{
  background: url('../image/home-bg2.jpg') no-repeat center;
  background-size: cover;
  text-align: center;
}
.why_choose_sec .heading h2{
  color: #fff;
}
.why_choose_sec .why_content{
text-align: center;
}
.why_choose_sec .why_content .top_img img{
  width: 70px;
/*   cursor: pointer; */
}
.why_choose_sec .why_content .top_img{
  margin-bottom: 15px;
}
.why_choose_sec .why_content h5{
  font-size: 19px;
  font-weight: 500;
  margin-bottom: 0;
  color: #fff;
}

.why_choose_sec .heading p{
	color: #fff !important;
}
 
/* ....faq..... */
.accordion__item {
  padding: 7px 0px;
  border-bottom: 1px solid #a1a1a1;
}
.accordion__body {
  display: none;
}
.accordion__body p {
  font-size: 16px;
  line-height: 26px;
}
.accordion__body ul li {
  font-size: 16px;
  margin-bottom: 12px;
}
.accordion__body ul {
  margin-top: 25px;
}
.accordion__title {
	font-size: 20px;
	cursor: pointer;
	margin-bottom: 0;
	position: relative;
	color: #000;
	font-weight: 400;
	padding: 0 60px 0 0px;
}
.accordion__title:after {
  content: "";
  width: 30px;
  height: 42px;
  position: absolute;
  right: 0;
  top: 24px;
  background: url(../image/up-arrow.png) no-repeat;
  background-size: 23px;
}
.accordion__title.active {
  color: #000;
}
.accordion__title.active::after {
	transform: rotate(-180deg);
	top: -7px;
	right: 6px;
}
.faq_list h4 {
  background: #024fff;
  color: #000;
  padding: 17px 20px;
  font-size: 24px;
  font-weight: 600;
  text-align: center;
}
.faq_list {
  margin-bottom: 50px;
}
.accordion__item h3 {
  font-size: 20px;
  color: #3c3c3c;
  font-weight: 700;
  margin-top: 30px;
}
.accordion__body h5 {
  font-size: 22px;
  font-weight: 500;
  color: #0e0e0e;
}
.faq_sec{
  background-color: #dbdbdb;
}
.faq_sec .heading h2{
  color: #ff943a;
}

/* areas_sec */
.areas_sec{
  background-color: #000;
  color: #fff;
}
.areas_sec .heading h2 span{
  font-weight: 200;
  color: #ffffff;
}
.areas_sec .heading h2 {
  color: #28fac2;
}
.areas_sec .heading ul li {
	display: inline-block;
	margin-bottom: 25px;
	width: 205px;
}
.areas_sec .heading ul li a{
  color: #b3b3b3;
  display: inline-block;
}
.areas_sec .heading ul li a img{
  width: 20px;
  margin-right: 10px;
}
.areas_sec .heading ul{
  margin: 25px 0;
}
.areas_sec .heading h4 {
	font-size: 25px;
	font-weight: 300;
  margin-bottom: 0;
}
/* call_us_sec */
.call_us_sec{
  background: rgb(226,20,98);
  background: linear-gradient(122deg, rgba(226,20,98,1) 32%, rgba(245,79,60,1) 75%); 
  padding: 45px 0;
}
.call_us_sec .heading h4 {
	color: #fff;
	text-align: center;
	font-size: 45px;
	font-weight: 400;
	margin-bottom: 0;
}
.call_us_sec .heading h4 a{
  color: #fff;
}
/* review_and_contact */

.review_and_contact .contact-form input {
  height: 55px;
  border-radius: 5px;
  color: #000 !important;
  border: 1px solid #e2e2e2;
  width: 100%;
  padding: 0 20px;
  outline: none;
}

.review_and_contact .contact-form textarea {
  border-radius: 5px;
  color: #000 !important;
  padding: 16px;
  width: 100%;
  border: 1px solid #e2e2e2;
  outline: none;
}

.review_and_contact .contact-form select {
  height: 55px;
  border-radius: 5px;
  color: #a8a8a8;
  border: 1px solid #e2e2e2;
  width: 100%;
  padding: 0 24px;
  outline: none;
  box-shadow: none;
}

.review_and_contact .contact-form option {
  color: #a8a8a8;
}

.review_and_contact .contact-form button {
  border: solid 1px transparent;
  background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0),rgba(255, 255, 255, 0)), linear-gradient(101deg, #8f1e7d 0% , #f8636e 100%);
  background-origin: border-box;
  background-clip: content-box, border-box;
  box-shadow: 0px 0px 0px #000 inset;
  color: #ffffff;
  background-color: initial;
  display: inline-block;
  padding: 14px 0px;
  outline: none;
  cursor: pointer;
  display: inline-block;
  color: #fff;
  text-transform: uppercase;
  border-radius: 5px;
  width: 100%;
  letter-spacing: 2px;
  transition: all 0.6s;
}

.review_and_contact .contact-form button:hover {
  border: solid 1px transparent;
  background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0),rgba(255, 255, 255, 0)), linear-gradient(101deg, #8f1e7d 0% , #f8636e 100%);
  background-origin: border-box;
  background-clip: content-box, border-box;
  box-shadow: 0px 100px 20px #000 inset;
  background-color: initial;
  color: white;
}
.review_contented .top_content{
display: flex;
align-items:center;
justify-content: space-between;
margin-bottom: 10px;
}
.review_contented  p{
  margin-bottom: 0;
}
.review_contented .top_content h4{
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 400;
}
.review_contented {
	display: flex;
	align-items: center;
	justify-content: space-between;
  gap: 25px;
  margin-bottom: 25px;

}
.review_contented  .top_img img{
  width: 100px;
  height: 100px;
  border-radius: 50%;
}
.review_contented  .top_img{
  margin-right: 30px;
}
.review_and_contact .owl-prev img {
  padding: 0 7px !important;
  width: 45px;
}
.review_and_contact .owl-next img {
  padding: 0 7px !important;
  width: 45px;
}
/* footer */

.ft_top{
  background-color: #000000;
  padding: 80px 0;
}
footer .ft-content h4 {
	color: #27fbc2;
	text-transform: capitalize;
	font-size: 25px;
	font-weight: 400;
	margin-bottom: 30px;
}
footer .ft-content .links-ft li {
  margin-bottom: 25px;
}
footer .ft-content .links-ft li a {
  color: #b3b3b3;
	font-size: 16px;
	font-weight: 300;
}
footer .ft_logo a img {
	width: 155px;
}
footer .ft_logo {
  margin-bottom: 15px;
}
footer .ft_content p {
	color: #b3b3b3;
	max-width: 365px;
}
footer .ft_socail{
  display: flex;
  align-items: center;
  justify-content: left;
}
footer .ft_socail li a img{
  width: 40px;
}
footer .ft_socail li a{
  margin-right: 10px;
}
.ft_border {
	width: 100%;
	height: 1px;
	background-color: #202020;
	margin: 40px 0;
}
footer .ft_address{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
footer .ft_address .ft_map{
  display: flex;
  align-items: center;
  
}
footer .ft_address .ft_map .content_left{
  margin-right: 10px;
}
footer .ft_address .ft_map .content_left img{
  width: 40px;
}
footer .ft_address .ft_map .content_right h4 {
	margin-bottom: 0;
	color: #fff;
  font-size: 16px;
	font-weight: 400;
}
footer .ft_address .ft_map .content_right h4 a{
  margin-bottom: 0;
	color: #fff;
	font-size: 16px;
	font-weight: 400;
}
footer .ft_address .ft_map .content_right p {
	margin-bottom: 0;
	color: #b3b3b3;
	font-size: 13px;
}
footer .ft_address .ft_map .content_right p a{
 
	color: #b3b3b3 !important;
	font-size: 13px;
}
footer .copy_txt p{
  text-align: center;
  margin-bottom: 0;
  color: #fff;
}
.copy_txt{
  background-color: #202020;
  padding: 20px 0;
}

/* .....innner page */
.inner-page {
  padding: 280px 0 90px;
	text-align: center;
}
.inner-page h1 {
	line-height: 40px;
	font-size: 45px;
  color: #ff943a;
	font-weight: 500;
}
.inner_content {
  border: solid 3px transparent;
  background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0),rgba(255, 255, 255, 0)), linear-gradient(101deg, #0ebcef 0% , #28fdba 100%);
  background-origin: border-box;
  background-clip: content-box, border-box;
  box-shadow: 20px 300px 20px #000 inset;
  background-color: initial;
  border-radius: 10px;
  padding: 20px;
}
.inner-page ul {
  display: flex;
  align-items: center;
  justify-content: center;
}
.inner-page ul li {
  font-size: 20px;
  margin: 0 6px;
  color: #ffffff;
  font-weight: 300;
}
.inner-page ul li a {
  color: #ffffff;
  font-weight: 300;
}

/* innner page */
.contact_bg{
  background: url('../image/contact-banner.png') no-repeat center;
  background-size: cover;
}
.faq_bg{
  background: url('../image/faq-banner.png') no-repeat center;
  background-size: cover;
}
.review_bg{
  background: url('../image/rewiew-banner.jpg') no-repeat center;
  background-size: cover;
}
.area_bg{
  background: url('../image/area-banner.jpg') no-repeat center;
  background-size: cover;
}
.about_bg{
/*   background: url('../image/about-banner.jpg') no-repeat center; */
  background-size: cover;
}
.projects_bg{
  background: url('../image/project-banner.jpg') no-repeat center;
  background-size: cover;
}
.blog_bg{
  background: url('../image/blog-banner.jpg') no-repeat center;
  background-size: cover;
}
/* .service_bg{
  background: url('../image/service-banner.jpg') no-repeat center;
  background-size: cover;
} */
/* contact Us */
.contact-info-top {
  margin-top: 7px;
}
.contact .p-contact{
  margin: initial !important;
}
.contact .row-below{
  margin-top: 30px;
}
.contact .contact-info form{
  margin-top: 15px;
}
.contact .contact-top {
  background: rgb(26,188,252);
background: linear-gradient(90deg, rgba(26,188,252,1) 28%, rgba(33,225,214,1) 73%); 
  padding: 33px 20px;
  width: 100%;
  height: 100%;
  border-radius: 12px;
 
}
.contact .contact-icon{
  position: relative;
  margin-bottom: 15px;
}
.contact .contact-info-top a{
  color: #000;
  font-size: 16px;
}
.contact .contact-info-top p{
  color: #000;
  font-size: 16px;
  margin-bottom: 0;
}
.contact .contact-icon i {
  background: linear-gradient(122deg, rgba(226,20,98,1) 32%, rgba(245,79,60,1) 75%);
  width: 70px;
  height: 70px;
  margin: 0 auto 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
}
.contact-top h4 {
  font-size: 20px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 2px;
  text-transform: uppercase;
}
.contact .contact-left-el {
  margin-bottom: 23px;
  display: flex;
  align-items:center;
  background: #f7f7f7;
}
.contact .contact-left-el1{
  margin-bottom: 26px;
  margin-top: 30px;
  display: flex;
  align-items:flex-start;
}

.contact .contact-left-el,.contact-left-el1 a {

  color: #777777;
  transition: all .3s ease-in-out;
}
.contact .contact-form {
  background: #fff;
  padding:25px;
  box-shadow: 0px 10px 40px rgb(235, 235, 235);

}
.contact .contact-left{
  background: #fff;
  padding: 35px 25px;
  box-shadow: 0px 10px 40px rgb(235, 235, 235);

  width: 100%;
  height: 100%;
}
.contact .contact-left-el,.contact-left-el1 a:hover {
  color: #5ad2d2;
}
.contact .contact-form input{

  height: 60px;
  border-radius: 5px;
  color: #666666;

  border: 1px solid #e2e2e2;
}

.contact .contact-form textarea {

  border-radius: 5px;
  color: #666666;
  border: 1px solid #e2e2e2;
  height: 121px;
  padding: 12px;
}
.form-control:focus {
  color: #5F656F;
  background-color: #fff;
  border-color: #fadfd5 !important;
  outline: 0;
  box-shadow: inherit !important;
}
.contact .contact-form button {
  background: #1e8ba2;
  border: 1px solid #1e8ba2;
  padding: 10px 0px;
  outline: none;
  cursor: pointer;
  display: inline-block;
  color: #fff;

  text-transform: uppercase;
  border-radius: 5px;
  width: 280px;
  height: 60px;
  transition: all 0.5s ease-in-out;
  letter-spacing: 0px;
  font-size: 19px;
  font-weight: 600;
  width: 100%;
}
.contact .contact-form button:hover{
  background: #000;
  border: 1px solid #fadfd5;
  color: #fadfd5;
}
.map iframe {
  width: 100%;
  height: 520px;
}
.map{
  line-height: 0;
}
.contact .form_contact {
 
  color: #ffffff;
  padding: 27px 31px;
  border-radius: 12px;
  border: 1px solid #1dcbec;
}
.form_contact input {
	width: 100%;
	border: 1px solid #cdcdcd;
	height: 51px;
	padding: 0px 14px;
	border-radius: 4px;
	outline: none;
	transition: all 0.6s ease-in-out;
	background-color: initial;
	color: #fff;
}
.form_contact textarea {
  width: 100%;
	border: 1px solid #cdcdcd;
  height: 131px;
  padding: 14px 14px;
  border-radius: 4px;
  line-height: initial;
  outline: none;
  transition: all 0.6s ease-in-out;
  background-color: initial;
	color: #fff;
}
.form_contact button {
  border: solid 1px transparent;
  background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0),rgba(255, 255, 255, 0)), linear-gradient(101deg, #8f1e7d 0% , #f8636e 100%);
  background-origin: border-box;
  background-clip: content-box, border-box;
  box-shadow: 0px 0px 0px #000 inset;
  color: #ffffff;
  background-color: initial;
  display: inline-block;
  padding: 14px 0px;
  outline: none;
  cursor: pointer;
  display: inline-block;
  color: #fff;
  text-transform: uppercase;
  border-radius: 5px;
  width: 300px;
  letter-spacing: 2px;
  transition: all 0.6s;
}
.form_contact button:hover {
  border: solid 1px transparent;
  background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0),rgba(255, 255, 255, 0)), linear-gradient(101deg, #8f1e7d 0% , #f8636e 100%);
  background-origin: border-box;
  background-clip: content-box, border-box;
  box-shadow: 0px 100px 20px #000 inset;
  background-color: initial;
  color: white;
}
.gaping{
  margin-top: 15px;
}
/* review_sec */
.review_sec .review_contented {
	border: solid 1px transparent;
	background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0),rgba(255, 255, 255, 0)), linear-gradient(100deg, #e21462 0% , #f44b3e 100%);
	background-origin: border-box;
	background-clip: content-box, border-box;
	box-shadow: 0px 531px 2px #ffffff inset;
	background-color: initial;
	border-radius: 10px;
	width: 100%;
	height: 100%;
	padding: 15px;
	transition: all 0.6s;
}

.review_sec .review_contented:hover {
  border: solid 1px transparent;
  background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0),rgba(255, 255, 255, 0)), linear-gradient(100deg, #e21462 0% , #f44b3e 100%);
	background-origin: border-box;
	background-clip: content-box, border-box;
  box-shadow: 0px 0px 0px #000000 inset;
	background-color: initial;
  padding: 15px;
  color: #fff;
}

#areas_sec2{
  background-color: #dbdbdb;
}
#areas_sec2 .heading h2 {
	color: #000;
}
#areas_sec2 .heading ul li{
  text-align: left;
}
#areas_sec2 .heading ul li a {
	color: #000;
	display: inline-block;
}
.about_sec1 .heading h2{
  color: #ff943a;
}
#about_sec2 .heading h2 span{
  color: #fff;
}
.bg_color{
  background-color: #dbdbdb;
}
.rounding{
  border-radius: 10px;
  
}
/* .content_img_sty{
  position: relative;
}
.content_img_sty img{
  position: relative;
  z-index: 11;
}
.content_img_sty::before {
	content: "";
  box-shadow: #ff943a 0px 7px 29px 0px;
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
  border-radius: 10px;
}
.content_img_sty1{
  position: relative;
}
.content_img_sty1 img{
  position: relative;
  z-index: 11;
}
.content_img_sty1::before {
	content: "";
	border: 1px solid #ff943a;
	position: absolute;
	width: 100%;
	height: 100%;
	right: -11px;
	top: -11px;
  border-radius: 10px;
} */
.about_sec2 .heading h2{
  color: #ff943a;
}
.about_sec2 .heading h2 span{
  font-weight: 200;
  color: #fff;
}
.projects_sec3 .heading h2{
  color: #ff943a;

}
.inner_service_sec .heading h2{
  color: #ff943a;
}
.about_sec2  .heading h2 span{
  font-weight: 200;
  color: #000000;
}
.projects_sec3 .heading h2 span {
	font-weight: 200;
	color: #fff;
}
.review_sec .heading h2{
  color: #000000;
}
.review_sec .heading h2 span {
	font-weight: 200;
	color: #000000;
}
/* projects_sec1 */
.projects_sec1 .heading h2{
  color: #ff943a;
}
.project_photo .owl-nav{
  display: none;
}
.projects_sec3 .heading h2 span{
  font-weight: 200;
}

.project_photo .gall_con img {
	width: 100%;
	height: 370px;
	object-fit: cover;
  transition: all 0.6s;
}
.project_photo .gall_con:hover img{
  transform: scale(1.1);
}
.project_photo .gall_con{
  overflow: hidden;
}
.projects_sec3{
  background: url('../image/home-bg2.jpg') no-repeat center;
  background-size: cover;
}
.projects_sec3{
  color: #fff;
}
.video_slider .owl-nav{
  display: none;
}
.video_slider .owl-dots{
  display: none;
}
.video_slider .video_contented .btom {
	padding: 15px 0;
	/* text-align: center; */
}

.showcase-btns > .play-btn > i {
	width: 60px;
	height: 60px;
	background: #ff943a;
	text-align: center;
	border-radius: 50px;
	font-size: 26px;
	color: #fff;
	box-shadow: 0 0 0 0 #ff943a;
	animation: pulse 1.5s infinite cubic-bezier(0.66, 0, 0, 1);
	display: flex;
	align-items: center;
	justify-content: center;
}
.showcase-btns > .play-btn{
  cursor: pointer;
}
.showcase-btns > .play-btn{
  color: #444;
}

@-webkit-keyframes pulse {
  to {
    box-shadow: 0 0 0 25px rgba(232, 76, 61, 0);
  }
}
@-moz-keyframes pulse {
  to {
    box-shadow: 0 0 0 25px rgba(232, 76, 61, 0);
  }
}
@-ms-keyframes pulse {
  to {
    box-shadow: 0 0 0 25px rgba(232, 76, 61, 0);
  }
}
@keyframes pulse {
  to {
    box-shadow: 0 0 0 25px rgba(232, 76, 61, 0);
  }
}
.video_slider .video_con{
  position: relative;
}
.video_slider .video_con .showcase-btns{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50% , -50%);
}


/* INNER AREA */
.area-banner {
  background: linear-gradient(to right, rgba(0,0,0,0.4), rgba(0,0,0,0.3)), url(../image/Ashtead-banner.jpg) no-repeat;
  background-size: cover;
  background-position: center;  
  padding: 100px 0;
  position: relative;
}
.col-area-right {
  position: relative;
}
.col-area-right-content {
  background: #fff;
  padding: 30px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  position: initial;
  top: 50%;
  box-shadow: 0 0 6px 0 rgba(157, 96, 212, 0.5);
  border: solid 3px transparent;
  background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0),rgba(255, 255, 255, 0)), linear-gradient(101deg, #0ebcef 0% , #28fdba 100%);
  background-origin: border-box;
  background-clip: content-box, border-box;
  box-shadow: 20px 1000px 20px #000 inset;
  background-color: initial;
  border-radius: 10px;
  padding: 25px;
  color: #fff;
}
.col-area-right-content input {
  height: 50px;
  width: 100%;

  border-radius: 0;
}
.col-area-right-content h4 {
  margin-bottom: 20px;
}
.col-area-right-content button {
  border: solid 1px transparent;
  background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0),rgba(255, 255, 255, 0)), linear-gradient(101deg, #8f1e7d 0% , #f8636e 100%);
  background-origin: border-box;
  background-clip: content-box, border-box;
  box-shadow: 0px 0px 0px #000 inset;
  color: #ffffff;
  background-color: initial;
  display: inline-block;
  padding: 14px 0px;
  outline: none;
  cursor: pointer;
  display: inline-block;
  color: #fff;
  text-transform: uppercase;
  border-radius: 5px;
  width: 100%;
  letter-spacing: 2px;
  transition: all 0.6s;
}
.col-area-right-content button:hover {
  border: solid 1px transparent;
  background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0),rgba(255, 255, 255, 0)), linear-gradient(101deg, #8f1e7d 0% , #f8636e 100%);
  background-origin: border-box;
  background-clip: content-box, border-box;
  box-shadow: 0px 100px 20px #000 inset;
  background-color: initial;
  color: white;
}
.col-area-right-content textarea {
  border-radius: 0;

}
.col-area-left-top h1 {
  color: #fff;
  font-size: 61px;
  font-weight: bold;

}
.col-area-left-top a.btnn {
  background: #f0932b;

  margin-top: 20px;
  padding: 16px 60px;
  font-size: 20px;
  color: #fff;
  border-radius: 5px;
  transition: all .3s ease-in-out;
}
.col-area-left-top a.btnn:hover {
  background: #ffbe76;
  color: #111;
}
.col-area-left-top p {
  font-size: 18px;
  color: #fff;
}
.col-area-left {
  position: relative;
}
.col-area-left-btm {
  position: absolute;
  width: 96%;
  top:250%;
}
.col-area-left-btm h4 {
  font-size: 36px;
  color: #fff;
  margin-bottom: 20px;
}
.col-area-left-btm-content {
  padding: 40px;
  background: #f0932b;
  text-align: left;
}
.col-area-left-btm-content span {
  display: block;
  color: #fff;
}
.col-area-left-btm-content p {
  color: #fff;
}
.col-area-left-btm-content a {
  font-weight: 900;
  font-size: 45px;
  color: #fff;
  transition: all .3s ease-in-out;
}
.col-area-left-btm-content a:hover {
  color: #fff;
}


.area-info1 {
  padding-top: 80px;
}

.area-info1 a.btnn {
  background: #f0932b;
  margin-top: 20px;
  padding: 16px 60px;
  font-size: 20px;
  color: #fff;
  border-radius: 5px;
  transition: all .3s ease-in-out;
}
.area-info1 a.btnn:hover {
  background: #ef6921;
  color: #fff;
}
.area-info2-content h4 {
  margin: 20px 0;
  font-size: 30px;
}
.area-info2-content {
  border: 2px solid #ef6921;
}
.service-inner {
  padding-top: 0;
}
.service-inner a.btnn {
  background: #f0932b;
  padding: 12px 50px;
  margin: 20px 0;
  color: #fff;
  letter-spacing: 2px;
  transition: all .3s ease-in-out;
  border-radius: 5px;
}
.service-info a.btnn:hover {
  background: #ffbe76;
  color: #222;
}
.service-info {
  margin-top: 30px;
}
.service-info h4 a {
  color: #f0932b;
}

.area-info2-content {
  width: 100%;
  height: 100%;
  padding: 30px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  z-index: 1000;
}
.area2-btn a {
  width: 100%;
  height: 50px;
  line-height: 50px;
  background: #f0932b;

  border-radius: 5px;
  color: #fff;
  letter-spacing: 2px;
  transition: all .3s ease-in-out;
  position: relative;
  z-index: 1000;
  margin-top: 10px;
}
.area2-btn a:hover {
  background: #ffbe76;
  color: #222;

}
.area-cta {
  background: url(../images/area-cta-bg.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  padding-top: 200px;

}
.area-cta-relative {
  position: relative;
}
.area-cta-content {
  background: url(../images/area-cta-img.png) no-repeat;
  background-size: cover;
  background-position: center;
  padding: 60px;
  position: initial;
  width: 100%;
  background: rgba(0,0,0,0.5);
}
.area-cta {
  padding-bottom: 0;
  position: relative;
}
.area-cta-content-inner {
  text-align: center;
}
.area-cta-content-inner h4 {
  color: #ffff;
  font-size: 40px;
}
.area-cta-content-inner p {
  color: #fff;
}
.area-cta-content-inner a.btnn {
  background: #f0932b;
  padding: 12px 40px;
  color: #ffff;
  transition: all .3s ease-in-out;
  border-radius: 5px;
}
.area-cta-content-inner a.btnn:hover {
  background: #ffbe76;
  color: #fff;
}

.area-info3 {
  padding-top: 80px;
}
.area-info3 a.btnn {
  padding: 12px 50px;
    border: 1px solid #ff9f43;
    color: #130f40;
    letter-spacing: 2px;
    margin-top: 10px;
    transition: all .3s ease-in-out;
    border-radius: 5px;
}
.area-info3 a.btnn:hover {
  background: #feca57;
  color: #222;
}
.area-info5 {
  padding-top: 0;
}
.area-info5 .top-heading h4 {
  font-size: 36px;
}
.area-info5 ul li {
  margin: 20px 0;
  color: #130f40;
}
.area-info5 ul li a {
 
  color: #222;
}
.area-info5 a.btnn {
  border:1px solid #ff9f43;
  padding: 12px 50px;
  border-radius: 5px;
  transition: all .3s ease-in-out;
  color: #222;
  margin-top: 10px;
}
.area-info5 a.btnn:hover {
  background: #ff9f43;
  color: #fff;
}
.area-info6 {
  background:#ff9f43;
  padding-top: 0;
  padding-bottom:50px;
}
.area6-relative {
  position: relative;
}
.area-map {
  position: absolute;
  top: -2rem;
  width: 100%;
}
.area-btm {
  margin-top: 460px!important;
  text-align: center;
}
.area6-content.top-heading h2 {
  color: #fff;
}
.area6-content.top-heading p {
  color: #fff;
}
.area6-content a.phn {
  font-size: 40px;
  color: #fff;
}
.household {
  background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.4)), url(../images/household.jpeg) no-repeat;
  background-size: cover;
  background-position: center;
}
.household h2 {
  color: #fff;
}
.household p {
  color: #fff;
}
.household a.btnn {
  background: #ff9f43;
  color: #fff;
  padding: 12px 50px;
  border-radius: 5px;
  transition: all .3s ease;
}
.household a.btnn:hover {
  background: #feca57;
  color: #333;
}
/* INNER AREA */

/* BLOG PAGE */

.service_content h4 {
	margin-top: 20px;
	color: #000;
	font-weight: 400;
}

.service_items .ast{
	overflow: hidden;
	border-radius: 10px;
}

.service_items .ast img{
	transition: 1s;
  transform: scale(1);
}

.service_items .ast:hover img{
	transition: 1s;
	transform: scale(1.1);
}
.service_by {
	display: flex;
	justify-content: space-between;
}
.service_content {
	padding: 15px;
  border: 1px solid #000;
	border-radius: 10px;
  width: 100%;
  height: 100%;
  background-color: #fff;
}
.service_items .heading h2{
  color: #ff943a;
}
.service_by p {
	margin-bottom: 0;
}

.inner-area img {
  height: 220px;
  object-fit: cover;
}

.gap{
  margin-left: 15px;
}
.col-area-right-content h4{
  text-align: center;
  font-size: 33px;
}
.services-content{
  background: #222;
  color: #fff;
  padding: 30px 25px;
  width: 100%;
  height: 100%;
}

.commercial-locksmith-section{
  background: url('../image/home-bg2.jpg') no-repeat center;
  color: #fff;
  background-size: cover;
}
.commercial-locksmith-section h2{

  font-weight: 500;
}
.commercial-locksmith-section h3 {
  padding: 10px 0px 20px;
}
.commercial-locksmith-option li{
  font-size:20px;
  margin-bottom: 10px;
}
.commercial-locksmith-option li img{
  position: relative;
  float: left;
  margin-right:8px;
  top: 2px;
}
.commercial-locksmith-video-section{
  margin-top: -100px;
  
}
.commercial-locksmith-video-section {
  background-image: url(../image/bg-img-2.jpg);
  background-position: center;
  background-size: cover;
  min-height: 645px;
  padding-top: 220px;
  object-fit: cover;
  margin-top: -50px;
}
.video-back {
  background: #fff;
  height: 82px;
  width: 82px;
  border-radius: 50%;
  margin: 0 auto;
  padding-top: 6px;
  z-index: 1;
  cursor: pointer;
 position: relative;
}
.commercial-locksmith-section .top-heading p{
  color: #fff;
}
.vid-icon {
  margin: 0 auto;
  position: relative;
  z-index: 20;
}
.contact_info h3 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 2px;
  color: #fff;
  text-transform: uppercase;
  font-size: 43px;
  font-weight: 600;
}
.contact_info a{
  color:#fff !important;
}
.contact_info {
  background: #000;
  color:#fff;
  border-radius: 7px;
  text-align: left;
  padding: 62px 35px;
}
.contact_info i{
  color: #f0932b;
  font-size: 20px;
}
.area-banner .btn_sec{
  margin-top: 30px;
}
.area-info1 .heading h2{
  color: #ff943a;
}
.contact_info i {
	color: #f0932b;
	font-size: 20px;
	margin-right: 8px;
}
.video_contented .top_video {
	border-radius: 10px;
	overflow: hidden;
}
.area-info2 .heading h2 {
	color: #ff943a;
}
#blog_inner h1 {
	line-height: 60px;
	font-size: 45px;
	color: #fff;
}
/* INNER BLOG */
.area_Section .heading p {
	font-size: 17px;
	line-height: 27px;
	margin-bottom: 20px;
	/* font-family: 'Rajdhani', sans-serif; */
}
.img-inner-blog {
	margin: 15px 0;
}


.area_Section .heading p {
	font-size: 17px;
	line-height: 27px;
	margin-bottom: 20px;
	
	/* font-family: 'Rajdhani', sans-serif; */
}
.area_Section .fott-content h6 a {
	color: #ffffff;
	font-weight: 400;
  margin-bottom: 0;
}
.area_Section .row.gap-ft {
	align-items: center;
}

.area_Section .contact_form {

  border: 1px solid #e21462;
	border-radius: 7px;
	
	padding: 28px;
	margin-bottom: 22px;
	margin-top: 25px;
}


.area_Section .contact_form input {
	width: 100%;
  display: block;
  margin-bottom: 12px;
  outline: none;
  border: 1px solid #f54f3c;
  height: 48px;
  font-size: 15px;
  padding: 0px 12px;
  border-radius: 2px;
  background-color: initial;
  color: #fff;
}
.area_Section .contact_form textarea {
	width: 100%;
	display: block;
	margin-bottom: 12px;
	outline: none;
  border: 1px solid #f54f3c;
	height: 100px;
	font-size: 15px;
	padding: 12px 12px;
	border-radius: 2px;
  color: #fff;
  background-color: initial;
}
.area_Section  .contact_form button {
  border: solid 1px transparent;
  background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0),rgba(255, 255, 255, 0)), linear-gradient(101deg, #8f1e7d 0% , #f8636e 100%);
  background-origin: border-box;
  background-clip: content-box, border-box;
  box-shadow: 0px 0px 0px #000 inset;
  color: #ffffff;
  background-color: initial;
  display: inline-block;
  padding: 14px 0px;
  outline: none;
  cursor: pointer;
  display: inline-block;
  color: #fff;
  text-transform: uppercase;
  border-radius: 5px;
  width: 100%;
  letter-spacing: 2px;
  transition: all 0.6s;
}
.area_Section  .contact_form button:hover{
  border: solid 1px transparent;
  background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0),rgba(255, 255, 255, 0)), linear-gradient(101deg, #8f1e7d 0% , #f8636e 100%);
  background-origin: border-box;
  background-clip: content-box, border-box;
  box-shadow: 0px 100px 20px #000 inset;
  background-color: initial;
  color: white;
}
.area_Section .heading h3 {
  color: #ff943a;
}
.services_sec1 .heading h2 {
  color: #ff943a;
}
.services_sec1 .content_ul_service .service_ul li {
	margin-bottom: 20px;
	font-size: 18px;
	display: flex;
	align-items: center;
}
.services_sec1 .content_ul_service .service_ul li img{
  margin-right: 10px;
}
.services_sec2 .content_ul_service .service_ul li {
	margin-bottom: 20px;
	font-size: 18px;
	display: flex;
	align-items: center;
}
.services_sec2 .content_ul_service .service_ul li img{
  margin-right: 10px;
}
.services_sec2{
  color: #fff;
  background-color: #000000;
}
.inner_service_sec{
  color: #fff;
  background-color: #000000;

}
.bg_color1{
  background-color: #000;
  color: #fff;
}

.review_slider1 .owl-nav {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
}
.area_Section {
	background-color: #000;
	color: #fff;
}
.area-info1 .heading  h2 span{
  color: #000;
  font-weight: 200;
}
.area-info2 .heading  h2 span{
  color: #ffffff;
  font-weight: 200;
}
#inner_area_sec5 .heading  h2 span{
  color: #000000;
  font-weight: 200;
}
#inner_area_sec5 .heading h2 {
  color: #ff943a;
}
.commercial-locksmith-section h2 span{
  color: #ffffff;
  font-weight: 200;
}
.commercial-locksmith-section h2 {
  color: #ff943a;
}
.map-sec .heading h2 {
  color: #ff943a;
}
.about_img img {
	width: 715px;
	position: relative;
	margin-left: -105px;
}
.about_img1 img {
	width: 715px;
	position: relative;
	margin-left: -140px;
}
#about_us_sec {
	margin-top: -199px;
}
.about_us_sec1 {
	margin-top: -115px;
}

#bg-color-1{
  background: #dbdbdb;
}

#bg-color-2{
  background: #000000;
}
#bg-color-3{
  background: url(../image/home-bg2.jpg);
}

.review_contented .top_img {
	margin-right: 0px;
	font-size: 40px;
	background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0),rgba(255, 255, 255, 0)), linear-gradient(100deg, #e21462 0% , #f44b3e 100%);
	color: #fff;
	min-width: 95px;
	min-height: 95px;
	border-radius: 50%;
	padding: 0;
	transition: all 0.6s;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}
.review_contented .top_img  img{
  display: none;
}

.review_contented:hover .top_img {

	font-size: 40px;
	background: linear-gradient(87deg, rgba(28,196,243,1) 27%, rgba(37,240,203,1) 81%);
	color: #fff;

}


.review_and_contact .review_contented .top_img {
	margin-right: 0px;
	font-size: 40px;
	background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0),rgba(255, 255, 255, 0)), linear-gradient(100deg, #e21462 0% , #f44b3e 100%);
	color: #fff;
	min-width: 95px;
	min-height: 95px;
	border-radius: 50%;
	padding: 0;
	transition: all 0.6s;
	position: relative;
	right: -17px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.review_and_contact .review_contented {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	margin-bottom: 25px;
	gap: 37px;
}


.review_and_contact .review_contented:hover .top_img {
background: linear-gradient(87deg, rgba(28,196,243,1) 27%, rgba(37,240,203,1) 81%);
color: #fff;
transition: all 0.6s;
}

.cscw-one-checkatrade-feedback-chart-widget img {
    width: 70%!important;
    max-width: auto !important;
}
.project_photo .owl-nav {
    display: block !important;
    font-size: 76px;
    display: flex;
    justify-content: space-between;
    font-weight: 350;
}
.project_photo button.owl-prev {
    position: absolute;
    top: 40%;
	 left: -40px;
	
}
button.owl-next {
    position: absolute;
    top: 40%;
   
}
.project_photo button.owl-next {
    position: absolute;
    top: 40%;
    right: -40px;
}

/* Blog Navigation CSS */
.center {
  display: flex;
	justify-content: center;
margin-top: 40px;
}

a.page-numbers {
    color: #000000;
    padding: 10px 10px;
    text-decoration: none;
    transition: background-color 0.5s;
    border: 1px solid #ddd;
	border-radius: 5px;
    margin: 0px 5px;
    padding: 10px 15px;
   font-size: 18px;
}

a.page-numbers:hover {
    background-color: #fff;
}

span.page-numbers.current {
    background-color: #000;
    color: #fff;
    padding: 10px 15px;
    text-decoration: none;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    margin: 0px 5px;
    font-size: 18px;
        z-index: 3; 
	border-radius: 5px;
}


/* -------------------------- */
.testimonial_sec .review {
  background-color: #fff;
  border-radius: 5px;
  padding: 35px 25px;
  border: 1px solid #d5d5d5;
  box-shadow: 2px 2px 5px #d5d5d58a;

  color: #000;
}

.testimonial_sec .review h5 {
  font-family: "Inter", sans-serif;
  font-size: 17px;
  margin-bottom: 17px;
  line-height: 1.6;
  font-weight: 600;
}

.testimonial_sec .review p {
  margin-bottom: 25px;
}
.testimonial_sec .review .review_box .quote {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-direction: column;
}
.testimonial_sec .review .review_box .quote img {
  width: 70px;
}

.testimonial_sec .img-view-box{
  position: relative;
}
.testimonial_sec .img-view-box .logo-box img {
  width: 24px!important;
  border-radius: 56px;
  top: -20px;
  position: relative;
  left: 50px;
  background: #fff!important;
  padding: 5px;
}
.testimonial_sec 
.testimonial_sec .review .review_box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.testimonial_sec .review .review_box ul {
  display: flex;
  margin-bottom: 11px;
  justify-content: center;
}

.testimonial_sec .review li i {
  color: #f7b831;
  font-size: 16px;
}

.testimonial_sec .review .review_box .quote h6 {
  font-family: "Inter", sans-serif;
  margin-bottom: 0;
  font-size: 16px;
}

.testimonial_sec .owl-nav {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 15px;
  font-size: 26px;
}

#blue-bg {
  color: #000;
}
#toggleParagraph {
  opacity: 0;
  height: 0;
  overflow: hidden;
  display: none;
  transition: opacity 0.5s ease, height 0.5s ease;
}
#toggleParagraph.active {
  opacity: 1;
  display: block;
  height: auto; /* Let it expand to its content size */
}

.testimonial button.owl-next {
    position: absolute;
    top: 40%;
    right: 0;
}

.testimonial  button.owl-prev {
position: absolute;
    top: 40%;
    left: 0;
}

.testimonial.testimonial_sec {
    background: #000;
}

.testimonial.testimonial_sec .heading h2 {
    color:#fff;
}

.testimonial_sec .review .review_box .quote h6 {
    font-family: "Inter",sans-serif;
    margin-bottom: 0;
    /* font-size: 16px; */
    color: #666;
    font-size: 14px;
    font-weight: 300;
}
#blue-bg .owl-nav{ color:#000;}
.testimonial_sec 
 .owl-nav{ color:#fff;}


/* 28-01-2025 */
.inner-blog-right-sec {
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border: rgba(149, 157, 165, 0.2);
    padding: 35px 21px;
    border-radius: 8px;
}
.inner-blog-right-sec .blog-search form {
    position: relative;
    border: 1px solid #ffffffb5;
    border-radius: 5px;
    padding: 11px 13px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    margin-bottom: 22px;
}
.search-form label {
    width: 100% !important;
}
.screen-reader-text {
    border: 0;
    clip: rect(1px,1px,1px,1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal!important;
}
.blog-search {
    margin-left: 0;
}
input#search-form-1 {
    border: none;
    outline: none;
    width: 100%;
}
.inner-blog-right-sec .blog-search form input {
    border: none;
    outline: none;
    padding: 0;
    width: 100%;
}
.inner-blog-right-sec .blog-search form button {
    cursor: pointer;
    background: none;
    border: 0;
    font-size: 15px;
    color: #000000;
}
.popular-cards1 .img-top {
    margin-bottom: 12px;
}
.popular-cards1 .heading a {
    font-size: 17px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1;
}
.popular-cards1 .heading a:hover {
    color: #fff;
}

.page_space {
    margin-left: 20px;
}

.popular-cards1 a {
    color: #ff943a !important;
}
.inner_content h1 {
    color: #ff943a !important;
}
section.area_Section.contact a {
    color: #ff943a !important;
}

.area-info2 ul{
  list-style: disc ;
  padding-left: 18px;
}

.area-info2 ul li{
  margin-bottom: 10px;
}
.area-info2 ul li::marker{
  color: #f0932b;
}
.about_sec ul{
  list-style: disc ;
  padding-left: 18px;
}
 ul li{
  margin-bottom: 10px;
}
.about_sec ul li::marker{
  color: #f0932b;
}

.landlord_sec ul {
    list-style: disc;
    padding: 18px;
}
.landlord_sec ul li {
    margin-bottom: 10px;
}

.about_sec2 ul {
    list-style: disc;
    padding-left: 18px;
}

.about_sec2 ul li {
    margin-bottom: 10px;
}
.about_sec2 ul li p {
    margin-bottom: 0;
}

.why_choose_sec h4 {
    font-size: 37px;
}

.area-info2 ul {
    list-style: disc;
    padding-left: 18px;
}
.area-info2 ul li {
    margin-bottom: 10px;
}

.about_sec ul li {
    margin-bottom: 10px;
}

#boiler_service_sec {
	padding-top: 220px;
}
section#boiler_service_sec ul {
    list-style: disc;
    padding-left: 15px;
}
section#boiler_service_sec ul li::marker {
    color: #f0932b;
}

.dark {
	color: #000 !important; 
}

.new-bullets ul li::marker {
    color: #f0932b;
}
.new-bullets ul {
    list-style: disc;
    padding-left: 18px;
}

#inner-service-two, #service_three {
	background-color: #dbdbdb !important;
	color: #000 !important;
}

.page-id-2715 #service_two_sec3 {
	margin-top: 20px !important;
	background-color: #dbdbdb !important;
	color: #000 !important;
}

.page-id-2715 #service_two_sec3 .heading p {
    color: #000 !important;
}
.page-id-2715 #service_two_sec3 .heading h2 span {
    color: #ff943a !important;
}

.page-id-2839 .boiler_service_sec {
	color: #000 !important;
}
.page-id-2839 .boiler_service_sec .heading h2 span {
    color: #000;
}
.page-id-2839 .boiler_service_sec .heading ul.list-unstyled li {
    color: #000;
}

.page-id-3377 .boiler_service_sec .heading h2 span {
    color: #000 !important;
}

.page-id-3377 .boiler_service_sec .heading ul.list-unstyled li {
    color: #000 !important;
}


.main_header .nav_menu .nav_ul li.dropdown .dropdown-menu {
    position: absolute;
    z-index: 1000;
    display: none;
    min-width: 14rem;
    padding: .5rem;
    margin: 5px 0;
    font-size: 1rem;
    color: #5F656F;
    text-align: left;
    list-style: none;
    background-color: #2a2a2a;
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,0.15);
    border-radius: 0px;
}



.main_header .nav_menu .nav_ul li:hover a {
    color: #0ebcef;
   
}

.main_header .nav_menu .nav_ul li.active a {
    color: #0ebcef;
   
}

.main_header .nav_menu .nav_ul li.dropdown:hover .dropdown-menu{
    display:block;
}
.main_header .nav_menu .nav_ul li .dropdown-menu li{
margin-left: 0px;
    margin-bottom: 10px;
}
.main_header .nav_menu .nav_ul li .dropdown-menu li a::after {
    display:none;
}

.main_header .dropdown-toggle::after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
    position: relative!important;
    top: 2px;
    right: 180px!important;
    width: 0px!important;
}


.main_header .nav_menu .nav_ul li.dropdown .dropdown-menu li a {
	color: white !important;
    
}

.main_header .nav_menu .nav_ul li.dropdown .dropdown-menu li:hover a {
	color: #0ebcef !important;
    
}


.main_header .nav_menu .nav_ul li.dropdown .dropdown-menu li.active a {
	color: #0ebcef !important;
    
}

 .service-areas-grid {
  list-style: none!important;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px 20px;

}

.service-areas-grid li {
  position: relative;
  padding-left: 20px;
}

.service-areas-grid li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
}



@media (max-width: 767px) {
    .floating-quote-btn {
        bottom: 150px;
    }
}





