/*===========================
<-- service Loader Css -->
=============================*/
.loader-wrapper {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  transition: 0.8s 1s ease;
  z-index: 10000;
}

.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: var(--color-second);
  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;
}

/*
<!-- ============================================================== -->
<!-- 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%, var(--color-primary) 100%);
  background-image: -webkit-linear-gradient(0deg, #d1651a 0%, var(--color-primary) 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, var(--btn-hover, --color-second) 0%, var(--btn-hover, --color-second) 100%);
  background-image: -ms-linear-gradient(0deg, var(--btn-hover, --color-second) 0%, var(--btn-hover, --color-second) 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: var(--btn-hover, --color-second);
  color: #fff;
}


/*** 
====================================================================
    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: 30px;
  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;
}

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

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

.roofing-topbar-section {
  padding: 0px 0;
  background: var(--color-second);
}

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

.roofing-top-menu ul li {
  display: inline-block;
  margin-right: 30px;
  position: relative;
  vertical-align: middle;
}

.roofing-top-menu ul li a::after {
  position: absolute;
  content: "";
  height: 30px;
  width: 2px;
  background-color: color-mix(in srgb, var(--color-second) 80%, #fff 20%);
  left: -15px;
  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(--color-primary);
  margin-right: 5px;
}

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

.roofing-top-menu ul li  i {
  color: var(--color-primary);
  margin-right: 5px;
}

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

.roofing-top-content-menu .lang-selector {
  vertical-align: middle;
}

.roofing-top-social-icon {
  display: inline-block;
  border-left: 1px solid color-mix(in srgb, var(--color-second) 80%, #ffffff 20%);
}

.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(--color-primary);
}

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

.roofing-header-section {
  background: #ffffff;
  position: relative;
  z-index: 999;
}

.roofing-header-section::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 30%;
  top: 0;
  left: 0px;
  background: var(--color-primary);
  z-index: -1;
}

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

.roofing-header-section .logo img {
  max-height: 56px;
  max-width: 216px;
}

.roofing-menu {
  padding: 31px 0;
  text-align: center;
}

.roofing-menu ul {
  list-style: none;
      margin-left: 14px;
}

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

.roofing-menu ul li a {
  display: inline-block;
  color: var(--title-text-color);
  font-size: 17px;
  font-weight: 500;
  padding: 15px 0;
  text-decoration: none;
  transition: 0.5s;
}

.roofing-menu ul li.active > a,
.roofing-menu ul li a:hover {
  color: var(--color-primary);
}

.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 {
  font-size: 28px;
}

/* 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-color: transparent;
  position: absolute;
  top: 125%;
  width: 217px;
  text-align: left;
  margin: 0;
  transition: 0.5s;
  visibility: hidden;
  opacity: 0;
  z-index: 11;
}

.roofing-menu ul .sub-menu ul {
  -webkit-box-shadow: 0px 1px 3px rgb(0 0 0 / 30%);
  border-top: 2px solid var(--color-primary);
  border-radius: 5px;
  background-color: #fff;
}

.roofing-menu > ul > li > .sub-menu {
  padding-top: 31px;

}

.roofing-menu ul .sub-menu li {
  position: relative;
  display: inline-block;
  margin-left: 0;
  width: 100%;
}
.roofing-menu ul .sub-menu li a {
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 12px 25px 12px 20px;
  margin: 0;
  text-align: left;
  visibility: inherit !important;
  color: var(--title-text-color);
}
.roofing-menu ul .sub-menu li a:hover {
  background: var(--color-primary) !important;
  color: #fff;
}

.roofing-menu ul .sub-menu li a i {
  position: absolute;
  right: 10px;
  top: 50%;
  margin: 0;
  transform: translateY(-50%) rotate(-90deg);
}

.roofing-menu ul li:hover > .sub-menu {
  visibility: visible;
  opacity: 1;
  top: 99%;
}

.roofing-menu ul .sub-menu li .sub-menu {
  top: 0;
  left: 100%;
}

/* mobile menu */

