/**************************************
                General
**************************************/
:root {
    --animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    --animation-duration: 1s;
}
*,
*::before,
*::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}
html {
    font-size: 100%;
    box-sizing: inherit;
    scroll-behavior: smooth;
    height: -webkit-fill-available;
}
html.lenis, html.lenis body {
    height: auto;
  }
  
  .lenis.lenis-smooth {
    scroll-behavior: auto !important;
  }
  
  .lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
  }
  
  .lenis.lenis-stopped {
    overflow: hidden;
  }
  
  .lenis.lenis-smooth iframe {
    pointer-events: auto;
  }
html::-webkit-scrollbar {
    width: 6px;
    background-color: #018081;
}
html::-webkit-scrollbar-thumb {
    background-color: #FFC238;
    border-radius: 50rem;
}
a,
button {
    cursor: pointer;
    border: none;
    outline: none;
    user-select: none;
    background: none;
    box-shadow: none;
}
ol,
ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}
body {
    color: #000;
    font-family: "Heebo Regular";
    font-size: 20px;
    font-style: normal;
    font-weight: normal;
    line-height: 150%;
}
a,
a:hover,
a:focus {
    color: #FFC238;
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;
    text-decoration: none;
}
h1,
h2,
h3,
h4,
p {
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;
}
h1,h2{
    font-family: "Newake";
    font-weight: normal;
}
p {
    margin-top: 0;
    margin-bottom: 1rem;
}
main {
    overflow: clip;
}
img {
    max-width: 100%;
    height: auto;
    transition: all .5s;
}
.w-100 {
    width: 100% !important;
}
.mx-auto {
    margin-left: auto;
    margin-right: auto;
}
.text-center {
    text-align: center;
}
.container-fluid {
    padding: 0 40px;
}
.fixed-btn {
    position: fixed;
    right: 10px;
    bottom: 5%;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 16px;
    z-index: 99;
}
.fixed-call {
    width: 59px;
    height: 59px;
    background-color: #FFC238;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    img{
        filter: brightness(0) saturate(100%) invert(0%) sepia(91%) saturate(7429%) hue-rotate(170deg) brightness(85%) contrast(96%);
    }
}
.wp{
    width: 56px;
    height: 56px;
}
.enq-btn:hover,
.fixed-call:hover,
.wp:hover{
    scale: 1.1;
}
/* Popup */
.popup {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.64);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    z-index: 999999;
    opacity: 0;
    transform: translateY(10px);
    z-index: -1;
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
}
.popup.show {
    opacity: 1;
    transform: translateY(0px);
    z-index: 999999;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    -webkit-transition: opacity 0.5s ease, transform 0.5s ease;
    -moz-transition: opacity 0.5s ease, transform 0.5s ease;
    -ms-transition: opacity 0.5s ease, transform 0.5s ease;
    -o-transition: opacity 0.5s ease, transform 0.5s ease;
}
.popup .popup__content {
    width: 60%;
    padding: 0px;
    color: black;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-sizing: border-box;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    overflow: hidden;
    z-index: 99999;
}
.popup .popup__content .close {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 20px;
    display: block;
    width: 40px;
    height: 40px;
    opacity: 1;
    color: #000;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
    border-radius: 50% 10px 50% 50%;
    flex-direction: column;
    gap: 5px;
    background-color: #0021F5;
    transition: all .5s;
    z-index: 9;
}
.popup .popup__content .close:hover {
    background-color: #FFC238;
}
.popup .popup__content .close:hover span {
    background-color: #15222B;
}
.popup .popup__content .close span {
    cursor: pointer;
    position: fixed;
    width: 20px;
    height: 3px;
    background: #FFF;
}
.popup .popup__content .close span:nth-child(1) {
    transform: rotate(45deg);
}
.popup .popup__content .close span:nth-child(2) {
    transform: rotate(135deg);
}
.left {
   display: flex;
   align-items: center;
   justify-content: center;
   background: #FFF;
}
.left .logo{
    height: auto;
    position: relative;
    z-index: 1;
}
.right {
    padding: 30px;
    text-align: left;
    background: url(../img/plumbing-services-near-me.webp) no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
    &::after{
        position: absolute;
        content: '';
        inset: 0;
        background: #000000b8;
        z-index: -1;
    }
}
/**************************************
                Helper Class
**************************************/
.sec-gap {
    padding: 70px 0;
}
.pb-80 {
    padding-bottom: 60px;
}
.mb-10 {
    margin-bottom: 10px;
}
.mb-20 {
    margin-bottom: 20px;
}
.mb-30 {
    margin-bottom: 30px;
}
.mb-40{
    margin-bottom: 40px;
}
.mb-50 {
    margin-bottom: 50px;
}
.mb-60{
    margin-bottom: 60px;
}
.mb-70 {
    margin-bottom: 70px;
}
.mb-80{
    margin-bottom: 80px;
}
.mb-90 {
    margin-bottom: 90px;
}
.mb-100{
    margin-bottom: 100px;
}
p{
    color: #000;
    font-family: "Heebo Regular";
    font-size: 20px;
    font-style: normal;
    font-weight: normal;
    line-height: 150%;
}
.dec{
    color: #000;
    font-family: "Heebo Bold";
    font-size: 26px;
    font-style: normal;
    font-weight: normal;
    line-height: 115.385%;
}
.section-title {
    color: #151618;
    font-family: "Newake";
    font-size: 48px;
    font-style: normal;
    font-weight: normal;
    line-height: 104.167%;
    text-transform: capitalize;
}
.card-title{
    color: #FFF;
    font-family: "Newake";
    font-size: 30px;
    font-style: normal;
    font-weight: normal;
    line-height: 83.333%;
}
.primary-btn {
    border-radius: 10px;
    background: #FFC238;
    padding: 17px 52px;
    color: #000;
    font-family: "Heebo Bold";
    font-size: 22px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    overflow: hidden;
}
.primary-btn:before,
.primary-btn:after,
.secondary-btn::before,
.secondary-btn::after {
  content: "";
  z-index: -1;
  width: calc(100% + 40px);
  height: 100%;
  position: absolute;
  top: 0;
  clip-path: polygon(0 0, calc(100% - 40px) 0, 100% 100%, 0 100%);
  transition: transform 0.6s;
}
.primary-btn:before,
.secondary-btn::before {
  left: calc(-100% - 40px);
}
.primary-btn:after,
.secondary-btn::after {
  left: 100%;
  transform: rotate(180deg);
  background: #0021F5;
}
.primary-btn:hover:before,
.secondary-btn:hover:before {
  transform: translateX(100%);
}
.primary-btn:hover:after,
.secondary-btn:hover:after {
  transform: rotate(180deg) translateX(100%);
}
.primary-btn:hover {
  color: #FFF;
}
.primary-btn:focus{
    color: #000;
}
.secondary-btn{
    background: #0021F5;
    color: #FFF;
}
.secondary-btn::after {
  background: #FFC238;
}
.secondary-btn:hover {
    color: #000;
}
.secondary-btn:focus{
    color: #FFF;
}
.form-control {
    color: #000;
    font-family: "Heebo Medium";
    font-size: 18px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
    padding: 18px 12px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border: 1px solid #fff;
    width: 100%;
    outline: none;
}
textarea{
    font-family: "Heebo Medium";
}
.form-control::placeholder{
    color: #000;
}
.form-control:focus {
    border-color: #FFC238;
}
form .btn-group {
    justify-content: center;
}
form .primary-btn{
    border: 0;
    cursor: pointer;
    &:hover{
        background: #2196F3;
        color: #FFF;
    }
}
label {
    font-size: 18px;
    margin-bottom: 5px;
    display: block;
}
.italic {
    font-style: italic;
}
/**************************************
         Animation
**************************************/
/* Keyframes */
@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(25%);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}
@keyframes slideInDown {
    0% {
        opacity: 0;
        transform: translateY(-25%);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}
@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(25%);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}
@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(-25%);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}
@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}
@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale(0.75);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}
@keyframes zoomReverseIn {
    0% {
        opacity: 0;
        transform: scale(1.25);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}
@keyframes flipInY {
    0% {
        opacity: 0;
        transform: perspective(90vw) rotateY(67.50deg);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}
/* Animations */
[data-animation] {
    opacity: 0;
    animation-timing-function: var(--animation-timing-function);
    animation-fill-mode: both;
    animation-duration: var(--animation-duration);
    will-change: transform, opacity;
}
/* Disable animation of the children */
.animations-disabled,
.animations-disabled [data-animation] {
    animation: none !important;
    opacity: 1 !important;
}
/* Slide Animations */
.slideInUp {
    animation-name: slideInUp;
}
.slideInDown {
    animation-name: slideInDown;
}

.slideInLeft {
    animation-name: slideInLeft;
}
.slideInRight {
    animation-name: slideInRight;
}
/* Fade Animations */
.fadeIn {
    animation-name: fadeIn;
}
/* Zoom Animations */
.zoomIn {
    animation-name: zoomIn;
}
.zoomReverseIn {
    animation-name: zoomReverseIn;
}
/* Flip Animations */
.flipInY {
    animation-name: flipInY;
}
.flipOutY {
    animation-name: flipInY;
    animation-direction: reverse;
}
/*******************************
	Menu
*******************************/
.topbar{
    padding-block: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    p{
        color: #000;
        font-family: "Heebo Bold";
        font-size: 27px;
        font-style: normal;
        font-weight: normal;
        line-height: 118.519%;
        margin-bottom: 0;
        span{
            color: #004DBF;
        }
    }
}
.call-btn{
    gap: 19px;
    color: #0E1457;
    font-family: "Heebo Bold";
    font-size: 26px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
    font-style: normal;
    line-height: normal;
    font-style: normal;
    display: flex;
    align-items: center;
    small{
        font-size: 23px;
        color: #000;
    }
    span{
        line-height: 1.2;
    }
    &:hover{
        color: #FDAD20;
    }
    &:focus{
        color: #FFFF;
    }
}
.call-icon{
    width: 53px;
    height: 53px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFC238;
    border-radius: 50%;
}
.header-btn{
    padding-inline: 33px;
}
header {
    position: relative;
    z-index: 999;
    right: 0;
    left: 0;
    transition: all .5s;
}
.bottombar{
    background: #018081;
}
nav {
  position: relative;
  margin: 0 auto
}

#menu,
#menu .main-menu ul,
#menu .main-menu ul li,
#menu .main-menu ul li a,
#menu #head-mobile {
  border: 0;
  list-style: none;
  line-height: 1;
  display: block;
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box
}

#menu {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: start;
}

