.mainheader {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
  z-index: 10;
  width: 100%;
  top: 0;
  line-height: 0;
  /* border-bottom: 0px solid rgb(255 255 255 / 20%); */
  /* border-bottom: 1px solid rgba(255, 255, 255, 0.3); */
  position: relative;
  top: 0;
}

.header-right {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  /* flex-grow: 1; */
  justify-content: flex-end;
}

.h_wrapper {
  padding: 0 0px;
  margin: 0 auto;
  width: 100%;
  max-width: 1500px;
  width: calc(100% - 30px);
  display: flex;
  justify-content: space-between;
  /* background-color: #203864; */
  background-color: transparent;
  align-items: unset;
  position: relative;
}

.main-menu-wrap {
  background-color: #fff;
  display: inline-block;
  width: 100%;
  line-height: 0;
}

.nav-menu-wrapper .main-menu > li > a:after,
.nav-menu-wrapper .main-menu > li.menu-item-has-children:hover > a:after,
.nav-menu-wrapper .main-menu > li > .submenu > li:hover > a:after {
  left: calc(50% - 15px);
  opacity: 1;
  transition: 1s;
}

p a:hover,
ul li a:hover,
ol li a:hover {
  text-decoration: none;
}

input#email:focus {
  background: #fff;
  border: 1px solid #eee;
  box-shadow: 0 2px 3px 2px #e4e1e31c;
  outline: 2px solid #000;
}

.nav-menu-wrapper {
  display: inline-flex;
  margin: 0;
  flex-grow: 1;
  justify-content: center;
  /* margin-right: 165px; */
  /* padding-left: 210px; */
  width: 100%;
  background: transparent linear-gradient(270deg, #02277c 0%, #01143e 100%) 0%
    0% no-repeat padding-box;
  border-bottom: 2px solid var(--themecolor);
}

.nav-menu-wrapper .main-menu > li a:not(.button) {
  font-size: 14px;
  letter-spacing: 0px;
  font-weight: 500;
  text-decoration: none;
  text-transform: none;
  position: relative;
  line-height: 1;
  color: #2d2d2d;
}

.nav-menu-wrapper .main-menu > li > a:not(.button) {
  padding: 17px 0px;
  font-weight: bold;
  color: #fff;
  text-transform: capitalize;
  font-size: 16px;
  letter-spacing: 0px;
}

.nav-menu-wrapper .main-menu > li a:not(.button):hover {
  color: var(--themecolor) !important;
}

.nav-menu-wrapper .main-menu > li a i.menudrop {
  margin-left: 5px;
  font-weight: bold;
  color: #ffffff;
}

.main-menu > li {
  position: relative;
  display: inline-flex;
  text-align: center;
  align-items: center;
  margin-bottom: 0;
  padding: 0 0px;
  height: 100%;
}

.main-menu > li:hover > .submenu {
  -webkit-transform: scaleY(0);
  transform: scaleY(1);
  opacity: 1;
  visibility: visible;
}

.main-menu .submenu li {
  display: block;
  width: 100%;
}

.main-menu li > .submenu > li:not(:last-child) {
  margin-bottom: 10px;
}

.menu_level_2 {
  margin-top: 10px;
}


.nav-menu-wrapper .main-menu > li.menu-item-has-children > a:after {
  display: block;
  content: "";
  position: absolute;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transition-timing-function: cubic-bezier(0.58, 0.3, 0.005, 1);
  transition-timing-function: cubic-bezier(0.58, 0.3, 0.005, 1);
  bottom: -20px;
  background-color: var(--white);
  width: 24px;
  height: 24px;
  left: calc(50% - 10px);
  opacity: 0;
  /* clip-path: polygon(50% 0%, 100% 50%, 50% 50%, 0 50%); */
  transform: scaleX(-0.6) rotate(45deg);
  border: 0px solid #0f2e1f;
}

.fixed-header .nav-menu-wrapper .main-menu > li > a:after {
  background-color: var(--white);
}


ul.main-menu > li.active > a:after,
ul.main-menu > li:hover > a:after {
  opacity: 1;
}

ul.main-menu > li.hidden,
.togglebtn,
.menulogo {
  display: none;
}

ul.main-menu .submenu {
  left: 0%;
  position: absolute;
  top: 100%;
  width: 100%;
  text-align: left;
  border-radius: 0 0 0px 0px;
  z-index: 10;
  background: #eeeeee;
  border-bottom: 0px solid #ab1116;
  left: calc(50% - 85px);
  margin: -0px auto 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  transform-origin: 0 0;
  overflow: hidden;
  min-width: 212px;
  padding: 40px 33px 45px;
}

ul.main-menu .submenu > ul {
  margin-bottom: 0;
}

ul.main-menu > li:hover > .submenu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
  /* display: block; */
}

