/*===========================
<-- roofing service Loader Css -->
=============================*/
.hit{
display:none !Important
}

.loader-wrapper {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  transition: 0.8s 1s ease;
  z-index: 666;
}

.loader {
  position: relative;
  display: block;
  z-index: 201;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  margin: -50px 0 0 -50px;
  border-radius: 50%;
  transition: all 1s 1s ease;
  border: 3px solid transparent;
  border-top-color: var(--color-primary);
  -webkit-animation: spin 1.5s linear infinite;
  -moz-animation: spin 1.5s linear infinite;
  -o-animation: spin 1.5s linear infinite;
  animation: spin 1.5s linear infinite;
}

.loader:before {
  position: absolute;
  content: "";
  top: 6px;
  left: 6px;
  right: 6px;
  bottom: 6px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-left-color: #1c1632;
  -webkit-animation: spin 2s linear infinite;
  -moz-animation: spin 2s linear infinite;
  -o-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}

.loader:after {
  position: absolute;
  content: "";
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-right-color: #fff;
  -webkit-animation: spin 2.5s linear infinite;
  -moz-animation: spin 2.5s linear infinite;
  -o-animation: spin 2.5s linear infinite;
  animation: spin 2.5s linear infinite;
}

/*/ Here the Magic /*/

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-moz-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.loader-wrapper .loder-section {
  position: fixed;
  top: 0;
  width: 50%;
  height: 100%;
  background: #111;
  z-index: 2;
}

.loader-wrapper .loder-section.left-section {
  left: 0;
  transition: 1s 1.4s ease;
}

.loader-wrapper .loder-section.right-section {
  right: 0;
  transition: 1s 1.4s ease;
}

/*/ When page loaded /*/
.loaded .loder-section.left-section {
  left: -100%;
}

.loaded .loder-section.right-section {
  right: -100%;
}

.loaded .loader-wrapper {
  visibility: hidden;
}

.loaded .loader {
  top: -100%;
  opacity: 0;
}

/*
<!-- ============================================================== -->
<!-- roofing service Scrollup Section -->
<!-- ============================================================== -->*/
.scroll-area {
  position: relative;
  z-index: 999;
}