#menu>.main-menu>ul>li {
  float: left;
  padding-inline: 25px;
}

#menu>.main-menu>ul>li>a {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all .4s;
  -webkit-transition: all .4s;
  -moz-transition: all .4s;
  -ms-transition: all .4s;
  -o-transition: all .4s;
  font-family: "Heebo Medium";
  padding: 20px 0;
  display: inline-block;
  color: #FFF;
  font-size: 23px;
  font-style: normal;
  font-weight: normal;
  line-height: normal;
  text-transform: uppercase;
  &::after{
    content: '';
    position: absolute;
    bottom: 14px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #FFC238;
    scale: 0 0;
    transform-origin: left;
    transition: all .5s;
  }
}
#menu>.main-menu>ul>li:hover>a,
#menu .main-menu ul li.current-menu-item a {
  &::after{
    scale: 1 1;
  }
}
.has-sub{
  margin-right: 15px;
}
#menu>.main-menu>ul>li:hover,
#menu .main-menu ul li.current-menu-item:hover,
#menu .main-menu ul li.current-menu-item,
#menu .main-menu ul li.has-sub.current-menu-item:hover {
  background: #e9cba400 !important;
  -webkit-transition: background .3s ease;
  -ms-transition: background .3s ease;
  transition: background .3s ease;
}

#menu>.main-menu>ul>li.has-sub>a::before {
    top: 26px;
    right: -14px;
    transition: all .4s;
    content: "";
    position: absolute;
    z-index: 11;
    display: block;
    width: 8px;
    height: 8px;
    border-top: 1px solid;
    border-left: 1px solid;
    transform: rotate(225deg);
}
#menu>.main-menu>ul>li:hover>a, #menu .main-menu ul li.current-menu-item>a {
    color: #FFC238;
}
#menu .main-menu ul ul {
    position: absolute;
    left: -9999px;
    box-shadow: 0px 12px 10px 0px #0000004f;
    width: auto;
}

#menu .main-menu ul ul li {
    height: 0;
    -webkit-transition: all .25s ease;
    -ms-transition: all .25s ease;
    background: rgb(255, 255, 255);
    transition: all .25s ease
}


#menu li:hover>ul {
    left: auto
}

#menu li:hover>ul>li {
    height: 40px;
    display: block;
    align-items: center;
}

#menu ul ul ul {
    margin-left: 100%;
    top: 0
}

#menu ul ul li a {
    padding: 10px 20px;
    width: auto;
    font-size: 20px;
    font-family: "Heebo Medium";
    text-decoration: none;
    font-weight: normal;
    white-space: nowrap;
    display: block;
    color: #000;
    font-style: normal;
    line-height: normal;
}

#menu .main-menu ul ul li:last-child>a,
#menu .main-menu ul ul li.last-item>a {
    border-bottom: 0
}

#menu .main-menu ul ul li:hover a {
    color: #FFF;
    background-color: #0021F5;
}
#menu .main-menu ul ul li.has-sub ul li a{
    background-color: #fff;
    color: #000;
    &:hover{
        background-color: #D2B450;
        color: #fff;
    }

}
#menu .main-menu ul ul li.has-sub>a:after {
    position: absolute;
    top: 13px;
    right: 11px;
    width: 8px;
    height: 8px;
    display: block;
    content: '';
    border-bottom: 1px solid;
    border-right: 1px solid;
    transform: rotate(-45deg);
    transition: all .4s;
}


#menu .main-menu ul ul li.has-sub:hover,
#menu .main-menu ul li.has-sub ul li.has-sub ul li:hover {
    background: #ffffff
}

#menu ul ul ul li.active a {
    border-left: 1px solid #333
}

#menu>.main-menu>ul>li.has-sub>ul>li.active>a,
#menu .main-menu>ul ul>li.has-sub>ul>li.active>a {
    border-top: 1px solid #333
}

#menu .main-menu ul li.current-menu-item ul li a {
    color: #000;
}

#menu .main-menu ul li.current-menu-item ul li a:hover {
    color: #ffffff;
}
.stars{
    i{
        display: inline-block;
        width: 34px;
        height: 34px;
        background: url(../img/star.webp) no-repeat;
        background-size: contain;
    }
}
.google-review-text{
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: auto;
    p{
        color: #FFF;
        font-family: "Heebo Medium";
        font-size: 25px;
        line-height: normal;
        margin-bottom: 0;
    }
}
@media screen and (max-width:992px) {
    header {
        position: relative;
        width: 100%;
    }

    #menu .main-menu ul li.current-menu-item ul li a {
        color: #ffffff;
    }

    nav {
        width: 100%
    }

    #menu {
        width: 100%
    }

    #menu ul {
        width: 100%;
        display: none;
        margin-top: 60px;
    }

    #menu .main-menu {
        width: 50%;
        position: fixed;
        height: 100% !important;
        background-color: #018081;
        transform: translateX(100%);
        transition: all .4s;
        top: 0;
        right: 0;
    }

    #menu .main-menu.open {
        transform: translateX(0%);
        z-index: 9;
    }
    #menu > .main-menu > ul > li > a {
      &::after {
          width: 10%;
          bottom: 10px;
      }
    }
    #menu>.main-menu>ul>li.has-sub>a::before {
      display: none;
    }
    #menu .main-menu ul li {
        width: 100%;
    }

    #menu .main-menu ul li:hover {
        background: #363636
    }

    #menu .main-menu ul ul li,
    #menu li:hover>ul>li {
        height: auto
    }

    #menu .main-menu ul li a,
    #menu .main-menu ul ul li a {
        width: 100%;
        border-bottom: 0;
        color: #ffffff;
    }

    #menu>.main-menu>ul>li {
        float: none
    }

    #menu ul ul li a {
        padding-left: 25px
    }

    #menu ul ul li {
        background: #1b268600 !important
    }


    #menu ul ul ul li a {
        padding-left: 35px
    }

    #menu ul ul li a {
        color: #ddd;
        background: none
    }

    #menu ul ul li:hover>a,
    #menu ul ul li.active>a {
        color: #fff
    }

    #menu .main-menu ul ul {
        box-shadow: none;
    }

    #menu .main-menu ul ul,
    #menu .main-menu ul ul ul {
        position: relative;
        left: 0;
        width: 100%;
        margin: 0;
        text-align: left;
        top: 0;
        transform: unset;
        height: auto;
    }

    #menu .main-menu ul ul.open {
        transform: unset;
        background: #ffffff1a;
    }

    #menu>ul>li.has-sub>a:after,
    #menu>ul>li.has-sub>a:before,
    #menu ul ul>li.has-sub>a:after,
    #menu ul ul>li.has-sub>a:before {
        display: none
    }

    #menu #head-mobile {
        display: block;
        padding: 23px;
        color: #ddd;
        font-size: 12px;
        font-weight: 700
    }

    .hamburger {
        width: 55px;
        height: 48px;
        position: absolute;
        right: 0;
        top: -79px;
        cursor: pointer;
        z-index: 12399994;
    }

    .hamburger:after {
        position: absolute;
        top: 24px;
        right: 10px;
        display: block;
        height: 14px;
        width: 35px;
        border-top: 2px solid #018081;
        border-bottom: 2px solid #018081;
        content: '';
    }

    .hamburger:before {
        -webkit-transition: all .3s ease;
        -ms-transition: all .3s ease;
        transition: all .3s ease;
        position: absolute;
        top: 12px;
        right: 10px;
        display: block;
        height: 2px;
        width: 35px;
        background: #018081;
        content: '';
    }

    .hamburger.menu-opened:after {
        -webkit-transition: all .3s ease;
        -ms-transition: all .3s ease;
        transition: all .3s ease;
        top: 23px;
        border: 0;
        height: 2px;
        width: 35px;
        background: #ffffff;
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg)
    }

    .hamburger.menu-opened:before {
        top: 23px;
        background: #ffffff;
        width: 35px;
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg)
    }

    #menu .submenu-button {
        position: absolute;
        z-index: 99;
        right: 5px;
        top: 0;
        display: block;
        border-left: 0;
        height: 55px;
        width: 70px;
        cursor: pointer;
        background: #ffffff1a;
    }

    /* #menu .submenu-button.submenu-opened {
      background:#1b268600;
  } */

    #menu ul ul .submenu-button {
        height: 56px;
        width: 68px;
        background: rgb(255 255 255 / 3%);
    }

    #menu .submenu-button:after {
        position: absolute;
        top: 19px;
        right: 28px;
        width: 10px;
        height: 10px;
        display: block;
        content: '';
        border-bottom: 1px solid #fff;
        border-right: 1px solid #fff;
        transform: rotate(45deg);
        transition: all .4s;
    }

    #menu ul ul .submenu-button:after {
       top: 25px;
        right: 27px;
    }

    #menu ul ul .submenu-button.submenu-opened:after {
        top: 16px;
    }

    #menu .submenu-button.submenu-opened:after {
        transform: rotate(-135deg);
        top: 26px;
    }


    #menu ul ul .submenu-button:before {
        top: 12px;
        right: 16px
    }

    #menu .submenu-button.submenu-opened:before {
        display: none
    }

    #menu ul ul ul li.active a {
        border-left: none
    }

    #menu>ul>li.has-sub>ul>li.active>a,
    #menu>ul ul>li.has-sub>ul>li.active>a {
        border-top: none
    }
    #menu .main-menu ul ul li.has-sub>a:after{
        display: none;
    }
}


