/* font-family */
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

/* import files */
@import url("../css/header_footer.css");

body{
  font-family: "Lato", sans-serif;
  font-weight: 400;
  line-height: 1.5;
  color: #424242;
  overflow-x: hidden;
}
/* a:hover, :hover{
  color: #009eff;
} */
a, a:hover{
  text-decoration: none;
  -webkit-transition: ease-in-out 0.5s;
  -moz-transition: ease-in-out 0.5s;
  -o-transition: ease-in-out 0.5s;
  transition: ease-in-out 0.5s;
}
h1, h2, h3, h4, h5, h6{
  font-family: "Playfair Display", serif;
  letter-spacing: 1px;
}
ul{
  list-style: none;
  padding: 0;
  margin: 0;
}
main{
  padding: 0;
}
/* home */
#homeBanner img{
  width: 100%;
  height: 100vh;
}
.bnr-img{
  position: relative;
}
.bnr-img h1{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  font-size: 54px;
  font-weight: 600;
}
.bnr-img::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: #00000054;
  width: 100%;
  height: 100%;
  display: block;
}
#homeBanner .owl-dots {
  text-align: center;
  margin: 0 0 50px 100px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-flow: column;
  gap: 20px;
}
#homeBanner .owl-dots button.owl-dot {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  width: 10px;
  height: 10px;
  margin-left: 3px;
  margin-right: 3px;
  background: #e2fcf9;
  border: none;
}
#homeBanner .owl-dots button.owl-dot.active {
  background: #C7A884;
  height: 50px;
}
/* about us */
.wd-about-area{
  padding: 80px 0;
  position: relative;
  text-align: center;
}
.wd-about-area h2{
  font-size: 36px;
  font-weight: 600;
  color: #003148;
  margin: 0 0 20px;
}
.wd-about-area p{
  font-size: 18px;
  font-weight: 400;
  color: #101010;
  margin-bottom: 12px;
}
.wd-main-title{
  font-size: 36px;
  font-weight: 600;
  color: #003148;
  padding-bottom: 22px;
  margin-bottom: 15px;
  position: relative;
  text-align: center;
  text-transform: capitalize;
}
.wd-main-title::before{
  content: '';
  position: absolute;
  width: 100px;
  height: 3px;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background: #C7A884;
}
.wd-main-title:after {
  content: '';
  width: 12px;
  height: 3px;
  position: absolute;
  left: 50%;
  bottom: 0;
  background: #fff;
  -webkit-animation: titleanimi 3s linear infinite;
  animation: titleanimi 3s linear infinite;
}
@keyframes titleanimi {
  0% {
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
  }

  100% {
    -webkit-transform: translateX(38px);
    transform: translateX(38px);
  }
}

.wd-home-services{
  /* padding: 0 0 80px; */
  background: #e7e7e7;
}
.wd-home-services .wd-main-title:after{
  background: #e7e7e7;
}
.wd-service-area{
  padding: 30px;
}
.wd-service-img img{
  width: 100%;
  height: 650px;
  object-fit: cover;
}
.wd-srvc-title{
  font-size: 30px;
  font-weight: 700;
  color: #003148;
  padding-bottom: 15px;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}