.scroll-area .go-top {
  position: fixed;
  cursor: pointer;
  top: 0;
  right: 30px;
  color: #ffffff;
  background-image: -moz-linear-gradient(0deg, #d1651a 0%, #c1282a 100%);
  background-image: -webkit-linear-gradient(0deg, #d1651a 0%, #c1282a 100%);
  z-index: 9999;
  width: 45px;
  text-align: center;
  height: 45px;
  line-height: 42px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.9s ease-out 0s;
  -moz-transition: all 0.9s ease-out 0s;
  transition: all 0.9s ease-out 0s;
  border-radius: 10px;
}

.scroll-area .go-top i {
  position: absolute;
  top: 50%;
  left: -4px;
  right: 0;
  margin: 0 auto;
  font-size: 15px;
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}

.scroll-area .go-top i:last-child {
  opacity: 0;
  visibility: hidden;
  top: 60%;
}

.scroll-area .go-top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: linear-gradient(to right, #00132b 0%, #00132b 100%);
  background-image: -ms-linear-gradient(0deg, #d1651a 0%, #c1282a 100%);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
  border-radius: 100%;
}

.scroll-area .go-top:focus,
.scroll-area .go-top:hover {
  color: #fff;
}

.scroll-area .go-top:focus::before,
.scroll-area .go-top:hover::before {
  opacity: 1;
  visibility: visible;
}

.scroll-area .go-top:focus i:first-child,
.scroll-area .go-top:hover i:first-child {
  opacity: 0;
  top: 0;
  visibility: hidden;
}

.scroll-area .go-top:focus i:last-child,
.scroll-area .go-top:hover i:last-child {
  opacity: 1;
  visibility: visible;
  top: 50%;
}

.scroll-area .go-top.active {
  top: 95%;
  -webkit-transform: translateY(-98%);
  -moz-transform: translateY(-98%);
  transform: translateY(-98%);
  opacity: 1;
  visibility: visible;
  border-radius: 0;
  right: 30px;
  border-radius: 100%;
}

.top-wrap {
  position: relative;
}

.top-wrap .go-top-button {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 40px;
  text-align: center;
  color: #fff;
  top: 3px;
  z-index: 1;
  background: var(--color-primary);
}

.top-wrap .go-top-button i {
  font-size: 20px;
  font-weight: 700;
  padding-left: 4px;
  color: #fff;
}

.top-wrap .go-top-button::after {
  z-index: -1;
  content: "";
  position: absolute;
  left: 3px;
  top: 3px;
  width: 45px;
  height: 45px;
  -webkit-animation: ripple 1.6s ease-out infinite;
  -moz-animation: ripple 1.6s ease-out infinite;
  animation: ripple 1.6s ease-out infinite;
  opacity: 0;
  background-image: -moz-linear-gradient(0deg, #69ddcc 0%, #69ddcc 100%);
  background-image: -webkit-linear-gradient(0deg, #fb8a42 0%, #fb8a42 100%);
  border-radius: 100%;
}

.top-wrap .go-top-button:hover {
  background-color: #222;
  color: #fff;
}

/***
====================================================================
    lan
====================================================================
***/

.header-lang {
  position: relative;
  z-index: 1000;
}
.header-lang .box {
  height: 34px;
  width: 90px;
  cursor: pointer;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  align-items: center;
  padding: 0 7px;
}
.header-lang .box img {
}
.header-lang .box em {
  margin: 0 7px;
  line-height: 18px;
  font-size: 18px;
  color: #fff;
  text-transform: uppercase;
}
.header-lang .box i {
  width: 15px;
  line-height: 18px;
  font-size: 16px;
  text-align: center;
  color: #fff;
}
.header-lang .lang-box {
  position: absolute;
  right: 60px;
  top: 0;
  z-index: 200;
  background: #fff;
  transform: rotate3d(1, 0, 0, -90deg);
  -webkit-transform: rotate3d(1, 0, 0, -90deg);
  -webkit-transform-origin: 0 0 0;
  transform-origin: 0 0 0;
  opacity: 0;
  transition: transform 0.5s, opacity 0.3s;
  -webkit-transition: -webkit-transform 0.5s, opacity 0.3s;
  box-shadow: 0 0 10px rgba(63, 62, 62, 0.2);
}
.header-lang .lang-box::before {
  content: "";
  position: absolute;
  right: -58px;
  top: 32px;
  overflow: hidden;
  border-right: 8px solid transparent;
  border-bottom: 8px solid var(--color-primary);
  border-left: 8px solid transparent;
  display: block;
}
.header-lang ul {
  display: block;
  overflow: hidden;
width: 200px;
    height: 160px;
    overflow-y: auto;
  position: absolute;
  left: -35px;
  top: 40px;
  z-index: 200;
  background: rgba(10, 119, 188, 0.8);
  border-top: none;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
}
.header-lang ul li {
  line-height: 32px;
  border-bottom: 1px solid rgba(51, 51, 51, 0.2);
  padding: 3px 8px;
  width: 50%;
      text-align: left;
}
.header-lang ul li:last-child {
  border: none;
}
.header-lang ul li a {
  color: #fff;
  font-size: 16px;
}
.header-lang ul li:hover {
  background: var(--color-primary);
}
.header-lang ul li img {
  vertical-align: middle;
  margin-right: 8px;
}
.header-lang:hover .lang-box {
  visibility: visible;
  opacity: 1;
  transform: rotate3d(0, 0, 0, 0);
  -webkit-transform: rotate3d(0, 0, 0, 0);
}

/***
====================================================================
    Search Popup
====================================================================
***/
.search-popup {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100%;
  z-index: 99999;
  margin-top: -540px;
  transform: translateY(-100%);
  background-color: rgba(0, 0, 0, 0.9);
  -webkit-transition: all 500ms cubic-bezier(0.86, 0, 0.07, 1);
  -moz-transition: all 500ms cubic-bezier(0.86, 0, 0.07, 1);
  -o-transition: all 500ms cubic-bezier(0.86, 0, 0.07, 1);
  transition: all 1500ms cubic-bezier(0.86, 0, 0.07, 1); /* easeInOutQuint */
  -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  -moz-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  -o-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  transition-timing-function: cubic-bezier(
    0.86,
    0,
    0.07,
    1
  ); /* easeInOutQuint */
}
.search-popup {
  width: 100%;
}
.search-active .search-popup {
  transform: translateY(0%);
  margin-top: 0;
}
.search-popup .close-search {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  margin-top: -200px;
  border-radius: 50%;
  text-align: center;
  background-color: var(--color-primary);
  width: 70px;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  border-bottom: 3px solid #ffffff;
  -webkit-transition: all 500ms ease;
  height: 70px;
  line-height: 70px;
  text-align: center;
}
.search-active .search-popup .close-search {
  visibility: visible;
  opacity: 1;
  top: 50%;
  -webkit-transition-delay: 1500ms;
  -moz-transition-delay: 1500ms;
  -ms-transition-delay: 1500ms;
  -o-transition-delay: 1500ms;
  transition-delay: 1500ms;
}
.search-popup form {
  position: absolute;
  max-width: 700px;
  top: 50%;
  left: 15px;
  right: 15px;
  margin: -35px auto 0;
  transform: scaleX(0);
  transform-origin: center;
  background-color: #111111;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
.search-active .search-popup form {
  transform: scaleX(1);
  -webkit-transition-delay: 1200ms;
  -moz-transition-delay: 1200ms;
  -ms-transition-delay: 1200ms;
  -o-transition-delay: 1200ms;
  transition-delay: 1200ms;
}
.search-popup .form-group {
  position: relative;
  margin: 0px;
  overflow: hidden;
}
.search-popup .form-group input[type="text"],
.search-popup .form-group input[type="search"] {
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 50px;
  color: #000000;
  height: 70px;
  width: 100%;
  padding: 10px 30px;
  background-color: #ffffff;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  font-weight: 500;
  text-transform: capitalize;
}
.search-popup .form-group input[type="submit"],
.search-popup .form-group button {
  position: absolute;
  right: 0px;
  top: 0px;
  height: 70px;
  line-height: 70px;
  background: transparent;
  text-align: center;
  font-size: 24px;
  color: var(--btn-bg);
  padding: 0;
  cursor: pointer;
  -webkit-transition: all 500ms ease;
  border: none;
}
.search-popup .form-group input[type="submit"]:hover,
.search-popup .form-group button:hover {
  color: #000000;
}
.search-popup .form-group button i {
  font-size: 28px;
}
.search-popup input::placeholder,
.search-popup textarea::placeholder {
  color: #000000;
}
.search-popup .close-search.style-two {
  position: absolute;
  right: 25px;
  left: auto;
  color: #ffffff;
  width: auto;
  height: auto;
  top: 25px;
  margin: 0px;
  border: none;
  background: none !important;
  box-shadow: none !important;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.flaticon-multiply:before {
  content: inherit;
}
button.close-search i {
  font-size: 25px;
  color: #fff;
  display: inline-block;
}
span.flaticon-multiply i {
  display: inline-block;
  color: var(--link-color-hover);
}

/*==================================================
 <-- roofing service Header Top Menu Area Css-->
===================================================*/

.roofing-topbar-section {
  padding: 8px 0;
  background: #286a46;
}

.roofing-top-menu ul {
  list-style: none;
}

.roofing-top-menu ul li {
  display: inline-block;
  margin-right: 36px;
  position: relative;
}

.roofing-top-menu ul li a::after {
  position: absolute;
  content: "";
  height: 30px;
  width: 2px;
  background: #3a3a42;
  left: -22px;
  top: -2px;
  opacity: 0.702;
}

.roofing-top-menu ul li.line a::after {
  display: none;
}

.roofing-top-menu ul li a {
  display: inline-block;
  text-decoration: none;
  color: #ffffff;
  font-size: 14px;
}

.roofing-top-menu ul li a i {
  color: var(--link-color-hover);
  font-size: 15px;
  margin-right: 7px;
}

.roofing-top-content-menu {
  text-align: right;
}

.roofing-top-content {
  display: inline-block;
  margin-right: 25px;
  position: relative;
}

.roofing-top-content select#Language {
  background: no-repeat;
  border: none;
  font-size: 17px;
  color: #ffffff;
  font-weight: 400;
  outline: 0;
}

.roofing-top-content::before {
  position: absolute;
  content: "";
  height: 30px;
  width: 2px;
  opacity: 0.702;
  background: #3a3a42;
  right: -22px;
}

.roofing-top-content option {
  background: #19142d;
  font-size: 16px;
}

.roofing-top-social-icon {
  display: inline-block;
}

.roofing-top-social-icon ul li {
  display: inline-block;
  margin-left: 13px;
}

.roofing-top-social-icon ul li a i {
  color: #ffffff;
  font-size: 15px;
  transition: 0.5s;
}

.roofing-top-social-icon ul li a:hover i {
  color: var(--link-color-hover);
}

/*==================================================
 <-- roofing service Header  Menu Area Css-->
===================================================*/

.roofing-header-section {
  background: #ffffff;
  position: relative;
  z-index: 999;
}
.roofing-header-section .logo img {
  max-width: 250px;
}

.roofing-header-section::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 30%;
  top: 0;
  left: 0px;
  background: #212429;
  z-index: -1;
}

.roofing-header-section::after {
  position: absolute;
  content: "";
  width: 51px;
  height: 79px;
  background: #212429;
  right: 68%;
  top: 50%;
  transform: translateY(-50%);
  clip-path: polygon(100% 43%, 100% 43%, -29% 100%, 0% 8%);
  z-index: -999;
}

.roofing-menu {
  text-align: right;
  padding: 35px 0;
}

.roofing-menu ul {
  list-style: none;
}

.roofing-menu ul li {
  display: inline-block;
  margin-right: 28px;
}

.roofing-menu ul li a {
  display: inline-block;
  color: #141422;
  font-size: 17px;
  font-weight: 500;
  /* padding: 46px 0; */
  text-decoration: none;
  transition: 0.5s;
  text-shadow: 0 0 3px #fff;
}

.roofing-menu ul li a:hover {
  color: var(--link-color-hover);
}

.roofing-menu ul li a i {
  font-size: 12px;
  margin-left: 4px;
}

.roofing-search-button {
  text-align: right;
}

.roofing-social-menu {
  display: inline-block;
}

.roofing-social-menu ul li {
  display: inline-block;
  margin-left: 10px;
}

.roofing-social-menu ul li a i {
  color: #141422;
  font-size: 28px;
}

a.handbag {
  position: relative;
}

a.handbag:before {
  position: absolute;
  content: "0";
  font-size: 11px;
  color: #fff;
  font-weight: 500;
  background: var(--color-primary);
  width: 15px;
  height: 15px;
  line-height: 15px;
  text-align: center;
  border-radius: 100%;
  left: 11px;
  top: -8px;
}

/* sticky css */

.sticky-nav {
  left: 0;
  margin: auto;
  top: 0;
  width: 100%;
  position: fixed !important;
  box-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.07);
  -webkit-animation: 300ms running fadeInDown;
  animation: 500ms running fadeInUp;
  -webkit-box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1);
  transition: 0.5s !important;
  background: #e3e3e3 !important;
  z-index: 9999 !important;
  animation-name: slideInDown;
  padding: 0 30px;
}

/* sub menu area css */
.roofing-menu ul .sub-menu {
  background: #fff;
  position: absolute;
  top: 125%;
  border-radius: 5px;
  width: 217px;
  text-align: left;
  margin: 0;
  -webkit-box-shadow: 0px 1px 3px rgb(0 0 0 / 30%);
  transition: 0.5s;
  visibility: hidden;
  border-top: 2px solid var(--color-primary);
  opacity: 0;
  z-index: 11;
}
.roofing-menu ul .sub-menu ul li {
  display: inline-block;
  margin-left: 0;
  width: 100%;
}
.roofing-menu ul .sub-menu ul li a {
  padding: 12px 20px;
  text-align: left;
  width: 100%;
  display: inline-block;
  visibility: inherit !important;
  color: #202020;
  margin: 0;
}
.roofing-menu ul .sub-menu ul li a:hover {
  background: var(--link-color-hover) !important;
  color: #fff;
}
.roofing-menu ul li:hover .sub-menu {
  visibility: visible;
  opacity: 1;
  top: 99%;
}

/* header style two */

.roofing-header-section.style-two::before {
  background: #1c1632;
  height: 100%;
}

.roofing-header-section.style-two::after {
  display: none;
}

/* roofing btn */

.roofing-btn {
  display: inline-block;
  margin-left: 32px;
}

.roofing-btn a {
  display: inline-block;
  text-decoration: none;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 1px;
  background: var(--link-color-hover);
  color: #fff;
  padding: 13px 25px;
  border-radius: 3px;
  position: relative;
  z-index: 1;
}

.roofing-btn a::before {
  position: absolute;
  content: "";
  background-color: #19142d;
  width: 101%;
  height: 0%;
  left: 50%;
  top: 50%;
  border-radius: 3px;
  transform: translate(-50%, -50%) rotate(0deg);
  z-index: -1;
  transition: all 500ms ease;
}

.roofing-btn a:hover::before {
  height: 103%;
}

/* responsive */
@media (min-width: 1601px) and (max-width: 1800px) {
  .roofing-header-section::before {
    width: 26%;
  }
  .roofing-header-section::after {
    right: 71.5%;
  }
}
@media (min-width: 1200px) and (max-width: 1600px) {
  /* topbar css */
  .roofing-header-section .logo img {
    max-width: 200px;
  }
  .roofing-top-menu ul li {
    margin-right: 34px;
  }

  /* roofing header */

  .roofing-header-section::before {
    width: 26%;
  }

  .roofing-header-section::after {
    right: 71%;
  }

  /* roofing menu css */

  .roofing-menu ul li a i {
    margin-left: 0px;
  }

  .roofing-menu ul li {
    margin-right: 4px !important;
  }

  .roofing-social-menu ul li {
    margin-left: 5px;
  }

  .roofing-btn {
    margin-left: 15px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  /* stiky nav */

  .sticky-nav {
    top: -2px;
  }

  /* topbar css */

  .roofing-topbar-section {
    padding: 14px 0;
  }

  .roofing-top-menu ul li {
    margin-right: 8px;
  }

  .roofing-top-menu ul li a {
    font-size: 13px;
  }

  .roofing-top-menu ul li a i {
    font-size: 13px;
    margin-right: 3px;
  }

  .roofing-top-menu ul li ::after {
    display: none;
  }

  .roofing-top-content select#Language {
    font-size: 16px;
  }

  .roofing-top-social-icon ul li a i {
    font-size: 14px;
  }

  /* roofing header section */

  .roofing-header-section::before {
    width: 26%;
  }

  .roofing-header-section::after {
    right: 71%;
  }

  .logo a img {
    width: 90%;
  }

  /* roofing menu css */

  .roofing-menu ul li {
    margin-right: 0 !important;
  }

  .roofing-menu ul li a {
    font-size: 16px;
  }

  .roofing-menu ul li a i {
    margin-left: 0px;
    font-size: 10px;
  }

  .roofing-social-menu ul li {
    margin-left: 5px;
  }

  .roofing-social-menu ul li a i {
    font-size: 18px;
  }

  .roofing-btn {
    margin-left: 10px;
  }

  .roofing-btn a {
    font-size: 16px;
    padding: 12px 12px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {

}

@media only screen and (min-width: 600px) and (max-width: 767px) {
  .roofing-topbar-section {
    display: none;
  }

  .roofing-header-section {
    display: none;
  }
}

/* small mobile :480px. */
@media only screen and (min-width: 480px) and (max-width: 599px) {
  .roofing-topbar-section {
    display: none;
  }

  .roofing-header-section {
    display: none;
  }
}

/* small mobile :150px. */
@media only screen and (min-width: 150px) and (max-width: 479px) {
  .roofing-topbar-section {
    display: none;
  }

  .roofing-header-section {
    display: none;
  }
}

/*xl device min width*/
@media screen and (min-width: 992px) {
  .pl-lg-50 {
    padding-left: 50px;
  }
}

/*xl device min width*/
@media screen and (min-width: 1200px) {
}

@media (min-width: 1500px) {
  .roofing-header-section .container {
    max-width: 1500px;
  }
}



@media screen and (max-width:992px){
.banner .slider-section .container {
    position: initial !important;
      padding: 10px;
}
.slider-content {
    padding: 0;
  text-align: center;
}
.slider-content h4 {
    display: none;
}
.slider-content h2 {
    display: none;
}
.slider-content p {
    display: none;
}
}
body > div.slider-list.owl-carousel.banner.owl-loaded.owl-drag > div.owl-stage-outer > div > div > div > div > div > div > div{
    padding: 0 !important;
}


.zas{
    height: 50px;
    background-color: #286a46;}
    
    .mobile-menu{
 background: #666;
  float: left;
  min-height: 60px;
  padding: 4px 0 0;
  position: relative;
  width: 100%;
  z-index: 999;
   }

.roofing-mobile-menu .logo {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  z-index: 100;
  max-height: 40px;
}
  
  
  @media (max-width: 991px) {
  .roofing-header-section {
   
  }
    .roofing-header-section::before,.roofing-header-section::after,.header-menu{
     display: none;
    }
    .roofing-header-section{display: block !important;padding: 10px 0;}
    
    .roofing-mobile-menu{display: none !important;}
    
    .roofing-top-social-icon{display: none !important;}
    
        .roofing-topbar-section {
    display: block !important;
  }
    
    .roofing-top-menu ul li a::after{
    display: none !important;
    }
    .roofing-top-menu ul li{
    margin-right:0;
    }
    
    .roofing-top-content::before{
    display: none !important;
    }
    
    #sticky-header .roofing-search-button .mo-header-menu{display: inline-block !important;}
    
    .roofing-header-section .logo img {
  max-width: 200px;
}
    
    .roofing-btn a{font-size: 14px;padding: 7px 15px;}
    
    .roofing-btn {
  margin-left: 12px;
}
}

@media (max-width: 768px) {
  .roofing-btn{display:none;}
  .roofing-social-menu{margin-right: 20px;}
}
  

#sticky-header .roofing-search-button .mo-header-menu{width:40px;height:40px;display:none;text-align:center;}
#sticky-header .roofing-search-button .mo-header-menu i{color:#333;font-size:24px;line-height:40px;}  
  
 .mo-leftmenu{background:#F5F5F5;position:fixed;top:0;left:0;bottom:0;overflow-x:hidden;box-sizing:content-box;width:70%;max-width:350px;-webkit-overflow-scrolling:touch;z-index:9999 !important;transition:all .4s cubic-bezier(0.7,0,0.2,1);box-shadow:0 0 40px rgba(82,85,90,0.1);transform:translateX(-100%)}
.mo-leftmenu .tit{height:50px;background:#485157;display:flex;justify-content:space-between;align-items:center;}
.mo-leftmenu .tit h6{color:#fff;padding:0 0 0 20px;font-size:20px;font-weight:bold;}
.mo-leftmenu .tit span{cursor:pointer;width:50px;text-align:center;display:block;}
.mo-leftmenu .tit span i{color:#fff;font-size:16px;}
.mo-leftmenu > ul{}
.mo-leftmenu > ul > li{line-height:50px;font-size:15px;border-top:2px solid #e5e5e5;position:relative;}
.mo-leftmenu > ul > li > a{padding:0 0 0 15px;}
.mo-leftmenu > ul > li > i {position:absolute;color:#333;font-size:12px;top:10px;right:0;z-index:1;width:30px;line-height:30px;text-align:center;cursor:pointer;}
.mo-leftmenu > ul > li.active{}
.mo-leftmenu ul li a{color:#333;display: block;}
.mo-leftmenu ul li a:hover{text-decoration: none;}
.mo-leftmenu ul li ul{display:none;padding-bottom:10px;padding-left:15px;}
.mo-leftmenu ul li ul li{line-height:22px;position:relative;}
.mo-leftmenu ul li ul li i {position:absolute;color:#333;font-size:12px;top:1px;right:0;z-index:1;width:30px;line-height:30px;text-align:center;cursor:pointer;}
.mo-leftmenu ul li ul li a{padding:5px 0 5px 10px;margin-right:30px;}

.menu-transitioning{transform:translateX(0)} 
                            
                            
                            
                            @media screen and (max-width:992px){
/*.zaq1 {
   position: absolute;    background: initial;
}
.zaq2{
	display: none;
}
.header-lang .box em {
    color: black;
}.header-lang .box i {
    color: black;
}*/
                              .zaq3 {
 width:50% !important;
}
.zaq2{
	width:50% !important;
}
.qea1{
	    width: 30% !important;}                              
               .qwa2{
	    width: 70% !important;}                    
                              
}
                     
                     
                     @media screen and (max-width:768px){

body > div.roofing-topbar-section.zaq1 > div > div > div.col-lg-6.col-md-6.zaq2 > div > ul > li:nth-child(2){
	display: none;
}.roofing-header-section .logo img {
    max-width: 150px;
}
                       .banner .slider-section .container {
    padding: 0;
}
                       
}
.sidebanner img{
 min-height: 100px;
}