.roofing-mobile-menu .mobile-menu {
  position: relative;
  overflow: hidden;
}

.roofing-mobile-menu .logo {
  position: absolute;
  top: 18px;
  left: 10px;
  z-index: 1000;
  max-height: 40px;
}

/* responsive */

@media (min-width: 1200px) and (max-width: 1600px) {
  /* topbar css */

  .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: 15px;
  }

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

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

/* @media (min-width: 1200px) and (max-width: 1280px) {
  .roofing-header-section .logo img {
    width: 80%;
  }
} */

@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%;
  }

  .roofing-header-section .logo img {
    width: 80%;
  }

  /* roofing menu css */

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

  .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 !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .roofing-topbar-section {
    display: none;
  }

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

@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) {
}

/* inquiry-popup*/
.inquiry-popup.is-visible {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity .3s 0s, visibility 0s 0s;
  -moz-transition: opacity .3s 0s, visibility 0s 0s;
  transition: opacity .3s 0s, visibility 0s 0s
}

.inquiry-popup {
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, .5);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity .3s 0s, visibility 0s .3s;
  -moz-transition: opacity .3s 0s, visibility 0s .3s;
  transition: opacity .3s 0s, visibility 0s .3s;
  z-index: 1000
}

.inquiry-popup .div_info {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: -286px;
  float: none;
  width: 80%;
  padding: 58px;
  background: #fff
}

.inquiry-popup .div_info h3 {
  padding-bottom: 20px;
  font-family: montserrat-bold;
  font-size: 26px;
  line-height: 24px;
  letter-spacing: 1px;
}

.inquiry-popup-close {
  position: absolute;
  right: 7%;
  top: 41px;
  font-size: 42px;
  color: #999
}

.inquiry-popup .inquirbox h5 {
  background: #F0B323;
}

.inquiry-popup .inquirbox .row,
.inquiry-popup .inquirbox .row > div {
  margin-bottom: 16px;
}

.inquiry-popup .inquirbox .row:last-of-type {
  margin-bottom: 0;
}

.inquiry-popup .inquirbox input[type="text"],
.inquiry-popup .inquirbox textarea {
  padding: 10px 10px;
  font-size: 16px;
  border: 1px solid #D2D2CF;
  width: 100%;
  line-height: 22px;
  text-align: left;
  color: #111;
  box-sizing: border-box;
}

.inquiry-popup .inquirbox textarea {
  max-width: 100%;
  width: 100%;
  resize: none;
}

.inquiry-popup .inquirbox input[type="text"]:focus,
.inquiry-popup .inquirbox textarea:focus {
  outline: 0;
  box-shadow: 0 0 10px rgba(63, 62, 62, 0.2);
}

.inquiry-popup .inquirbox .red {
  color: #f00;
  font-weight: bold;
}

.inquiry-popup .inquirbox img {
  cursor: pointer;
  margin-left: 3px;
  display: inline-block;
  vertical-align: middle;
}

.inquiry-popup .inquirbox .submit {
  margin: 0 auto;
  width: 100%;
  line-height: 42px;
  background: var(--color-primary);
  border-radius: var(--button-radius);
  text-align: center;
  display: block;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}

.inquiry-popup .inquirbox .submit:hover {
  background: none;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
}

.crm-form .inquirbox input[type="text"],
.crm-form .inquirbox textarea {
  padding: 10px 12px;
  font-size: 16px;
}

.crm-form .inquirbox .submit {
  margin: 0 auto;
  line-height: 45px;
  background: var(--color-primary);
  border-radius: var(--button-radius);
  text-align: center;
  display: block;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}

.crm-form .inquirbox .submit i {
  font-size: 22px;
}

.crm-form .inquirbox .submit:hover {
  background: none;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
}



.lang-selector ul {
    height: 160px;
}