.wd-srvc-title img{
  width: 60px;
  height: 60px;
  opacity: 0.8;
  position: absolute;
  top: -35px;
  right: -50px;
}
.wd-srvc-title::after{
  content: '';
  width: 12px;
  height: 3px;
  position: absolute;
  left: 10%;
  bottom: 0;
  background: #fff;
  -webkit-animation: titleanimi 3s linear infinite;
  animation: titleanimi 3s linear infinite;
}
.wd-srvc-title::before{
  content: '';
  position: absolute;
  width: 100px;
  height: 3px;
  left: 40%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background: #C7A884;
}
.mt-50{
  margin-top: 50px;
}
.wd-service-area p{
  font-size: 18px;
  font-weight: 400;
  color: #101010;
  margin-bottom: 12px;
}
.bg-white{
  background: #fff;
}
.wd-construction-area{
  padding: 80px 0;
  position: relative;
  background: #54595f;
}
.wd-construction-area .wd-main-title{
  color: #fff;
}
.wd-construction-area p{
  font-size: 18px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 12px;
}
.wd-construct-img{
  border: 3px solid #292929;
  border-radius: 20px;
  padding: 10px;
}
.wd-construct-img img{
  border-radius: 20px;
  height: 375px;
  object-fit: cover;
}
.wd-construction-area .wd-main-title::after{
  background: rgb(84 89 95);
}
/* testimonial */
.wd-testimonial-blog{
  padding: 80px 0 100px;
}
#review{
  margin: 80px 0 0;
}
.wd-review-box{
  display: flex;
  gap: 25px;
  width: 95%;
}
.wd-review-img img{
  max-width: 55px;
  height: 55px;
  width: 55px !important;
  object-fit: contain;
  /* border-radius: 5px;
  border: 1px solid #003148; */
}
.wd-user-name h4{
  font-size: 18px;
  font-weight: 600;
  color: #003148;
  margin-bottom: 3px;
  font-family: "Lato", sans-serif;
  letter-spacing: normal;
}
.wd-user-name p{
  font-size: 14px;
  color: rgba(0, 0, 0, 0.6);
}
.wd-review-msg{
  border: 1px solid #ccc;
  padding: 25px 12px 12px 30px;
  position: relative;
}

.wd-review-msg p{
  font-size: 15px;
  font-weight: 400;
  color: #101010;
  margin: 0;
  position: relative;
}
.wd-review-msg::before{
  content: "\f10d";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 0;
  left: 0;
  margin: -4px 0px 0 4px;
  color: rgb(199 168 132 / 30%);
  font-size: 30px;
}
#review.owl-carousel .owl-nav{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 0;
  position: absolute;
  top: 0;
  left: -50px;
  right: -50px;
  bottom: 0;
  z-index: 1;
}
#review .owl-prev,
#review .owl-next{
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  transition: opacity .15s ease;
}
#review .owl-prev span, #review .owl-next span{
  background:#ccc;
  border: 2px solid #ccc;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#review .owl-prev{left: 0;}
#review .owl-next{right: 0;}