ul.main-menu .submenu.menu_level2 {
  width: calc(750px - 350px);
  left: 350px;
  right: unset;
  top: 0;
  display: flex;
  flex-wrap: wrap;
  background: transparent;
  box-shadow: none;
  transform: none;
  display: none;
  height: 100%;
  /* box-shadow: -1px 0px 21px 0px rgba(0, 0, 0, 0.1); */
  max-height: 100%;
  overflow: auto;
  padding: 0 0 0 84px;
  border: 0;
  margin: 0px;
}
ul.main-menu .submenu.menu_level2 ul {
  display: inline-block;
  flex-wrap: wrap;
}

div.submenu.menu_level2::-webkit-scrollbar {
  width: 5px;
}

div.submenu.menu_level2::-webkit-scrollbar-track {
  background: transparent;
}

div.submenu.menu_level2::-webkit-scrollbar-thumb {
  background-color: #c1c1c1;
  border-radius: 20px;
  border: 3px solid #c1c1c1;
}

li.menu-item-has-children.menu-item-hover div.submenu.menu_level2 {
  opacity: 1;
  visibility: visible;
  z-index: 11;
}

div.submenu.menu_level2 li {
  width: 100%;
  float: none;
  margin-bottom: 15px;
  display: inline-block;
}

div.submenu.menu_level2 a {
  padding-left: 20px;
  font-size: 14px;
  font-weight: 500;
}

div.submenu.menu_level2 a:after {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 12px;
  height: 16px;
  background: transparent url(../images/map-pin.svg) no-repeat;
  background-size: contain;
  filter: brightness(0) saturate(100%) invert(51%) sepia(77%) saturate(3717%)
    hue-rotate(171deg) brightness(99%) contrast(86%);
}

ul.main-menu nav ul > li:first-child img {
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
}

.submenu.childmenu li.menu-item-has-children a img {
  filter: brightness(0) !important;
  margin-right: 15px;
  top: 1px;
  position: relative;
}

ul.main-menu .submenu .fa-angle-down.menudrop {
  position: absolute;
  width: 22px;
  height: 22px;
  background: transparent;
  border-radius: 100%;
  right: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
  color: var(--primary);
  border: 0px solid var(--white);
  font-size: 20px;
  text-align: center;
  padding: 0 0 0 0;
  line-height: 22px;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
}

.fixed-header .nav-menu-wrapper .main-menu > li.active > a,
.fixed-header .nav-menu-wrapper .main-menu > li:hover > a {
  color: var(--themecolor);
}

.fixed-header .nav-menu-wrapper .main-menu > li:hover > a {
  color: var(--themecolor);
}

body.menuoverlay main {
  filter: blur(4px);
}

.fixed-header .mainheader {
  -moz-transition: height 0.3s;
  will-change: height ease;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;

  -webkit-animation: 0.3s ease-in-out 0s normal none 1 running fadeInDown;
  animation: 0.3s ease-in-out 0s normal none 1 running fadeInDown;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  z-index: 99;
  /* background-color: #000000; */
}

.nav-logo {
  position: relative;
  display: flex;
  justify-content: space-between;
  margin: 14px 0;
  align-items: center;
  gap: 40px;
}

.nav-logo > a {
  min-width: 268px;
  width: 268px;
  display: inline-flex;
  align-self: center;
}

.header-right .btnlist {
  column-gap: 10px;
  align-items: center;
}

.header-right .btnlist > .btn-theme:hover {
  background-color: #000000;
  border-color: #000;
  color: #fff;
}
.google_rate_wrap {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin-right: 5px;
}

.google_rate_info {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
}

.google_rate_info > p {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 0.8;
  color: #242527;
  margin-bottom: 0;
}

.google_rate_info span {
  display: inline-flex;
  font-size: 19px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.2;
  gap: 5px;
  align-items: center;
}
.opening-status {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  gap: 15px;
  padding: 11px 20px;
  border-radius: 6px;
  border: 2px solid #4dbe48;
  color: #4dbe48;
  line-height: 1;
}
.opening-status span {
  position: relative;
  display: inline-flex;
  height: 10px;
  width: 10px;
  line-height: 0;
  border-radius: 100%;
  background: #4dbe48;
  &::after {
    position: absolute;
    content: "";
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    background: rgba(78, 190, 72, 0.4);
    left: -5px;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    border-radius: 100%;
    animation: alternate movement infinite 1s;
  }
}

@keyframes movement {
  0% {
    transform: scale(0.2);
  }

  100% {
    transform: scale(1);
  }
}

/* 
 .header-right .btnlist>a {
 padding: 10px 21px;
 font-weight: bold;
 min-width: 180px;
 } */

.nav-menu-wrapper .main-menu li.active > a:not(.button) {
  color: var(--themecolor);
}

/* areas-we-serve  menu */

li.areas_menu > .submenu {
  width: 900px;
  padding: 0;
  height: 510px;
  left: calc(50% - 360px);
  padding: 0;
  background: #fff;
  box-shadow: 0px 0px 5px #00000029;
}