.flex-box {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo{
    transition: all .5s;
}
header.sticky {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    animation: slideDown 0.35s ease-out;
    background-color: #fff;
    .topbar{
        padding-block: 0;
    }
}
@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}
nav {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: auto;
    z-index: 999;
    transition: ease-in-out .4s;

}
.fix-call{
    width: 46px;
    height: 46px;
    background-color: #152B63;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 20px 5px rgba(255, 255, 255, 0.26);
    &:hover{
        transform: scale(1.1);
        background-color: #152B63;
    }
}
.img-cover{
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin-bottom: -9px;
}
/************************************* Home Page **************************************/
.banner {
    position: relative;
    .container{
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        z-index: 1;
    }
}
.banner-img{
    margin-bottom: -9px;
}
.car-boy{
    position: absolute;
    right: 0;
    bottom: 0;
}
.banner-content{
    width: 50%;
    h1{
        color: #FFF;
        font-family: "Newake";
        font-size: 78px;
        font-style: normal;
        font-weight: normal;
        line-height: 100%;
        text-transform: capitalize;
    }
    h5{
        color: #FFF;
        font-family: "Heebo Bold";
        font-size: 34px;
        font-style: normal;
        font-weight: normal;
        line-height: 123.529%;
    }
    p{
        font-size: 18px;
        color: #FFF;
        line-height: 155.556%;
    }
}
.btn-group {
    display: flex;
    gap: 25px;
}
.banner-btn{
    padding-inline: 70px;
}
/* =============== Repair =============== */
.repair{
    background: linear-gradient(174deg, #004DBF 18.34%, #007D83 72.73%);
}
.repair-card{
    text-align: center;
    p{
        color: #FFF;
        font-family: "Heebo Medium";
        font-size: 20px;
        font-style: normal;
        font-weight: normal;
        line-height: 115%;
    }
    &:hover{
        img{
            transform: rotateY(180deg);
            filter: brightness(0) saturate(100%) invert(73%) sepia(93%) saturate(405%) hue-rotate(339deg) brightness(100%) contrast(101%);

        }
        p{
            color: #FFC238;
            
        }
    }
}
.repair-icon{
    width: 93px;
    height: 93px;
    background: #053F94;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    margin-inline: auto;
}
/* =============== About =============== */
.about.sec-gap{
    padding: 70px 100px;
}
.about-img{
    position: relative;
    &::before{
        content: '';
        position: absolute;
        width: 60%;
        height: 70%;
        background: #077473;
        left: -10px;
        top: -10px;
        z-index: -1;
    }
    &::after{
        content: '';
        position: absolute;
        width: 40%;
        height: 20%;
        background: #004DBF;
        right: -15px;
        bottom: -15px;
        z-index: -1;
    }
}
/*******************************
        Counter
*******************************/
.counter-item{
    text-align: center;
    h3{
        color: #151618;
        font-family: "Newake";
        font-size: 90px;
        font-style: normal;
        font-weight: normal;
        line-height: normal;
    }
    p{
        color: #000;
        font-family: "Heebo Medium";
        font-size: 27px;
        font-style: normal;
        font-weight: normal;
        line-height: normal;
    }
}
.local-electrictian-banner{
    background: url(../img/looking-electrication-bg.webp) no-repeat;
    background-size: cover;
    border-radius: 20px;
    padding-block: 60px;
}
.local-electrictian-banner-content{
    width: 50%;
    padding-left: 60px;
    .section-title, p{
        color: #FFF;
    }
}
/*******************************
        Service
*******************************/
.service-card{
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    &:hover{
        .img-cover{
            scale: 1.1;
        }
        .service-content{
            .card-title{
                color: #FFC238;
            }
        }
    }
}
.service-content{
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(4, 3, 3, 0.32) 0%, #072562 100%);
    text-align: center;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    p{
        color: #FFF;
    }
}
.white-bar{
    width: 152.148px;
    height: 1px;
    background: #FFF;
    margin: 0 auto;
    margin-bottom: 5px;
}
.learn-more-btn{
    color: #FFC238;
    font-family: "Heebo Medium";
    font-size: 18px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
    transition: 0.5s;
    span{
        display: inline-block;
        transition: 0.5s;
    }
    &:hover{
        span{
            transform: translateX(10px);
        }
    }
}
/*******************************
        Approach
*******************************/
.approach{
    .container{
        background: #073BA6;
        padding: 50px;
        border-radius: 20px;
    }
}
.approach-content{
    padding-right: 50px;
    .section-title{
        color: #FFF;
    }
    ul{
        li{
            color: #FFF;
            font-family: "Heebo Regular";
            font-size: 20px;
            font-style: normal;
            font-weight: normal;
            line-height: 140%;
            margin-bottom: 10px;
            position: relative;
            padding-left: 35px;
            &::before{
                position: absolute;
                content: '';
                width: 26px;
                height: 26px;
                background: url(../img/tick.webp) no-repeat;
                background-size: contain;
                left: 0;
                top: 2px;
            }
        }
    }
    .primary-btn{
        &::after{
            background: #2196F3;
        }
        &:hover{
            color: #FFF;
        }
    }
    .call-btn{
        color: #FFF;
        small{
            color: #FFF;
        }
        &:hover{
            color: #2196F3;
        }
    }
    .call-icon{
        background: #2196F3;
    }
}
.approach-img{
    border-radius: 20px;
    overflow: hidden;
}
/*******************************
        Extra
*******************************/
.extra{
    background: linear-gradient(180deg, #007D83 57.64%, #0165A1 100%);
    padding-inline: 106px;
    .section-title, p{
        color: #FFF;
    }
}
.extra-box{
    text-align: center;
    background: #FFF;
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: 0.5s;
    .card-title{
        color: #000;
        font-size: 26px;
        line-height: 107.143%;
    }
    p{
        color: #000;
    }
    &:hover{
        background: #FFC238;
        .card-title{
            color: #007D83;
        }
    }
}
.extra-icon{
    width: 116px;
    height: 116px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #007D83;
    border-radius: 50%;
    border: 7px solid #AFE4F0;
    margin-inline: auto;
}
/*******************************
        Best Plumb
*******************************/
.best-plumb{
    padding-top: 70px;
    padding-inline: 106px;
    padding-bottom: 0;
}
.best-plumb-box{
    background: url(../img/best-plumb-bg.webp) no-repeat;
    background-size: cover;
}
.best-plumb-box-content{
    margin-left: auto;
    padding-block: 95px;
    width: 50%;
    padding-right: 50px;
    .section-title, p{
        color: #FFF;
    }
    .primary-btn{
        img{
            filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(14%) hue-rotate(226deg) brightness(90%) contrast(103%);
        }
        &:hover{
            img{
                filter: unset;
            }
        }
    }
}
/*******************************
        Seasonal
*******************************/
.seasonal-box{
    border-radius: 30px;
    background: #073BA6;
    padding: 25px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: 0.5s;
    .card-title{
        font-size: 25px;
        line-height: 120%;
    }
    p{
        color: #FFF;
        font-size: 16px;

    }
    &:hover{
        background: #FFC238;
        .card-title, p{
            color: #007D83;
        }
        .seasonal-icon{
            background: #073BA6;
            img{
                filter: brightness(0) saturate(100%) invert(82%) sepia(70%) saturate(698%) hue-rotate(326deg) brightness(100%) contrast(102%);
                transform: rotateY(180deg);
            }
        }
    }
}
.seasonal-icon{
    width: 73px;
    height: 73px;
    background: #24C9DD;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-inline: auto;
    transition: 0.5s;
}
.seasonal{
    .local-electrictian-banner{
        padding-block: 40px;
        background: url(../img/immediate-help-bg.webp) no-repeat;
        background-size: cover;
    }
    .local-electrictian-banner-content{
        width: 40%;
        margin-left: auto;
        padding-left: 0;
        padding-right: 50px;
        .section-title, p{
            color: #000;
        }
        .primary-btn{
            padding-inline: 32px;
            &::after {
                background: #2196F3;
            }
            &:hover {
                color: #FFF;
            }
        }
    }
}
/*******************************
        Testimonials
*******************************/
.testimonials{
    position: relative;
    background: url(../img/testimonial-bg.webp) no-repeat;
    background-size: cover;
    .container-fluid{
        padding-inline: 100px;
    }
    .section-title, p{
        color: #FFF;
    }
}
.testi-card{
    background: #FFF;
    border-radius: 20px;
    padding: 30px;
    padding-bottom: 60px;
    p{
        color: #000;
    }
}
.admin-dtls{
    display: flex;
    align-items: center;
    gap: 20px;
}
.user-name{
    color: #000;
    font-family: "Newake";
    font-size: 28px;
    font-style: normal;
    font-weight: normal;
    line-height: 107.143%;
    text-transform: capitalize;
}
.slick-slide{
    margin: 0 15px;
}
.slick-list{
    margin: 0 -15px;
}
.slick-dots{
    bottom: -60px;
    li{
        width: 13px;
        height: 12px;
        border-radius: 13px;
        background: #D9D9D9;
        transition: 0.5s;
        button{
            opacity: 0;
        }
    }
    .slick-active{
        width: 79px;
        height: 12px;
    }
}
/*******************************
    Latest News
*******************************/
.news-box{
    height: 100%;
    border-radius: 30px;
    background: #F3F3F3;
    &:hover{
        .news-img{
            img{
                transform: scale(1.1);
            }
        }
        .news-title{
            color: #073BA6;
        }
    }
}
.news-img{
    border-radius: 30px;
    overflow: hidden;
}
.news-date{
    color: #073BA6;
    font-family: "Heebo Regular";
    font-size: 17px;
    font-style: normal;
    font-weight: normal;
    line-height: 176.471%;
    display: flex;
    align-items: center;
    gap: 7px;
    transition: 0.5s;
}
.news-title{
    color: #000;
    font-family: "Newake";
    font-size: 25px;
    font-style: normal;
    font-weight: normal;
    line-height: 120%;
    text-transform: capitalize;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.news-content{
    padding: 20px;
    p{
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
}
/*******************************
Faq 
*******************************/
.faq{
   background: url(../img/faq-bg.webp) no-repeat;
   background-size: cover;
}
.accordion__item {
    margin: 20px auto;
    border-radius: 12px;
    transition: .5s;
    position: relative;
    background: #FFF;
}
.accordion__item .accordion__title {
    position: relative;
    display: block;
    color: #000;
    font-family: "Heebo Bold";
    font-size: 22px;
    font-style: normal;
    font-weight: normal;
    line-height: 168.182%;
    padding: 22px 28px;
    padding-right: 65px;
    margin-bottom: 0px;
    text-decoration: none;
    -webkit-transition: background-color .2s;
    transition: background-color .2s;
    cursor: pointer;
    transition: all .5s;
    border-radius: 8px;
}
.accordion__title.accordion-active {
    padding-bottom: 15px;
}
.accordion__title::after {
    content: '+';
    position: absolute;
    width: 41px;
    height: 41px;
    background: #07499A;
    border-radius: 50%;
    color: #FFF;
    right: 16px;
    top: 20px;
    font-size: 20px;
    line-height: normal;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .5s;
}
.accordion__title.accordion-active::after{
    transform: rotate(180deg);
    content: '-';
}
.accordion__item .accordion__content {
    padding: 28px;
    margin-bottom: 0;
    padding-right: 55px;
    display: none;
    padding-top: 0;
    p{
        margin-bottom: 0;
    }
}
/****************************
        Get A Quote
******************************/
.get-form-content{
    background: url(../img/reliable-service-bg.webp) no-repeat;
    background-size: cover;
    padding: 70px 50px;
    border-radius: 20px;
    position: relative;
    height: 100%;
    .section-title{
        color: #FFF;
        width: 50%;
    }
    .primary-btn{
        padding-inline: 32px;
        &::after{
            background: #2196F3;
        }
        &:hover{
            color: #FFF;
        }
    }
    .call-btn{
        width: 35%;
        display: block;
        text-align: center;
        color: #000;
        position: absolute;
        bottom: 50px;
        left: 30px;
        font-size: 30px;
        small{
            font-size: 26px;
        }
        &:hover{
            color: #002657;
        }
    }
    .call-icon{
        width: 96px;
        height: 96px;
        margin-inline: auto;
        background: #002657;
    }
}
.reliable-service-boy{
    position: absolute;
    bottom: 0;
    right: -20px;
}
.get-form{
    background: url(../img/get-in-bg.webp) no-repeat;
    background-size: cover;
    padding: 70px 90px;
    border-radius: 20px;
    p{
        color: #FFF;
    }
}
.title {
    color: #FFF;
    font-family: "Newake";
    font-size: 55px;
    font-style: normal;
    font-weight: normal;
    line-height: 98.182%;
    text-transform: capitalize;
}
.get-form-section{
    padding-inline: 106px;
    .local-electrictian-banner{
        padding-block: 35px;
        background: url(../img/local-plumber-ready-bg.webp) no-repeat;
        background-size: cover;
    }
    .local-electrictian-banner-content {
        width: 44%;
        padding-left: 0;
        margin-left: auto;
        padding-right: 50px;
        .primary-btn{
            padding-inline: 32px;
            img{
                filter: brightness(0) saturate(100%) invert(0%) sepia(91%) saturate(7429%) hue-rotate(170deg) brightness(85%) contrast(96%);
            }
            &::after{
                background: #2196F3;
            }
            &:hover{
                img{
                    filter: none;
                }
            }
        }
    }
}
/****************************
        Footer
******************************/
footer {
    background: url(../img/footer-bg.webp) no-repeat;
    background-size: cover;
    padding-top: 60px;
    padding-bottom: 90px;
}
.social-media{
    display: flex;
    align-items: center;
    gap: 15px;
    a{
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: #FFF;
        transition: all .5s;
        &:hover{
            background: #FFC238;
        }
    }
}
.footer-title{
    color: #FFF;
    font-family: "Newake";
    font-size: 25px;
    font-style: normal;
    font-weight: normal;
    line-height: 236%;
}
.footer-sub-title{
    color: #FFF;
    font-family: "Roboto SemiBold";
    font-size: 20px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
}
footer p,
footer p a,
footer ul li a {
    color: #FFF;
    font-family: "Heebo Regular";
    font-size: 20px;
    font-style: normal;
    font-weight: normal;
    line-height: 190%;
}
footer p{
    line-height: 150%;
}
footer .col-lg-3 p,
footer .col-lg-3 p a{
    position: relative;
    padding-left: 50px;
}
footer .col-lg-3 p.footer-link{
    padding-left: 0;
}
footer .col-lg-3 p a{
    line-height: 3;
}
.footer-icon{
    width: 37px;
    height: 37px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #FFC238;
    position: absolute;
    left: 0;
    top: 0;
}
.copyright {
    text-align: center;
    margin-top: 50px;
    p{
        margin: 0;
    }
}
/*******************************
  Footer Menu
********************************/
.mobile-bottom-menu {
    background: bottom/cover no-repeat #4D2D8C;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 99;
    display: none;
    box-shadow: 0 -5px 9px 0 #b1b1b124
}

.mobile-bottom-menu ul li {
    display: inline-block;
    height: 60px;
    padding-top: 6px;
    position: relative;
    width: 60px
}

.mobile-bottom-menu ul {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding-inline:10px}

.whatsapp {
    position: relative;
    width: 54px
}

.whatsapp .f-wp {
    position: absolute;
    left: 0;
    right: 0;
    display: block;
    width: 54px;
    height: 54px;
    top: -40px
}

.icon-box:after,.icon-box:before {
    content: '';
    left: 0;
    width: 100%;
    opacity: 0
}

.mobile-bottom-menu ul li a {
    width: 20%;
    font-size: 15px;
    color: #fff;
    line-height: 6px
}

.mobile-bottom-menu ul li a img {
    filter: brightness(0) saturate(100%) invert(98%) sepia(47%) saturate(0%) hue-rotate(285deg) brightness(114%) contrast(100%);
    margin-bottom: -5px
}

.mobile-bottom-menu ul li.active a img,.mobile-bottom-menu ul li:hover a img {
    filter: brightness(0) saturate(100%) invert(77%) sepia(74%) saturate(1464%) hue-rotate(350deg) brightness(100%) contrast(106%);
}

.f-wp img {
    border-radius: 50%;
    box-shadow: 0 5px 0 -.88px #0000003d;
    margin-bottom: -6px
}

.mobile-bottom-menu ul li.active::before {
    content: '';
    background-color: #FFC107;
    position: absolute;
    height: 3px;
    top: -1px;
    left: 8px;
    right: 8px
}
.mobile-bottom-menu ul li.active a{
    color: #FFC107;
}
/*******************************
  inner Page
********************************/
/* About page */
.inner-banner{
    &::after{
        position: absolute;
        content: '';
        inset: 0;
        opacity: 0.71;
        background: linear-gradient(90deg, #000 42.42%, rgba(102, 102, 102, 0.00) 86.5%);
    }
}
.quality-about{
    background: linear-gradient(174deg, #004DBF 18.34%, #007D83 72.73%);
    .about-img{
        display: flex;
        gap: 25px;
        padding-bottom: 60px;
        img{
            width: 45%;
        }
        img:nth-child(2){
            transform: translateY(50px);
        }
        &::before, &::after{
            display: none;
        }
    }
    .section-title, .dec, p{
        color: #FFF;
    }
    .call-btn{
        color: #FFF;
        small{
            color: #FFF;
        }
    }
}
.miss-viss{
    position: relative;
}
.miss-vis-content-box{
    position: relative;
    z-index: 2;
}
.miss-vis-card{
    position: relative;
    padding-right: 120px;
    border-bottom: 1px solid #ADADAD;
    padding-block: 30px;
    z-index: 1;
    &::after{
        position: absolute;
        content: '';
        scale: 0 1;
        width: 104%;
        height: 100%;
        left: -25px;
        top: 0;
        background-color: #0021F5;
        z-index: -1;
        transform-origin: right;
        transition: 0.5s;
    }
    &:hover{
        &::after{
            scale: 1 1;
        }
        .section-title, p{
            color: #FFF;
        }
        .miss-vis-icon{
            img{
                transform: rotateY(180deg);
            }
        }
    }
}
.miss-vis-content-box{
    .miss-vis-card:nth-child(2){
        &:hover{
            &::after{
                background-color: #007D83;
            }
        }
    }
    .miss-vis-card:nth-child(3){
        &:hover{
            &::after{
                background-color: #FFC238;
            }
            .section-title, p{
                color: #000;
            }
        }
    }
}
.miss-vis-icon{
    width: 158px;
    height: 158px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #0021F5;
    border: 12px solid #FFF;
    position: absolute;
    right: -75px;
    top: 50%;
    transform: translateY(-50%);
}
.vision-icon{
    background: #007D83;
}
.goal-icon{
    background: #FFC238;
}
.mis-vis-delivery-box{
    width: 50%;
    position: absolute;
    right: 0;
    top: 0;
    height: 932px;
    background: url(../img/miss-viss-bg.webp) no-repeat;
    background-size: cover;
    z-index: 1;
    padding: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    .section-title, p{
        color: #FFF;
    }
    .section-title{
        font-size: 62px;
    }
}
.about-counter{
    .container{
        border-radius: 30px;
        background: #FFF;
        box-shadow: 0 4px 46px 0 rgba(0, 0, 0, 0.14);
    }
}
.about-service{
    padding-inline: 106px;
}
.about-service-card{
    border-radius: 20px;
    overflow: hidden;
    transition: 0.5s;
    img{
        width: 100%;
        margin-bottom: -1px;
    }
    .card-title{
        text-align: left;
        background: #073BA6;
        padding: 30px 20px;
        font-size: 26px;
        transition: 0.5s;
    }
    &:hover{
        .card-title{
            background: #FFC238;
            color: #000;
        }
    }
}
.slick-arrow{
    width: 50px;
    height: 50px;
    border: 1px solid #B9B1B1;
    background: transparent;
    border-radius: 50%;
    transition: 0.5s;
    z-index: 1;
    top: unset;
    bottom: -100px;
    left: 50.5%;
    &::before{
        position: absolute;
        content: '';
        inset: 0;
        background: url(../img/slider-arrow.webp) no-repeat;
        background-position: center;
        background-size: 21px;
    }
    &:hover{
        background: #FFC238;
        border-color: #FFC238;
    }
}
.slick-prev{
    left: 46.5%;
    &::before{
        transform: rotateY(180deg)
    }
}
.about-approach{
    background: linear-gradient(180deg, #007D83 57.64%, #0165A1 100%);
    .container{
        background: none;
        padding: 0;
        border-radius: 0;
    }
    .dec, p{
        color: #FFF;
    }
   .approach-content {
        & ul {
            & li {
                &::before {
                    background: url(../img/white-tick.webp) no-repeat;
                    background-size: contain;
                }
            }
        }
    }
    .approach-img{
        border-radius: 0;
    }
}
.why-choose{
    background: #FFF;
    padding-inline: 0;
    .section-title, p{
        color: #151618;
    }
    .extra-box {
        background: #D1F4F4;
        padding: 20px;
    }
    .extra-icon{
        border-color: #007D83;
    }
}
.about-plumb{
    .best-plumb-box{
        background: url(../img/about-company-bg.webp) no-repeat;
        background-size: cover;
    }
}
/* Contact Page */
.get-in-touch-icon{
    width: 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #053F94;
    position: absolute;
    left: 0;
    top: 0;
    img{
        filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7489%) hue-rotate(114deg) brightness(118%) contrast(100%);
    }
}
.get-in-touch-card{
    position: relative;
    padding-left: 80px;
    h4{
        color: #000;
        font-family: "Newake";
        font-size: 23px;
        font-style: normal;
        font-weight: normal;
        line-height: 182.609%;
        text-transform: capitalize;
    }
    p, p a{
        color: #000;
        font-family: "Heebo Regular";
        font-size: 20px;
        font-style: normal;
        font-weight: normal;
        line-height: normal;
    }
    p a:hover{
        color: #053F94;
    }
}
.get-in-touch-img{
    position: relative;
    padding-top: 10px;
    padding-right: 10px;
    &::after{
        position: absolute;
        content: '';
        width: 90%;
        height: 90%;
        background: #053F94;
        top: 0;
        right: 0;
        z-index: -1;
    }
}
.send-us{
    position: relative;
    margin-bottom: 290px;
    .container{
        position: absolute;
        inset: 0;
    }
    .section-title, p{
        color: #FFF;
    }
}
.send-us-form{
    border-radius: 40px;
    background: #FFF;
    box-shadow: 0 4px 54px 0 rgba(0, 0, 0, 0.11);
    padding: 50px;
    .form-control{
        border-radius: 12px;
        background: #F4F4F4;
        padding: 22px 18px;
    }
    .form-control:focus{
        border-color: #053F94;
    }
}
.location-map{
    iframe{
        width: 100%;
        border: none;
        border-radius: 30px;
        height: 560px;
    }
}
/* Service Page */
.service-about{
    .about-img{
        height: 100%;
        &::before {
            width: 50%;
            height: 75%;
        }
        &::after {
            width: 45%;
            height: 75%;
            right: -11px;
            bottom: -11px;
            z-index: 1;
        }
    }
}
.service-about2{
    position: absolute;
    right: 0;
    bottom: 0;
    width: 50%;
    z-index: 2;
}
.service-about{
    .about-service-card{
        img{
            margin-bottom: -10px;
            height: 388px;
            object-fit: cover;
        }
        .card-title {
            background: linear-gradient(90deg, #0021F5 0%, #018081 100%);
        }
        &:hover{
            transform: translateY(-10px);
            .card-title{
                color: #FFC238;
            }
        }
    }
}
.service-approach{
    background: #FFF;
    position: relative;
    .approach-img{
        border-radius: 0;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 48%;
        height: 95%;
    }
    .approach-content {
        padding-right: 0;
        .section-title{
            color: #151618;
        }
        p{
            color: #000;
        }
    }
}
.service-approach-card{
    position: relative;
    padding-left: 80px;
    h3{
        color: #000;
        font-family: "Newake";
        font-size: 23px;
        font-style: normal;
        font-weight: normal;
        line-height: 182.609%;
        text-transform: capitalize;
    }
}
.service-approach-icon{
    width: 62px;
    height: 62px;
    background: #053F94;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0;
}
.request-service{
    .local-electrictian-banner {
        background: url(../img/request-bg.webp) no-repeat;
        background-size: cover;
    }
    .local-electrictian-banner-content {
        .primary-btn {
            background: #004DBF;
        }
    }
}
.service-plumb{
    padding-inline: 0;
    .best-plumb-box {
        background: url(../img/service-support-bg.webp) no-repeat;
        background-size: cover;
    }
    .best-plumb-box-content {
        padding: 100px 0;
        width: 100%;
        
    }
}
.service-expect{
    .extra-icon{
        border-color: #FFF;
        outline: 1px dashed #2D2A2A
    }
    .extra-box {
        h5{
            color: #0021F5;
            font-family: "Heebo Medium";
            font-size: 25px;
            font-style: normal;
            font-weight: normal;
            line-height: 108%;
        }
    }
}
.service-tips{
    .container{
        background: linear-gradient(174deg, #004DBF 18.34%, #007D83 72.73%);
    }
    .approach-content{
        padding-right: 0;
        padding-left: 50px;
        p{
            color: #fff;
        }
    }
}
.gallery{
    padding-inline: 106px;
}
.gallery-item{
    display: block;
    overflow: hidden;
    img{
        margin-bottom: -8px;
    }
    &:hover{
        img{
            scale: 1.1;
        }
    }
}
.area{
    padding-bottom: 70px;
    position: relative;
    
    .location-map{
        position: absolute;
        width: 47%;
        height: 91%;
        left: 0;
        iframe{
            height: 100%;
            border-radius: 0;
        }
    }
}
.area-content{
    ul{
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 15px;
        li{
            width: 48%;
            display: flex;
            align-items: center;
            gap: 6px;
            border-radius: 12px;
            background: #DBF3F3;
            padding: 20px;
            color: #000;
            font-family: "Heebo Regular";
            font-size: 23px;
            font-style: normal;
            font-weight: normal;
            line-height: 182.609%;
            text-transform: capitalize;
            transition: 0.5s;
            &:hover{
                background: #FFC238;
            }
        }
    }
}
.free-estimate{
    .get-form{
        background: #073BA6;
        border-radius: 0;
    }
}
.free-estimate-img{
    height: 100%;
}
.service-form-estimate{
    .local-electrictian-banner {
        background: url(../img/request-bg2.webp) no-repeat;
        background-size: cover;
    }
}
/* Blog Page */
.read-more-btn{
    color: #0021F5;
    font-family: "Heebo Bold";
    font-size: 22px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    &:hover{
        color: #018081;
        img{
            transform: translateX(10px);
            filter: brightness(0) saturate(100%) invert(24%) sepia(54%) saturate(5036%) hue-rotate(167deg) brightness(92%) contrast(99%);
        }
    }
}
/* Blog Details Page */
.blog-details-banner{
    &::after {
        opacity: 0.81;
        background: #000;
    }
}
.blog-details-img{
    border-radius: 20px;
    overflow: hidden;
}
.blog-details{
    .section-title{
        color: #000;
        font-family: "Newake";
        font-size: 48px;
        font-style: normal;
        font-weight: normal;
        line-height: 104.167%;
        text-transform: capitalize;
    }
    h3, h4{
        color: #000;
        font-family: "Newake";
        font-size: 30px;
        font-style: normal;
        font-weight: normal;
        line-height: 140%;
        text-transform: capitalize;
    }
    h4{
        font-size: 26px;
    }
    ul, ol{
        padding-left: 20px;
        li{
            color: #000;
            font-family: "Heebo Regular";
            font-size: 20px;
            font-style: normal;
            font-weight: normal;
            line-height: 145%;
            margin-bottom: 20px;
            span{
                font-family: Newake;
                font-size: 23px;
                line-height: 182.609%;
                text-transform: capitalize;
            }
        }
    }
    ol{
        list-style-type: decimal;
        li::marker{
            font-size: 26px;
            color: #0021F5;
        }
    }
    ul{
        list-style-type: disc;
        li::marker{
            font-size: 26px;
            color: #0021F5;
        }
    }
    .side-box-title{
        color: #FFF;
        font-family: "Newake";
        font-size: 27px;
        font-style: normal;
        font-weight: normal;
        line-height: 81.481%;
        text-transform: capitalize;
        background: #0021F5;
        padding: 17px 20px;
        border-radius: 6px 6px 0 0;
    }
}
.pegination{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    a{
        display: flex;
        align-items: center;
        justify-content: end;
        gap: 19px;
        border-radius: 30px;
        background: #F3F3F3;
        padding: 20px;
        p{
            color: #000;
            font-family: "Heebo Medium";
            font-size: 20px;
            font-style: normal;
            font-weight: normal;
            line-height: 150%;
            text-transform: capitalize;
            display: -webkit-box;
            -webkit-line-clamp: 1;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        img{
            width: 155px;
            height: 105px;
            object-fit: cover;
            border-radius: 12px;
        }
        &:hover{
            background: #0021F5;
            p{
                color: #FFF;
            }
        }
    }
    .next{
        .pegi-content{
            text-align: left;
        }
    }

}
.pegi-content{
    text-align: right;
}
.pr-nx-btn{
    display: inline-block;
    padding: 5px 15px;
    border-radius: 10px;
    background: #F7AE22;
    color: #000;
    font-family: "Heebo Medium";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 125%;
    text-transform: capitalize;
}
.side-box{
    border-radius: 0 0 30px 30px;
    background: #FFF;
    box-shadow: 0 4px 22px 0 rgba(0, 0, 0, 0.11);
    overflow: hidden;
    padding-bottom: 20px;
    ul{
        list-style-type: none;
        padding-inline: 20px;
        li{
            margin-bottom: 0;
            a{
                display: block;
                color: #000;
                font-family: "Heebo Regular";
                font-size: 18px;
                font-style: normal;
                font-weight: normal;
                line-height: 77.778%;
                text-transform: capitalize;
                padding-block: 20px;
                border-bottom: 1px solid #C4C2C2;
                &:hover{
                    color: #0021F5;
                    border-color: #0021F5;
                }
            }
        }
    }
}
.blog-box-item{
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 10px 20px;
    transition: 0.5s;
    img{
        width: 116px;
        height: 95px;
        object-fit: cover;
    }
    &:hover{
        background: #FFC238;
    }
}
.blog-box-item-content{
    h4{
        color: #000;
        font-family: "Newake";
        font-size: 16px;
        font-style: normal;
        font-weight: normal;
        line-height: 137.5%;
        text-transform: capitalize;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        margin-bottom: 6px;
    }
    p{
        font-size: 15px;
        color: #141D5F;
        margin-bottom: 0;
    }
}
/*******************************
  Responsive
********************************/
@media (max-width: 1600px),
(max-width: 1536px){
    .car-boy {
        width: 820px;
    }
    .about.sec-gap {
        padding: 70px 50px;
    }
    .extra {
        padding-inline: 56px;
    }
    .best-plumb {
        padding-inline: 56px;
    }
    .testimonials {
        .container-fluid {
            padding-inline: 50px;
        }
    }
    .get-form-section {
        padding-inline: 56px;
    }
    .reliable-service-boy {
        width: 459px;
    }
    .get-form-content {
        .call-btn {
            width: 40%;
        }
    }
    .get-form {
        padding: 50px 70px;
    }
    .get-form-content {
        padding: 60px 40px;
    }
    .quality-about {
        & .about-img {
            img {
                width: 48%;
            }
        }
    }
    .about-service {
        padding-inline: 56px;
    }
    .send-us {
        margin-bottom: 395px;
    }
    .location-map {
        iframe {
            height: 460px;
        }
    }
    .service-about2 {
        width: 60%;
    }
    .service-about1{
        width: 70%;
    }
    .service-about {
        & .about-img {
            &::before {
                height: 73%;
            }
            &::after {
                height: 71%;
            }
        }
    }
    .service-about {
        & .about-service-card {
            img {
                height: 340px;
            }
        }
    }
    .gallery {
        padding-inline: 56px;
    }
}
@media (max-width: 1440px),
(max-width: 1366px) {
    p{
        font-size: 16px;
    }
    .topbar {
        padding-block: 5px;
        p {
            font-size: 21px;
        }
    }
    .call-btn{
        font-size: 22px;
        gap: 11px;
        small{
            font-size: 19px;
        }
    }
    .call-icon{
        width: 49px;
        height: 49px;
    }
    .primary-btn{
        font-size: 18px;
        padding: 14px 42px;
    }
    #menu>.main-menu>ul>li>a {
        padding: 15px 0;
        font-size: 18px;
    }
    #menu ul ul li a {
        font-size: 16px;
    }
    #menu li:hover>ul>li {
        height: 36px;
    }
    #menu>.main-menu>ul>li.has-sub>a::before {
        top: 18px;
    }
    .header-btn {
        padding-inline: 22px;
    }
    .google-review-text {
        p {
            font-size: 21px;
        }
    }
    .stars {
        i {
            width: 24px;
            height: 24px;
        }
    }
    .banner-content {
        h1 {
            font-size: 68px;
        }
        h5{
            font-size: 30px;
        }
    }
    .logo{
        width: 151px;
    }
    .banner-btn {
        padding-inline: 55px;
    }
    .car-boy {
        width: 720px;
    }
    .repair-icon {
        width: 83px;
        height: 83px;
        padding: 25px;
    }
    .repair-card {
        p {
            font-size: 16px;
        }
    }
    .section-title {
        font-size: 38px;
    }
    .dec {
        font-size: 22px;
    }
    .mb-60 {
        margin-bottom: 40px;
    }
    .counter-item {
        h3 {
            font-size: 70px;
        }
        p {
            font-size: 22px;
        }
    }
    .card-title {
        font-size: 25px;
    }
    .learn-more-btn {
        font-size: 15px;
    }
    .white-bar {
        width: 112.148px;
        margin-bottom: 3px;
    }
    .approach {
        .container {
            padding: 40px;
        }
    }
    .approach-content {
        & ul {
            li {
                font-size: 16px;
                padding-left: 28px;
                &::before {
                    width: 20px;
                    height: 20px;
                }
            }
        }
    }
    .extra-box {
        padding: 16px;
        .card-title {
            font-size: 20px;
        }
    }
    .extra-icon {
        width: 96px;
        height: 96px;
        padding: 20px;
        border: 4px solid #AFE4F0;
    }
    .mb-30{
        margin-bottom: 15px;
    }
    .mb-20{
        margin-bottom: 10px;
    }
    .best-plumb-box-content {
        padding-block: 40px;
        padding-right: 30px;
    }
    .extra {
        padding-inline: 36px;
    }
    .best-plumb {
        padding-inline: 36px;
    }
    .about.sec-gap {
        padding: 70px 30px;
    }
    .seasonal-box {
        padding: 20px;
        .card-title {
            font-size: 20px;
        }
    }
    .seasonal-icon {
        width: 63px;
        height: 63px;
        padding: 15px;
    }
    .testimonials {
        .container-fluid {
            padding-inline: 30px;
        }
    }
    .admin-dtls{
        img{
            width: 69px;
        }
    }
    .user-name{
        font-size: 24px;
    }
    .testi-card {
        padding: 20px;
        padding-bottom: 30px;
    }
    .news-date {
        font-size: 15px;
    }
    .news-title{
        font-size: 21px;
    }
    .accordion__item .accordion__title{
        font-size: 18px;
        padding: 15px 20px;
        padding-right: 65px;
    }
    .accordion__item .accordion__content {
        padding: 20px;
        padding-right: 55px;
        padding-top: 0;
    }
    .accordion__title.accordion-active {
        padding-bottom: 10px;
    }
    .accordion__item {
        margin: 15px auto;
    }
    .accordion__title::after {
        width: 31px;
        height: 31px;
        font-size: 16px;
        top: 15px;
    }
    .title {
        font-size: 44px;
    }
    .form-control {
        font-size: 16px;
        padding: 16px 10px;
    }
    .get-form-content {
        .call-btn{
            font-size: 25px;
            small {
                font-size: 22px;
            }
        }
        .call-icon {
            width: 86px;
            height: 86px;
            padding: 26px;
        }
    }
    .reliable-service-boy {
        width: 369px;
    }
    .get-form {
        padding: 40px 50px;
    }
    footer {
        padding-top: 40px;
        padding-bottom: 70px;
    }
    .footer-logo{
        width: 191px;
    }
    footer p, footer p a, footer ul li a {
        font-size: 16px;
    }
    .footer-title {
        font-size: 21px;
    }
    .footer-icon {
        width: 33px;
        height: 33px;
        padding: 9px;
    }
    .miss-vis-icon{
        width: 138px;
        height: 138px;
        padding: 22px;
        right: -65px;
    }
    .miss-vis-card {
        padding-right: 80px;
        padding-block: 20px;
    }
    .mis-vis-delivery-box {
        height: 703px;
        padding: 95px;
        .section-title {
            font-size: 50px;
        }
    }
    .about-service-card {
        .card-title {
            padding: 20px 20px;
            font-size: 20px;
        }
    }
    .slick-arrow {
        left: 51%;
    }
    .slick-prev {
        left: 45%;
    }
    .get-in-touch-icon {
        width: 44px;
        height: 44px;
        padding: 14px;
    }
    .get-in-touch-card {
        padding-left: 55px;
        h4 {
            font-size: 19px;
        }
    }
    .send-us-form {
        padding: 35px;
        .form-control {
            padding: 17px 13px;
        }
    }
    .send-us {
        margin-bottom: 325px;
    }
    .location-map {
        iframe {
            height: 360px;
        }
    }
    .get-in-touch-card {
        & p, & p a {
            font-size: 16px;
        }
    }
    .read-more-btn {
        font-size: 18px;
    }
    .service-about2 {
        width: 52%;
    }
    .service-about {
        & .about-service-card {
            img {
                height: 285px;
            }
        }
    }
    .service-approach-card {
        h3 {
            font-size: 19px;
        }
    }
    .service-expect {
        & .extra-box {
            h5 {
                font-size: 21px;
            }
        }
    }
    .area-content {
        & ul {
            li {
                font-size: 20px;
                padding: 15px;
                img{
                    width: 18px;
                }
            }
        }
    }
    .blog-details {
        .section-title {
            font-size: 38px;
        }
        h3, h4{
            line-height: 110%;
        }
        h3{
            font-size: 26px;
        }
        h4{
            font-size: 22px;
        }
        ul, & ol {
            li {
                font-size: 16px;
                margin-bottom: 15px;
                span{
                    font-size: 19px;
                }
            }
        }
        ol {
            li::marker {
                font-size: 22px;
            }
        }
        ul {
            & li::marker {
                font-size: 22px;
            }
        }
        .side-box-title {
            font-size: 23px;
        }
    }
    .pegination {
        & a {
            p {
                font-size: 16px;
            }
            img {
                width: 125px;
                height: 85px;
                object-fit: cover;
                border-radius: 12px;
            }
        }
    }
    .pr-nx-btn {
        font-size: 14px;
    }
    .blog-box-item {
        gap: 15px;
        img {
            width: 106px;
            height: 75px;
        }
    }
    .blog-box-item-content {
        h4 {
            font-size: 14px;
        }
        p {
            font-size: 14px;
        }
    }
    .side-box {
        & ul {
            & li {
                & a {
                    font-size: 16px;
                    padding-block: 14px;
                }
            }
        }
    }

}
@media (max-width:1199.99px){

}
@media (max-width: 991.99px){
    header.sticky {
        .topbar {
            padding-block: 5px;
        }
    }
    .topbar {
        p {
            display: none;
        }
    }
    .flex-box {
        gap: 10px;
        margin-right: 50px;
    }
    #menu {
        justify-content: center;
    }
    .google-review-text {
        margin-left: unset;
        padding-block: 5px;
    }
    .banner{
        height: 800px;
        &::after{
            position: absolute;
            content: '';
            inset: 0;
            background: #00000033;
        }
    }
    .car-boy {
        width: 480px;
        z-index: 1;
    }
    .banner-content {
        width: 100%;
        padding-bottom: 250px;
    }
    .sec-gap{
        padding: 40px 0;
    }
    .about.sec-gap {
        padding: 40px 30px;
    }
    .local-electrictian-banner-content {
        width: 100%;
        padding-left: 40px;
    }
    .local-electrictian-banner {
        background: linear-gradient(174deg, #004DBF 18.34%, #007D83 72.73%);
        padding-block: 40px;
    }
    .approach {
        .row{
            .col:last-child{
                order: -1;
            }
        }
        .container {
            padding: 30px;
        }
    }
    .extra {
        padding-inline: 26px;
    }
    .best-plumb {
        padding-top: 40px;
        padding-inline: 26px;
    }
    .best-plumb-box {
        background-position: right;
    }
    .best-plumb-box-content {
        width: 100%;
        padding: 30px;
    }
    .seasonal {
        .local-electrictian-banner {
            padding-block: 10px;
            background: #FFC238;
        }
        .local-electrictian-banner-content {
            width: 100%;
            padding: 30px;
        }
    }
    .mb-70 {
        margin-bottom: 40px;
    }
    .slick-dots {
        bottom: -50px;
    }
    .get-form-content {
        height: 766px;
    }
    .get-form-section {
        padding-inline: 26px;
    }
    .reliable-service-boy {
        width: auto;
    }
    .get-form-section {
        .local-electrictian-banner {
            padding-block: 10px;
            background: linear-gradient(174deg, #004DBF 18.34%, #007D83 72.73%);
        }
        .local-electrictian-banner-content {
            width: 100%;
            padding: 30px;
        }
    }
    .footer-logo{
        margin-inline: auto;
    }
    footer{
        .row{
            .col-lg-4{
                text-align: center;
            }
        }
    }
    .social-media {
        justify-content: center;
    }
    .popup .popup__content {
        width: 80%;
    }
    .inner-banner{
        height: auto;
        .banner-content {
            padding-bottom: 0;
        }
        &::after {
            opacity: 0.71;
            background: linear-gradient(90deg, #000 42.42%, rgba(102, 102, 102, 0.00) 86.5%);
        }
    }
    .quality-about {
        .about-img {
            padding-bottom: 50px;
        }
    }
    .mis-vis-delivery-box {
        position: relative;
        height: auto;
        padding: 60px;
        width: 100%;
    }
    .miss-vis-icon {
        right: 0;
    }
    .miss-vis-card {
        padding-right: 150px;
        p{
            margin-bottom: 0;
        }
        &::after {
            left: -15px;
        }
    }
    .miss-viss{
        margin-bottom: 40px;
    }
    .about-service {
        padding-inline: 26px;
    }
    .slick-arrow{
        bottom: -90px;
        left: 52%;
    }
    .slick-prev {
        left: 44%;
    }
    .about-plumb {
        .best-plumb-box {
            background-position: right;
        }
    }
    .get-in-touch{
        .row{
            .col:last-child{
                order: -1;
            }
        }
    }
    .send-us-form {
        border-radius: 20px;
        padding: 25px;
    }
    .send-us {
        margin-bottom: 485px;
    }
    .location-map {
        iframe {
            border-radius: 20px;
        }
    }
    .read-more-btn {
        gap: 10px;
        img{
            width: 24px;
        }
    }
    .service-about1 {
        width: 60%;
    }
    .service-about {
        .about-img {
            padding-bottom: 100px;
                &::after {
                height: 81%;
            }
        }
    }
    .service-approach {
        .approach-img {
            position: relative;
            right: unset;
            top: unset;
            transform: none;
            width: 100%;
            height: auto;
        }
    }
    .service-approach{
        .container{
            padding: 0;
        }
    }
    .request-service{
        padding-top: 0;
    }
    .service-plumb {
        .best-plumb-box-content {
            padding: 40px 0;
        }
    }
    .service-tips {
        .approach-content {
            padding-right: 0;
            padding-left: 0;
        }
    }
    .service-tips{
        .row{
            .col:first-child{
                order: -1;
            }
        }
    }
    .gallery {
        padding-inline: 26px;
    }
    .area {
        padding-bottom: 40px;
        .location-map {
            position: relative;
            width: 100%;
            height: 540px;
            left: unset;
        }
        .row{
            .col:first-child{
                order: 2;
            }
        }
    }
}
@media (max-width: 575.98px){
    .left {
        img{
            width: 121px;
        }
    }
    .popup .popup__content {
        width: 95%;
    }
    .right {
        padding: 15px;
    }
    #menu .main-menu {
        width: 80%;
        overflow-y: scroll;
    }
     #menu>.main-menu>ul>li>a {
        padding: 15px 0;
        font-size: 15px;
    }
    #menu .submenu-button {
        height: 46px;
        width: 60px;
    }
    #menu .submenu-button.submenu-opened:after {
        top: 20px;
    }
    #menu .submenu-button:after {
        top: 16px;
        right: 24px;
        width: 10px;
        height: 10px;
    }
    #menu ul ul li a {
        font-size: 15px;
    }
    .primary-btn{
        font-size: 15px;
        padding: 11px 26px;
    }
    .sec-gap{
        padding: 20px 0;
    }
    .call-btn {
        span{
            display: none;
        }
    }
    .header-btn {
        display: none;
    }
    .logo {
        width: 100px;
        margin-bottom: -10px;
    }
    .hamburger {
        top: -59px;
    }
    p{
        font-size: 14px;
    }
    .stars {
        i {
            width: 20px;
            height: 20px;
        }
    }
    .google-review-text {
        p {
            font-size: 15px;
        }
    }
    .banner{
        height: 300px;
    }
    .banner-content {
        text-align: center;
        width: 100%;
        padding-bottom: 0;
        h1 {
            font-size: 34px;
        }
        h5 {
            font-size: 18px;
        }
        p {
            font-size: 15px;
            line-height: 122.556%;
        }
        .btn-group {
            gap: 10px;
            justify-content: center;
        }
        .primary-btn{
            font-size: 14px;
            padding-inline: 20px;
        }
    }
    .banner-btn {
        display: inline-flex;
        padding-inline: 33px;
    }
    .car-boy {
        display: none;
    }
    .about.sec-gap {
        padding: 20px 15px;
    }
    .section-title {
        font-size: 25px;
    }
    .dec {
        font-size: 16px;
    }
    .mb-60 {
        margin-bottom: 20px;
    }
    .repair-icon {
        width: 73px;
        height: 73px;
        padding: 20px;
    }
    .counter-item {
        h3 {
            font-size: 50px;
        }
        p {
            font-size: 16px;
        }
    }
    .local-electrictian-banner-content {
        padding-left: 20px;
    }
    .local-electrictian-banner {
        padding-block: 20px;
        border-radius: 10px;
    }
    .mb-40 {
        margin-bottom: 20px;
    }
    .service-content {
        padding: 20px 10px;
    }
    .card-title {
        font-size: 18px;
    }
    .approach {
        .container {
            padding: 15px;
            border-radius: 0;
        }
    }
    .approach-img {
        border-radius: 10px;
    }
    .approach-content {
        padding-right: 0;
    }
    .extra {
        padding-inline: 15px;
    }
    .extra-icon {
        width: 86px;
        height: 86px;
        padding: 20px;
    }
    .best-plumb {
        padding-top: 20px;
        padding-inline: 10px;
    }
    .best-plumb-box-content {
        padding: 15px;
    }
    .seasonal-box{
        border-radius: 15px;
    }
    .mb-70 {
        margin-bottom: 20px;
    }
    .seasonal {
        .local-electrictian-banner {
            padding-block: 0;
        }
        .local-electrictian-banner-content {
            padding: 20px;
        }
    }
    .seasonal-box {
        .card-title {
            font-size: 16px;
        }
    }
    .testimonials {
        .container-fluid {
            padding-inline: 10px;
        }
    }
    .admin-dtls {
        img {
            width: 59px;
        }
    }
    .user-name{
        font-size: 20px;
    }
    .mb-50 {
        margin-bottom: 20px;
    }
    .slick-dots {
        bottom: -40px;
    }
    .news-box{
        border-radius: 15px;
    }
    .news-date {
        font-size: 14px;
    }
    .news-img {
        border-radius: 15px;
    }
    .news-content {
        padding: 10px;
    }
    .news-title {
        font-size: 18px;
    }
    .accordion__item {
        margin: 10px auto;
    }
    .accordion__item .accordion__title {
        line-height: 125.182%;
    }
    .accordion__item .accordion__title {
        font-size: 16px;
        padding: 14px 10px;
        padding-right: 55px;
    }
    .accordion__item .accordion__content {
        padding: 10px;
        padding-right: 15px;
        padding-top: 0;
    }
    .get-form-content {
        height: 366px;
        padding: 40px 20px;
        border-radius: 10px;
        .call-icon {
            width: 76px;
            height: 76px;
            padding: 23px;
        }
        .call-btn{
            bottom: 20px;
            left: 10px;
        }
    }
    .get-form-section {
        padding-inline: 10px;
    }
    .reliable-service-boy {
        width: 219px;
        right: -5px;
    }
    .get-form {
        padding: 20px 15px;
        border-radius: 10px;
    }
    .title{
        font-size: 33px;
    }
    .form-control {
        font-size: 14px;
        padding: 12px 10px;
        -webkit-border-radius: 6px;
    }
    .get-form-section {
        .container{
            padding: 0;
        }
        .local-electrictian-banner-content {
            width: 100%;
            padding: 15px;
        }
    }
    .get-form-section {
        .local-electrictian-banner {
            padding-block: 0;
        }
    }
    footer{
        text-align: center;
        padding-top: 20px;
        padding-bottom: 40px;
        .col-lg-3{
            p{
                text-align: left;
            }
        }
    }
    .footer-logo {
        margin-inline: auto;
        width: 131px;
    }
    footer p, footer p a, footer ul li a {
        font-size: 14px;
    }
    .social-media {
        a {
            width: 38px;
            height: 38px;
            padding: 9px;
        }
    }
    .footer-title {
        font-size: 17px;
    }
    .copyright {
        margin-top: 20px;
    }
    .fixed-btn {
        right: 0;
    }
    .fixed-call {
        width: 49px;
        height: 49px;
    }
    .wp {
        width: 49px;
        height: 49px;
    }
    .google-review-text{
        display: none;
    }
    .inner-banner{
        height: auto;
        .banner-content {
            text-align: left;
        }
    }
    .quality-about {
        .about-img {
            gap: 10px;
        }
    }
    .miss-vis-icon {
        width: 98px;
        height: 98px;
        padding: 15px;
        position: relative;
        top: unset;
        right: unset;
        transform: none;
        margin: 0 auto;
        margin-bottom: 10px;
        border-width: 6px;
    }
    .miss-vis-card {
        padding-right: 0;
        text-align: center;
        &::after {
            left: 0;
            width: 100%;
        }
    }
    .mis-vis-delivery-box {
        padding: 25px;
        .section-title {
            font-size: 30px;
        }
    }
    .about-counter {
        .container {
            border-radius: 15px;
        }
    }
    .about-service {
        padding-inline: 15px;
        padding-bottom: 40px;
    }
    .about-service-card {
        border-radius: 10px;
        .card-title {
            padding: 16px;
            font-size: 16px;
        }
    }
    .slick-arrow{
        width: 30px;
        height: 30px;
        bottom: -58px;
        left: 52%;
        &::before{
            background-size: 12px;
        }
    }
    .slick-prev {
        left: 41%;
    }
    .about-approach{
        .btn-group{
            gap: 10px;
        }
        .primary-btn{
            padding: 11px 19px;
        }
    }
    .get-in-touch-icon {
        width: 38px;
        height: 38px;
        padding: 12px;
    }
    .get-in-touch-card {
        padding-left: 50px;
        h4 {
            font-size: 16px;
        }
        & p, & p a {
            font-size: 14px;
        }
    }
    .send-us {
        margin-bottom: 280px;
        .container {
            padding-inline: 10px;
        }
        img{
            width: 100%;
            height: 400px;
            object-fit: cover;
        }
    }
    .send-us-form {
        border-radius: 10px;
        padding: 15px;
        .form-control {
            padding: 11px 12px;
            border-radius: 6px;
        }
    }
    .location-map {
        iframe {
            height: 260px;
            border-radius: 10px;
        }
    }
    .read-more-btn {
        font-size: 15px;
        img {
            width: 20px;
        }
    }
    .service-about {
        & .about-img {
            &::before {
                height: 69%;
            }
            &::after {
                height: 69%;
            }
        }
    }
    .service-approach-card {
        padding-left: 60px;
        h3 {
            font-size: 16px;
        }
    }
    .service-approach-icon {
        width: 52px;
        height: 52px;
        padding: 13px;
    }
    .service-approach{
        .container {
            padding: 13px;
            padding-block: 0;
            border-radius: 0;
        }
    }
    .request-service{
        padding-top: 0;
    }
    .service-plumb {
        .best-plumb-box-content {
            padding: 20px 15px;
            .btn-group {
                display: block;
            }
            .primary-btn{
                display: inline-flex;
                margin-bottom: 10px;
            }
        }
    }
    .service-expect {
        & .extra-box {
            h5 {
                font-size: 17px;
            }
        }
    }
    .gallery {
        padding-inline: 15px;
    }
    .area-content {
        & ul {
            gap: 6px;
            li {
                width: 49%;
                font-size: 14px;
                line-height: 112.609%;
                padding: 13px 8px;
                gap: 3px;
                img {
                    width: 12px;
                }
            }
        }
    }
    .area {
        padding-bottom: 20px;
        .location-map {
            height: auto;
            iframe {
                height: 300px;
            }
        }
    }
    .blog-details-banner{
        height: 100px;
    }
    .blog-details {
        .section-title {
            font-size: 24px;
        }
        h3 {
            font-size: 22px;
        }
        h4 {
            font-size: 18px;
        }
        ul, & ol {
            li {
                font-size: 14px;
                margin-bottom: 10px;
                span {
                    font-size: 16px;
                    line-height: 100.609%;
                }
            }
        }
        ol {
            li::marker {
                font-size: 16px;
            }
        }
        ul {
            & li::marker {
                font-size: 16px;
            }
        }
        .side-box-title {
            font-size: 17px;
            padding: 12px 14px;
        }
    }
    .blog-details-img {
        border-radius: 10px;
    }
    .pegination {
        flex-direction: column;
        gap: 10px;
        a{
            display: inline-flex;
            border-radius: 10px;
            padding: 10px;
            margin-right: auto;
            img {
                width: 105px;
                height: 65px;
                border-radius: 10px;
            }
            p {
                font-size: 14px;
            }
        }
        .next{
            margin-right: 0;
            margin-left: auto;
        }
    }
    .pr-nx-btn{
        padding: 4px 10px;
        border-radius: 8px;
    }
    .blog-box-item {
        padding: 10px 15px;
        gap: 12px;
        img {
            width: 98px;
            height: 65px;
        }
    }
    .blog-box-item-content {
        h4 {
            font-size: 14px;
            margin-bottom: 3px;
        }
    }
    .side-box {
        & ul {
            & li {
                & a {
                    font-size: 14px;
                    padding-block: 10px;
                }
            }
        }
    }
}