#review .owl-prev:hover span,
#review .owl-next:hover span{background: #C7A884; border: 2px solid #C7A884;}
.wd-more-info{
  position: relative;
  display: block;
  background: transparent;
  border: none;
  margin: 20px 0 0;
  padding: 5px;
  width: fit-content;
}
.wd-more-info::before, .wd-more-info::after {
  position: absolute;
  content: '';
  width: 0%;
  height: 0%;
  opacity: 0;
  transition: width 0.2s 0.15s linear, height 0.15s linear, opacity 0s 0.35s;
  background: transparent;
  z-index: 2;
}
.wd-more-info::before {
  top: 0;
  right: 0;
  border-top: 1px solid #003148;
  border-left: 1px solid #003148;
}
.wd-more-info::after {
  bottom: 0;
  left: 0;
  border-bottom: 1px solid #003148;
  border-right: 1px solid #003148;
}
.wd-more-info span {
  position: relative;
  display: inline-block;
  border: 1px solid #003148;
  transition: 0.2s 0.1s;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: capitalize;
  padding: 10px 24px;
  top: 0;
  left: 0;
  width: 100%;
  color: rgb(255, 255, 255);
  background: linear-gradient(90deg, #003148 0%, #002e43 45.80%, #002C44 100%);
}
.wd-more-info:hover::before, .wd-more-info:hover::after {
  width: 100%;
  height: 99%;
  opacity: 1;
  transition: width 0.2s linear, height 0.15s 0.2s linear, opacity 0s;
}
.wd-more-info:hover span{
  background: linear-gradient(90deg, #002C44 0%, #002e43 45.80%, #003148 100%);
}
/* whats app */
.wd_sidenav {
  z-index: 11;
  position: relative;
}
.wd_whatsapp{
  position: fixed;
  bottom: 8em;
  right: -85px;
  background: #C7A884;
  transition: 0.3s;
  padding: 10px 15px;
  width: 130px;
  text-decoration: none;
  border-radius: 5px 0px 0px 5px;
  z-index: 1;
  transition:all ease-in 0.5s;
}
.wd_sidenav a{
  display: flex;
  align-items: center;
  grid-gap: 10px;
}
.wd_sidenav a svg{
  width: 24px;
  height: 24px;
}
.wd_sidenav a span{
  color: #fff;
  font-weight: 400;
  font-size: 14px;
}
.wd_whatsapp:hover{
  right: 0;
}
.wd_whatsapp i{
  font-size: 24px;
  color: #fff;
}
/* bathroom tab */
.wd-main-bnr{
  background: url(../images/bathroom-bnr.jpg) no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  position: relative;
  height: 850px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wd-main-bnr::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgb(0 33 51 / 70%);
}
.wd-bathroom-dtls h1{
  color: #fff;
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 20px;
}
.wd-bathroom-dtls ul li{
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.wd-reqst-form{
  padding: 20px;
  background: #002e43;
  border-radius: 8px;
}
.wd-reqst-form h2{
  font-size: 26px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
}
.wd-reqst-form .form-group{
  margin-bottom: 15px;
  position: relative;
}
.wd-reqst-form .form-control{
  background: #fff;
  border: none;
  border-radius: 10px;
  height: auto;
  padding: 12px 15px;
  font-size: 15px;
  color: rgba(0, 49, 72, 0.8);
}
.wd-reqst-form .form-control:focus{
  box-shadow: none;
}
.wd-reqst-form textarea.form-control{
  height: 100px;
}
.reqst-btn{
  background: #C7A884;
  color: #fff;
  padding: 10px 24px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  display: block;
  margin: 0 auto;
  border: 1px solid #C7A884;
}
.reqst-btn:hover{
  background: transparent;
  color: #C7A884;
}
.wd-expert-area{
  padding: 80px 0;
  position: relative;
  text-align: center;
}
.wd-expert-area p{
  font-size: 18px;
  font-weight: 400;
  color: #101010;
  margin-bottom: 12px;
  text-align: center;
}
.wd-expert-area img{
  width: 70%;
  margin: 0 auto;
}
.wd-step-area{
  padding: 30px 0 80px;
  position: relative;
}
.wd-mt-80{
  margin-top: 80px;
}
.wd-step-box{
  border-radius: 4px;
  display: block;
  border: 1px solid #ededed;
  height: 100%;
}
.wd-step-box:hover{
  box-shadow: 0px 4px 0px 0px #003148;
  border-color: rgba(0, 49, 72, 0.7);
}
.wd-step-img img{
  border-radius: 4px 4px 0 0;
  height: 230px;
  width: 100%;
  object-fit: cover;
}
.wd-step-txt{
  padding: 15px;
  position: relative;
}
.wd-step-txt h4{
  font-size: 20px;
  font-weight: 700;
  color: #003148;
  margin-bottom: 15px;
  position: relative;
  text-transform: capitalize;
}
.wd-step-txt p{
  font-size: 16px;
  font-weight: 400;
  color: #101010;
  margin-bottom: 0px;
}
/* kitchen banner */
.wd-kitchen-bnr{
  background: url(../images/kitchen-tab.jpg) no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  position: relative;
  height: 850px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wd-kitchen-bnr::before,
.wd-plumbing-bnr::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgb(0 33 51 / 60%);
}
/* plumbing tab */
.wd-plumbing-bnr{
  background: url(../images/plumbing-tab.jpg) no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  position: relative;
  height: 850px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.plumbing-srvc, .bathroom-srvc, .const-srvc{
  margin: 5dvh 0 0;
}
.plumbing-srvc img, .bathroom-srvc img, .const-srvc img{
  width: 100%;
  height: 250px;
  margin-bottom: 30px;
  object-fit: cover;
}
.wd-step-label{
  font-size: 14px;
  text-transform: uppercase;
  right: 30px;
  top: -18px;
  position: absolute;
  background: #C7A884;
  color: #fff;
  padding: 5px 15px;
}
.wd-step-label::before{
  content: "";
  width: 0;
  height: 0;
  border-bottom:18px solid #C7A884;;
  border-left: 18px solid transparent;
  position: absolute;
  left: calc(-1*18px);
  top: 0;
}
/* get in touch */
.wd-get-touch-blog{
  /* background: #002133; */
  background: url(../images/get-in-touch.png) no-repeat;
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  position: relative;
}
.wd-get-area{
  display: block;
  text-align: center;
}
.wd-get-area h4{
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
  text-transform: capitalize;
}
.wd-get-area p{
  font-size: 18px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}
.wd-get-touch{
  position: relative;
  display: block;
  background: transparent;
  border: none;
  margin: 20px auto 0;
  padding: 5px;
  width: fit-content;
}
.wd-get-touch::before, .wd-get-touch::after {
  position: absolute;
  content: '';
  width: 0%;
  height: 0%;
  opacity: 0;
  transition: width 0.2s 0.15s linear, height 0.15s linear, opacity 0s 0.35s;
  background: transparent;
  z-index: 2;
}
.wd-get-touch::before {
  top: 0;
  right: 0;
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
}
.wd-get-touch::after {
  bottom: 0;
  left: 0;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
}
.wd-get-touch span {
  position: relative;
  display: inline-block;
  border: 1px solid #fff;
  transition: 0.2s 0.1s;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: capitalize;
  padding: 10px 24px;
  top: 0;
  left: 0;
  width: 100%;
  color: #003148;
  background: #fff;
}
.wd-get-touch:hover::before, .wd-get-touch:hover::after {
  width: 100%;
  height: 99%;
  opacity: 1;
  transition: width 0.2s linear, height 0.15s 0.2s linear, opacity 0s;
}
.wd-get-touch:hover span{
  background: #fff;
}
.wd-feature-blog{
  padding: 80px 0;
  position: relative;
}
.wd-mb-30{
  margin-bottom: 30px;
}
.wd-feature-box{
  background: #fff;
  box-shadow: 0px 4px 10px 3px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  height: 100%;
  padding: 30px 20px 30px;
  text-align: center;
}
.wd-feature-box:hover{
  box-shadow: 0px 4px 10px 3px rgba(0, 0, 0, 0.3);
}
.wd-feature-box::before {
  content: '';
  position: absolute;
  height: 6px;
  width: 100%;
  background: rgba(0, 49, 72, 0.6);
  bottom: 0;
  left: 0;
  width: 100%;
}
.wd-feature-box img{
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 15px;
}
.wd-feature-box h4{
  font-size: 20px;
  color: #C7A884;
  font-weight: 700;
  margin-bottom: 15px;
}
.wd-feature-box p{
  color: #101010;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 12px;
}
.wd-feature-box:hover::before{
  background: rgba(0, 49, 72, 1);
}
.wd-feature-box:hover h4{
  color: #003148;
}
.wd-step-txt ul{
  padding: 0 0 0 20px;
  margin: 8px 0 0;
  list-style: disc;
}
.wd-step-txt ul li{
  font-size: 16px;
  font-weight: 400;
  color: #101010;
  margin-bottom: 5px;
}
/*-----Contact Us-----*/
.contact_form h2{
  margin-bottom: 10px;
}
.contact_form p{
  font-size: 14px;
  color: #fff;
  margin-bottom: 20px;
}
.info_list h3{
  color: #fff;
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 20px;
}
.info_list ul li{
  display: flex;
  grid-gap: 20px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.info_list ul li:last-child{
  margin-bottom: 0;
}
.info_list ul li svg{
  width: 28px;
  height: 28px;
}
.info_list h4{
  color: #fff;
  font-size: 22px;
  margin-bottom: 10px;
}
.info_list p{
  font-size: 15px;
  color: #fff;
  margin-bottom: 0;
}