.areas-list-header {
  width: 275px;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0;
  background: rgba(46, 48, 69, 0);
  flex-wrap: wrap;
  position: relative;
  padding: 20px 0px 20px 0px;
}

.submenu.menu_level2 > li {
  width: 100%;
}

.areas_menu .areas-list-header li > .submenu.menu_level2 {
  /* height: calc(100% - 10px); */
  /* height: calc(100% - 10px);  */
  bottom: 0;
  margin: auto 0px auto 0px;
  padding: 84px 0px 0px 30px;
  border-radius: 0px;
  background-color: #E8EDF9;
  border: 0;
  width: calc(900px - 275px);
  max-width: calc(900px - 275px);
  left: 275px;
  overflow: auto;
  overflow-x: hidden;
  height: 100%;
}

.areas_menu .areas-list-header li > .submenu.menu_level2 > li {
  width: calc(50% - 10px);
}

.areas_menu .areas-list-header li.menu-item-hover > .submenu.menu_level2 {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scaleY(1);
  transform: none;
  display: inline-flex;
  box-shadow: none;
  flex-wrap: wrap;
  justify-content: space-between;
}

.areas_menu .areas-list-header > li.menu-item-hover > a,
.areas_menu .areas-list-header > li:hover > a,
.areas_menu .areas-list-header > li > a:hover {
  background-color: var(--themecolor);
  z-index: 1;
  color: #fff !important;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  box-shadow: 5px 5px 5px 2px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: 3px 3px 5px 2px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 3px 3px 5px 2px rgba(0, 0, 0, 0.75);
  box-shadow: none;
  background: transparent linear-gradient(271deg, #02277c 0%, #01143e 100%) 0%
    0% no-repeat padding-box;
}

.areas-list-header > li > a::after { 
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: url(../images/icon/arrow-right-bold.svg) no-repeat center center;
    filter: brightness(0) invert(0);
    right: 16px;
    top: calc(50% - 5px);
}

.areas-list-header > li:hover > a::after,
.areas-list-header > li.menu-item-hover > a::after {
  transform: translateX(0px);
  filter: brightness(0) invert(1);
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}

.nav-menu-wrapper
  .main-menu
  li.areas_menu
  .areas-list-header
  > li.menu-item-hover
  > a
  .fa-angle-down.menudrop {
  transform: rotate(-90deg);
}

.area_text {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.2;
  font-family: "Inter";
  color: #000000;
  margin-bottom: 20px;
  padding-bottom: 20px;
  padding-left: 30px;
  border-bottom: 1px solid #b6b6b7;
  width: 100%;
  position: absolute;
  top: 20px;
  left: 0;
}

.area-list-title {
    font-size: 16px;
    color: #505157;
    font-weight: 700;
    padding: 0 0 20px 14px;
    margin-bottom: 0px;
    border-bottom: 1px solid #b6b6b7;
}

.main-menu li.areas_menu .submenu > li > a {
  padding-left: 0px;
  display: inline-block;
  line-height: 1.4;
  color: #000;
  font-weight: 500;
  font-size: 14px;
  padding: 0 0 0 20px;
}
.main-menu li.areas_menu .submenu > li > a::after {
  display: none;
}
.main-menu li.areas_menu .submenu > li > a::before {
  position: absolute;
  content: "";
  left: 0;
  top: 4px;
  background: transparent url(../images/icon/map-t.svg) no-repeat center center;
  background-size: contain;
  height: 14px;
  width: 10px;
  display: block;
}

.areas-list-header > li > a {
  width: 100%;
  display: inline-flex;
  padding: 25px 24px 25px 15px;
  background: #ffffff00;
  border-radius: 0px;
  font-size: 16px !important;
  flex-wrap: wrap;
}

.areas-list-header > li > a > p {
  font-size: 11px;
  color: #000000;
  margin-bottom: 0;
  font-weight: normal;
  letter-spacing: 0;
  line-height: 1.25;
  padding: 5px 0 0 0px;
}


.areas-list-header > li:not(:last-child) {
  margin-bottom: 1px;
}

.areas-list-header > li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
}

.areas_menu .areas-list-header > li > a > .menudrop {
  visibility: hidden;
  opacity: 0;
  display: none;
}

/* areas-we-serve  menu */

/*emergencydrains.com.au*/

main {
  margin-top: 111px;
}

.nav-menu-wrapper > nav {
  width: 100%;
}


.submenu.menu_level2 > li > a {
  font-size: 16px;
  font-weight: 500;
  color: #2d2d2d;
  letter-spacing: 0;
  line-height: 1.45;
  padding-left: 18px;
}
.submenu.menu_level2 > li > a:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 11px;
  width: 11px;
  background: transparent url(../images/icon/arrow-right-dark.svg) no-repeat
    center;
  background-size: contain;
  bottom: 0;
  margin: auto;
}


.search-wrap {
  max-width: 275px;
  display: inline-block;
  width: 100%;
  overflow: hidden;
  border-radius: 5px;
}

.search-wrap .aws-search-field.form-control {
  background: #f3f3f4;
  height: 40px;
  padding: 12px 40px 12px 20px;
}

.aws-search-form {
  display: inline-block;
  width: 100%;
  position: relative;
}

.aws-search-btn {
  position: absolute;
  height: 40px;
  width: 40px;
  right: 0;
  top: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.aws-search-btn .aws-search-btn_icon {
  display: inline-block;
  text-align: center;
}
.sub-service-menu .submenu.childmenu > ul {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    padding: 0 40px;
    margin-bottom: 32px;
}
.sub-service-menu .submenu.childmenu {
    padding: 0px 0px 40px;
    min-width: 715px;
    background: #fff;
    border-radius: 0 0 20px 20px;
}
.sub-service-menu .submenu.childmenu > ul > li { max-width: calc(50% - 7px); margin: 0;}
.sub-service-menu .submenu.childmenu > ul > li:last-child {margin-bottom:0;}


.sub-service-menu .submenu.childmenu > ul > li > a {
    width:100%;
    position: relative;
}
html.menuhidden {
    position: fixed;
    overflow-y: hidden;
    max-width: 100%;
}
.service-menu-title {
    font-size: 26px;
    font-weight: 900;
    letter-spacing: 0;
    padding: 30px 40px;
    display: inline-flex;
    align-items: center;
    border-bottom: 1px solid #ECEEF0;
    margin-bottom: 30px;
    width: 100%;
    gap: 15px;
}
.sub-service-menu .submenu.childmenu > ul > li {
    & .servise-box {
        padding: 14px 25px;
        flex-direction: row;
        align-items: center;
        border: 1px solid #f8e4d5;
        justify-content: flex-start;
        text-align: left;
        gap: 10px;
        height: 100%;
        /* background-color: transparent; */
        & .img-wrap { 
          min-width: 30px;
          width: 30px;
           transition: all 0.3s ease-in-out;
          -webkit-transition: all 0.3s ease-in-out;
          -moz-transition: all 0.3s ease-in-out;
          -o-transition: all 0.3s ease-in-out;
          -ms-transition: all 0.3s ease-in-out;
        }
        & > p {
            height: auto;
            display: unset;
            -webkit-box-orient: unset;
            -webkit-line-clamp: unset;
            overflow: unset;
            font-size: 16px;
            font-weight: 600;
            letter-spacing: 0;
            color: #242527;
             transition: all 0.3s ease-in-out;
            -webkit-transition: all 0.3s ease-in-out;
            -moz-transition: all 0.3s ease-in-out;
            -o-transition: all 0.3s ease-in-out;
            -ms-transition: all 0.3s ease-in-out;
        }
        &:hover {
           & .img-wrap {  
            transform: translateX(-2.5px);
             transition: all 0.3s ease-in-out;
              -webkit-transition: all 0.3s ease-in-out;
              -moz-transition: all 0.3s ease-in-out;
              -o-transition: all 0.3s ease-in-out;
              -ms-transition: all 0.3s ease-in-out;
           } 
           & > p {
            color: #fff;
            transform: translateX(2.5px);
             transition: all 0.3s ease-in-out;
            -webkit-transition: all 0.3s ease-in-out;
            -moz-transition: all 0.3s ease-in-out;
            -o-transition: all 0.3s ease-in-out;
            -ms-transition: all 0.3s ease-in-out;
           }
        }
    }
}

.sub-service-menu .submenu.childmenu > ul > li.active {  
    & .img-wrap {  
      transform: translateX(-2.5px);
      transition: all 0.3s ease-in-out;
      -webkit-transition: all 0.3s ease-in-out;
      -moz-transition: all 0.3s ease-in-out;
      -o-transition: all 0.3s ease-in-out;
      -ms-transition: all 0.3s ease-in-out;
    } 
    & .servise-box > p {
      color: #fff;
      transform: translateX(2.5px);
        transition: all 0.3s ease-in-out;
      -webkit-transition: all 0.3s ease-in-out;
      -moz-transition: all 0.3s ease-in-out;
      -o-transition: all 0.3s ease-in-out;
      -ms-transition: all 0.3s ease-in-out;
    }
    & .servise-box { 
      background: transparent linear-gradient(271deg, #02277c 0%, #01143e 100%) 0% 0% no-repeat padding-box;
    } 
}
.header-cta {
    width: calc(100% - 80px);
    margin: auto;
    text-align: center;
    border-radius: 20px;
    background: #02277C;
    padding: 28px 70px;
}

.header-cta .heading-24 {
    font-weight: 900;
    margin-bottom: 5px;
}

.header-cta .sm-title {
    font-weight: 600;
}

.header-cta .btnlist > a.btn-border-white:hover {
  background-color: #fff;
  color: #02277C;
  text-decoration: none !important;
}

.header-cta .btnlist > a.btn-theme:hover { 
  background: #fff !important;
  color: #02277C;
  text-decoration: none !important;
  & > span > img { 
    filter: invert(85%) sepia(26%) saturate(4926%) hue-rotate(218deg) brightness(79%) contrast(86%);
  }
}
/* ---------------------emergencydrains.com.au ------------------------------- */


.menu-cta {
  display: inline-block;
  width: calc(750px - 415px);
  bottom: 20px;
  position: absolute;
  right: 40px;
  padding-top: 9px;
  border-top: 1px solid #dde4eb;
  z-index: 11;
}

.menu-cta .menu-cta-info .btnlist .btn-theme:hover {
  color: #fff !important;
}
.menu-cta-info .heading-20 {
  color: #2d2d2d;
  margin: 0 0 10px;
  line-height: 1.55;
}
.title-li > p {
  font-size: 18px;
  letter-spacing: 0;
  line-height: 1.2;
  font-weight: bold;
  color: #343434;
  margin-bottom: 0;
}

@media (min-width: 991.98px) {
  .fixed-header .togglebtn {
    top: 30px;
  }
  .nav-menu-wrapper .main-menu {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    height: 100%;
    position: static;
    column-gap: 100px;
    justify-content: center;
    padding: 0 0px 0 0px;
    margin-bottom: 0;
  }
  .main-menu > li.has-sub {
    position: static;
  }
}

@media (max-width: 1800px) { 
  li.areas_menu > .submenu { 
    left: calc(50% - 500px);
  }
}
@media (max-width: 1599.98px) {
  .header-right .btnlist {
    column-gap: 10px;
  }
  .nav-menu-wrapper > nav {
    width: 100%;
    padding: 0 0px;
    /* .header-right .btnlist>a {
     } */
  }
  
}

@media (max-width: 1439.98px) {
  .nav-menu-wrapper .main-menu {
    /* column-gap: 15px; */
    padding: 0 0px 0 0;
    justify-content: space-between;
  }
  .nav-menu-wrapper .main-menu > li > a {
    font-size: 14px;
  }

  .nav-menu-wrapper .main-menu {
    column-gap: 15px;
  }
  .nav-menu-wrapper {
      padding: 0 15px 0;
  }
  li.areas_menu > .submenu {
      left: calc(50% - 600px);
  }
  .bannerimgvid > .img-wrap {
      &::after {
          width: 100%;
          background: linear-gradient(90deg, rgba(2, 39, 126, 1) 0%, rgba(2, 39, 124, 1) 18%, rgba(2, 39, 124, 0) 70%);
      }
  }
  .sub-service-menu .submenu.childmenu { 
    left: calc(50% - 132px);
  }
}

@media (max-width: 1199px) {
  .nav-logo { 
    gap: 11px;
  }
 .nav-logo > a {
      min-width: 200px;
      width: 200px;
  }
  .header-right .btnlist {
    column-gap: 5px;
  }

  .header-right .btnlist > a {
    font-size: 14px;
  }
  .nav-menu-wrapper .main-menu {
    column-gap: 15px;
  }

  .nav-menu-wrapper .main-menu > li > a:not(.button) {
    font-size: 14px;
  }

  li.areas_menu > .submenu {
      left: calc(50% - 670px);
  }
  .sub-service-menu .submenu.childmenu { 
    min-width: 635px;
    left: calc(50% - 150px);
  }
  .sub-service-menu .submenu.childmenu > ul { 
    gap: 10px;
  }
  .sub-service-menu .submenu.childmenu > ul > li { 
    /* max-width: calc(33.33% - 7px); */
    margin: 0;
    &  .servise-box { padding: 20px;}
  }
}

@media (max-width: 991px) {
  .togglebtn span {
    position: relative;
    display: block;
    margin-top: 8px;
    vertical-align: top;
    margin-top: 0;
    margin: 0 auto;
  }
  .togglebtn span::before {
    top: 7px;
    width: 22px;
    height: 2px;
    border-radius: 2px;
  }
  .togglebtn span {
    width: 22px;
    height: 2px;
    border-radius: 2px;
    border: 0 solid var(--themecolor);
    /* float: left; */
    margin-top: 0px;
  }
  .togglebtn span::after {
    width: 22px;
    height: 2px;
    border-radius: 2px;
    border: 0 solid var(--themecolor);
    top: 14px;
  }
  .togglebtn span::before,
  .togglebtn span::after {
    content: "";
    position: absolute;
    left: 0;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.2s ease all;
    transition: 0.2s ease all;
  }
  .togglebtn span,
  .togglebtn span::before,
  .togglebtn span::after {
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    border-radius: 0;
    border-radius: 2px;
  }
  .togglebtn span,
  .togglebtn span::before,
  .togglebtn span::after {
    background-color: #2d2d2d;
  }
  .fixed-header .togglebtn span,
  .fixed-header .togglebtn span::before,
  .fixed-header .togglebtn span::after {
    background-color: #2d2d2d;
  }
  .togglebtn {
    position: fixed;
    right: 15px;
    top: 30px;
    display: block;
    text-align: center;
    width: 22px;
    height: 16px;
    border: 0 solid var(--themecolor);
    border-radius: 4px;
    cursor: pointer !important;
    z-index: 1001;
    padding: 0 0;
    background-color: #eb2c3200;
    cursor: pointer;
  }
  .fixed-header .togglebtn {
    top: 30px;
  }
  .togglebtn.active span::before {
    -webkit-transform: rotate(45deg) translateY(0);
    transform: rotate(45deg) translateY(0);
    width: 22px;
    top: 6px;
  }
  .togglebtn.active span::after {
    -webkit-transition-delay: 0.09s;
    width: 22px;
    top: 6px;
    transition-delay: 0.09s;
    -webkit-transform: rotate(45deg) translateY(0);
    transform: rotate(-45deg) translateY(0);
  }
  .togglebtn.active span {
    background-color: transparent !important;
  }
  .header-right {
    margin-right: 34px;
    padding: 10px 0;
  }
  .header-right .btnlist { 
    column-gap: 5px;
  }
  .header-right .btnlist > a { 
    font-size: 14px;
    gap: 0;
    min-height: auto;
    padding: 10px 15px;
    & > span > img { 
      display: none;
    }
  }
  .google_rate_wrap { display: none;}
  .overlay.active {
    position: absolute;
    left: 0;
    right: 0;
    background: #0000006e;
    width: 100%;
    height: calc(100vh - 76px);
    bottom: 0;
    top: 76px;
    z-index: 10;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
  }
  .fixed-header .overlay.active,
  .fixed-header .nav-menu-wrapper .main-menu {
    height: calc(100vh - 76px);
  }
  .fixed-header .nav-menu-wrapper .main-menu,
  .fixed-header .overlay.active {
    top: 76px;
  }
  .nav-menu-wrapper {
    display: flex;
    align-items: center;
    flex-grow: 0;
    padding: 0;
  }
  .nav-menu-wrapper .main-menu {
    position: fixed;
    left: auto;
    top: 76px;
    right: 0;
    bottom: 0;
    z-index: 111;
    display: none;
    width: 100%;
    max-width: 450px;
    padding: 20px 30px 0;
    background: #fff;
    height: calc(100% - 76px);
    overflow: auto;
    justify-content: flex-end;
    transform: translate3d(100vw, 0, 0) scale3d(1, 1, 1) rotateX(0deg)
      rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    transform-style: preserve-3d;
    will-change: transform;
    display: flex;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    overflow-y: scroll;
    overflow-x: hidden;
    padding-bottom: 10px;
  }
  .main-menu.active {
    transform: translate3d(0vw, 0, 0) scale3d(1, 1, 1) rotateX(0deg)
      rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    transform-style: preserve-3d;
  }
  .main-menu > li {
    padding: 0;
    display: block !important;
    width: 100%;
    text-align: left;
    height: auto;
    border-bottom: 1px solid rgba(83, 83, 83, 0.3);
  }
  .main-menu > li:last-of-type {
    border-bottom: 0 solid rgba(83, 83, 83, 0.3);
  }
  .nav-menu-wrapper .main-menu > li > a {
    color: #000;
    display: block;
    padding: 15px 0;
    width: 100%;
  }
  .main-menu > li.menu-btn > a {
    padding: 15px 0px;
    font-weight: 600;
    color: #000;
    font-family: "Inter";
    text-transform: capitalize;
    font-size: 14px;
    letter-spacing: 0px;
    background: transparent;
  }
  .main-menu > li.menu-btn > a > i {
    display: none;
  }

  .main-menu > li .submenu {
    position: static;
    min-width: 100%;
    display: none;
    background: transparent;
    padding: 15px;
    visibility: inherit;
    opacity: unset;
    transform: none;
    box-shadow: none;
    margin: 0;
  }
  .nav-menu-wrapper .main-menu > li a i.menudrop {
    width: 30px;
    text-align: center;
    position: absolute;
    right: 0;
    top: 10px;
    margin: 0;
    height: 30px;
    line-height: 30px;
  }
  .nav-menu-wrapper .main-menu > li.active > a:after,
  .nav-menu-wrapper .main-menu > li > a:after {
    display: none;
  }
  ul.main-menu li:hover > .submenu {
    display: none;
    opacity: unset;
    visibility: unset;
    -webkit-transform: unset;
    transform: unset;
  }
  ul.main-menu li > .submenu {
    display: none;
    border: 0;
  }
  .fixed-header .nav-menu-wrapper .main-menu > li.active > a,
  .fixed-header .nav-menu-wrapper .main-menu > li:hover > a {
    color: var(--themecolor);
  }
  .fixed-header .nav-menu-wrapper .main-menu > li:hover > a {
    color: var(--themecolor);
  }
  ul.main-menu .submenu .fa-angle-down.menudrop {
    color: #000;
    font-size: 14px;
    right: 0;
  }
  .main-menu > li .submenu {
    padding: 0;
  }
  .nav-menu-wrapper .main-menu > li.isopen > a > i.menudrop {
    transform: rotate(180deg);
    color: var(--themecolor);
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }
  .main-menu .submenu {
    border-radius: 0;
    width: 100%;
    height: auto;
    /* areas-list  */
  }
  li.areas_menu > .submenu {
    width: 100%;
    height: auto;
    padding-left: 0px;
  }
  .areas-list-header > li > a > .menudrop {
    display: inline-block;
  }
  .areas-list-header::after,
  .areas-list-header > li > a::after,
  .area_text,
  .areas_menu .areas-list-header li > .submenu.menu_level2::before {
    display: none;
  }
  .nav-menu-wrapper .main-menu > li.menu-item-has-children > a:after {
    display: none;
  }
  .areas-list-header > li > a > .img-wrap {
    position: relative;
    min-width: 40px;
    width: 40px;
  }
  .areas-list-header {
    gap: 0px;
    width: 100%;
    margin: 0;
    padding: 0;
    display: inline-flex;
    height: auto;
    margin-bottom: 10px;
  }
  .main-menu .submenu .areas-list-header > li {
    width: 100%;
    margin-bottom: 0px;
  }
  .nav-menu-wrapper .main-menu .areas-list-header > li > a {
    width: 100%;
    justify-content: flex-start;
    margin-bottom: 0px;
    padding: 18px 28px 18px 0px;
    margin-left: 0;
    font-size: 14px !important;
    height: auto;
    font-weight: 600;
  }
  .areas_menu .areas-list-header > li.menu-item-hover > a,
  .areas_menu .areas-list-header > li:hover > a,
  .areas_menu .areas-list-header > li > a:hover {
    display: block;
    box-shadow: none;
    background: transparent;
    z-index: 1;
    color: #031b24 !important;
  }
  /* .areas_menu .areas-list-header > li.menu-item-hover > a P,
  .areas_menu .areas-list-header > li:hover > a P,
  .areas_menu .areas-list-header > li > a:hover P {
    color: #000000 !important;
  } */
  .nav-menu-wrapper .main-menu > li a:hover {
    color: #031b24 !important;
  }
  .areas_menu .areas-list-header li.menu-item-hover > .submenu.menu_level2 {
    display: none;
  }
  .areas_menu .areas-list-header li > .submenu.menu_level2 {
    padding: 15px 0 1px 15px;
    position: relative;
    left: unset;
    top: unset;
    height: unset;
    bottom: unset;
    background: transparent;
    column-count: 1 !important;
  }
  .area-list-title {
    display: none;
  }
  .areas-list-header > li:last-child {
    border: 0;
  }
  .nav-menu-wrapper .main-menu .areas-list-header > li.isopen > a {
    border-bottom: 1px dashed #cbcbcb !important;
  }
  .areas_menu .areas-list-header > li > a > .menudrop {
    visibility: visible;
    opacity: 1;
    display: inline-block;
    /* areas-list  */
    /* services-list  */
  }
  
  ul.main-menu .submenu.menu_level2 {
    padding: 30px;
    max-width: 100%;
    box-shadow: none;
    opacity: unset;
    visibility: unset;
    transform: none;
    height: unset;
    display: none;
    /* update */
  }
  /* ---------Emergencydrains------------ */

  .nav-menu-wrapper .main-menu > li > a:not(.button) {
    font-size: 14px;
    padding: 18px 0;
  } 
  .menu-cta,
  .service_text-wrap,
  ul.main-menu
    ul.services-list-header
    li.menu-item-hover
    > .submenu.menu_level2 {
    display: none;
  }
  .nav-menu-wrapper .main-menu > li a:not(.button),
  .nav-menu-wrapper .main-menu > li a i.menudrop {
    font-size: 14px;
    color: #031b24;
  }
  .sub-service-menu .submenu.childmenu { 
    width: 100%;
    min-width: unset;
    padding: 10px 15px 15px 0px;
  }
  .sub-service-menu .submenu.childmenu > ul { 
    gap: 0;
    padding: 0;
    margin-bottom: 0;
    & > li:not(:last-child) { 
      padding-bottom: 15px;
      border-bottom: 1px solid rgba(83, 83, 83, 0.1);
    }
    & > li { 
      margin-bottom: 15px;
      max-width: calc(100%);
      width: 100%;

      & .servise-box { 
        gap: 15px;
        align-items: center;
        justify-content: flex-start;
        flex-direction: row;
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        & > p { 
          height: auto;
          font-weight: 600;
          font-size: 14px;
        } 
        &:hover { 
          background: transparent !important;

          & > p { 
            color: #031b24;
          }
        }
      }
      & .servise-box > .img-wrap {
        max-width: 40px;
      }
    }
  }
  .service-menu-title, .header-cta { display: none;}
  .nav-logo > a {
    min-width: 218px;
    width: 218px;
  }

  .sub-service-menu .submenu.childmenu > ul > li.active {  
    & .img-wrap {  
      transform: none;
    } 
    & .servise-box > p {
      color: var(--themecolor);
      transform: none;
        transition: all 0.3s ease-in-out;
      -webkit-transition: all 0.3s ease-in-out;
      -moz-transition: all 0.3s ease-in-out;
      -o-transition: all 0.3s ease-in-out;
      -ms-transition: all 0.3s ease-in-out;
    }
    & .servise-box { 
      background: transparent;
    } 
}
  /* ---------emergencydrains------------ */
}

@media (max-width: 767.98px) {
  
  /* .header-right {
        margin-right: 45px; 
    }
    .header-right .btnlist >a { 
        padding: 15px 6px;
        min-width: auto;
    } */

  .nav-menu-wrapper .main-menu {
    padding: 0 15px;
  }
  .main-menu > li .submenu {
    padding: 0;
  }
  /*   
    .overlay.active {
        top: 115px;
        height: calc(100vh - 115px);
    }
    .nav-menu-wrapper .main-menu {
        top: 115px;
        height: calc(100% - 115px);
    }
    .fixed-header .nav-menu-wrapper .main-menu,
    .fixed-header .overlay.active {
        top: 115px;
    }
    .fixed-header .overlay.active,
    .fixed-header .nav-menu-wrapper .main-menu {
        height: calc(100vh - 115px);
    } */
    .opening-status { display: none;}
}

@media (max-width: 575.98px) {
  .togglebtn {
    top: 22px;
    right: 10px;
  }

  .fixed-header .togglebtn {
    top: 22px;
  }
  .overlay.active {
    top: 100px;
    height: calc(100vh - 100px);
  }
  .nav-menu-wrapper .main-menu {
    top: 100px;
    height: calc(100% - 100px);
    max-width: 100%;
  }
  .fixed-header .nav-menu-wrapper .main-menu,
  .fixed-header .overlay.active {
    top: 100px;
  }
  .fixed-header .overlay.active,
  .fixed-header .nav-menu-wrapper .main-menu {
    height: calc(100vh - 100px);
  }

  /* ------ emergencydrains------ */

  .header-right {
    width: 100%;
    margin: 0;
    padding: 0;
    & .btnlist {
      width: 100%;
      gap: 0;
      & a {
        flex: 1;
        min-height: 40px;
        padding: 6px 5px;
        border-radius: 0 !important;
        min-width: auto;
        gap: 10px;
        border: 0px !important;
        & > span > img {
          display: block;
        }
      }
      & .btn-border,
      .btn-border:hover {
        background: var(--themeblue) !important;
        color: #fff !important;
        & img {
          filter: brightness(0) invert(1) !important;
        }
      }
    }
  }
  .nav-logo > a {
      min-width: 180px;
      width: 180px;
  }
  .header-right .btnlist > .btn-theme:hover {
    background: var(--themecolor);
    color: #fff !important;
  }

  .h_wrapper {
    max-width: 100%;
    width: 100%;
    padding: 0 0px;
    /* row-gap: 10px; */
  }
  /* .header-right { 
        display: none;
    } */
  .h_wrapper {
    justify-content: flex-start;
  }
  .opening-status { 
    display: inline-flex;
    font-size: 12px;
    font-weight: 600;
    gap: 10px;
    padding: 11px 10px;
    border-radius: 4px;
    border: 1px solid #4dbe48;
  }
  .nav-logo {  margin: 10px 0 10px 10px;}
  .nav-logo > a {
      min-width: 180px;
      width: 180px;
  }
  /* ------ emergencydrains ------ */
}

@-webkit-keyframes fadeInDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    -webkit-transform: translateZ(0);
    opacity: 1;
    transform: translateZ(0);
  }
}

@keyframes fadeInDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    -webkit-transform: translateZ(0);
    opacity: 1;
    transform: translateZ(0);
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@media (hover: hover) {
  .nav-menu-links ul.main-menu > li.has-sub:hover > a:after {
    content: "";
    position: absolute;
    bottom: -28px;
    left: 50%;
    margin-left: -12px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #01aeef;
    clear: both;
  }
  .nav-menu-links ul.main-menu > li > a:hover,
  .nav-menu-links ul.main-menu > li.active > a {
    text-decoration: none !important;
    transform: none !important;
    box-shadow: none !important;
  }
}