body {
  touch-action: manipulation;
  user-select: none;
  -webkit-user-select: none;
}

h1, h2, h3, h4, h5, h6{
  font-weight: 700;
}
h1{
  font-size: 48px;
}

h2{
  font-size: 40px;
}

h3{
  font-size: 32px;
}

h4{
  font-size: 24px;
}

h5{
  font-size: 16px;
 
}
.hidden{
  overflow: hidden;
}

a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;

}
.elementor a:hover{
  color: #9b8a78;
}



@media screen and (max-width: 576px) {
  h1{
    font-size: 32px;
  }

  h2{
    font-size: 28px;
  }

  h3{
    font-size: 24px;
  }
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #333;
  color: #fff;
  font-family: "Inter", sans-serif;
}

body.menu-open {
  overflow: hidden;
}
body.menu-open .header-logo, body.menu-open .header-search {
  z-index: -1;
}

.hamburger-menu {
  width: 30px;
  height: 14px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 10000;
}

.hamburger-menu span {
  display: block;
  width: 30px;
  height: 2px;
  background-color: #fff;
}

.hamburger-menu span:nth-child(2) {
  display: none;
}

@media screen and (max-width: 576px) {
  .hamburger-menu {
      width: 24px;
      height: 16px;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      gap: 5px;
  }

  .hamburger-menu span {
      width: 24px;
      height: 2px;
  }
  .hamburger-menu span:nth-child(2) {
      display: block;
  }
}
.hamburger-menu-body {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.hamburger-menu-body.show {
  overflow-y: auto;
  opacity: 1;
  visibility: visible;
}

/* 关闭按钮 */
.close-btn {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  z-index: 10000;
  display: none;
}
@media screen and (max-width: 576px) {
  .close-btn{
      width: 20px;
  height: 20px;
  }
}

.close-btn::before,
.close-btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  transition: all 0.3s ease;
}

.close-btn::before {
  transform: rotate(45deg);
}

.close-btn::after {
  transform: rotate(-45deg);
}

.hamburger-menu-body.show .close-btn {
  display: block;
}

.hamburger-menu-body.show .hamburger-menu {
  display: none;
}

/* 容器样式 */
.container {
  max-width: 990px;
  margin: 0 auto;
  padding: 0 15px;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  transition: all 0.3s ease;
}

.hamburger-menu-body.show .container {
  opacity: 1;
}
@media screen and (max-width: 1204px) {
  .hamburger-menu-body.show .container{
      padding-top: 80px;
      position: relative;
      top: 0;
      left: 0;    
      transform: translate(0%, 0%);
  }
}

@media screen and (max-width: 576px) {
  .hamburger-menu-body.show .container{
      padding-top: 50px;
      position: relative;
  }
}


.header {
  padding: 20px 0;
  text-align: center;
}

.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.search-box {
  flex: 0 1 410px;
  min-width: 280px;
  position: relative;
  transition: all 0.3s ease;
}
 
@media screen and (max-width: 1024px) {
  .search-box {
      flex: 0 1 100%;
      min-width: 100%;
  }
  .container {
      max-width: 100%;
      padding: 0 40px;
  }
}
@media screen and (max-width: 576px) {
  .container {
      padding: 0 16px;
  }
}
.search-box span{
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  cursor: pointer;
  transition: all 0.3s ease;
}

.search-box input {
  width: 100%;
  padding: 10px 40px !important;
  outline: none;
  background: transparent;
  border: 1px solid #fff !important;
  color: #fff;
  border-radius: 0 !important;
}
.search-box input:focus{
  border: 1px solid #D1C9C1;
}
.search-box span svg:focus{
  color:#D1C9C1;
}
.nav-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.nav-btn {
  padding: 10px 20px;
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  cursor: pointer;
  border-radius: 0;
  transition: all 0.2s ease-in-out;
}
.nav-btn:last-child{
      background: #fff;
      color: #101010;
  }
  .nav-btn:last-child:hover{
      background: transparent;
      color: #fdfdfd;
  }
@media screen and (max-width: 1024px) {
  .nav-buttons{
      width: 100%;
      justify-content: start;
  }

}
@media screen and (max-width: 576px) {
  .nav-buttons {
      gap: 16px;
  }
  .nav-btn{
      width: calc(50% - 8px);
      padding:10px;
  }
  .nav-btn:last-child{
      width: 100%;
  }
}
.nav-btn:hover{
  background: #fff;
  color: #101010;
}

.main-content {
  display: flex;
  margin-top: 30px;
  gap: 30px;
  justify-content: center;
}
.mobile-menu {
  display: none;
}
@media screen and (max-width: 576px) {
  .web-menu  {
    display:none;
  }
  .mobile-menu{
      display: block;
  }
  .mobile-menu .menu-box .main-menu .nav-item,
  .mobile-menu .menu-box .main-menu .nav-item a{
      font-size: 24px;
      font-weight: 700;
      color: #fff;
  }
}


.main-content ul {
  width: 100%;
  display: flex;
  gap: 20px;
  justify-content: space-between;    
}


.main-content   ul li {
  list-style: none; 
  flex: 1;
}

.main-content  ul li.main-menu div{
  font-size: 24px;
  font-weight: 700;
}

.main-content  ul li.main-menu div a{
  color: #888;
}

.nav-item {
  padding: 12px 0;
  font-weight: 700;
  cursor: pointer;
  color: #888;
  transition: all 0.2s ease-in-out;
}

.nav-item.active, 
.nav-item.active a,  
.nav-item:hover, 
.nav-item:hover a {
  color: #fff;
}

.main-content  ul li.sub-menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.main-content  ul li.sub-menu .nav-item {
  font-size: 18px;
  padding: 8px 0;
  transition: color 0.3s ease;
}
.main-content.mobile-menu  ul li.sub-menu .nav-item{
  color: #fdfdfd;
}
.main-content  ul li .nav-item a:hover {
  color: #fff;
}
.main-content  ul li.sub-menu .nav-item:hover {
  color: #fff;
}

/* 移动端菜单样式 */
.mobile-menu .main-menu {
  display: flex;
  flex-direction: column;
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
}

.mobile-menu .nav-item {
  padding: 16px 0;
 
}
.mobile-menu .sub-sub-menu .nav-item {
  padding: 10px 0;
}
.mobile-menu .menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;

}
.mobile-menu .menu-header {
  display: none;
}

.mobile-menu .menu-header .back-btn {
  display: none;
  margin-right: 16px;
  color: #fdfdfd;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  transition: all 0.2s ease-in-out;
}

.mobile-menu.show-submenu .menu-header .back-btn.show {
  display: block;
}


.mobile-menu .menu-header .title {
  font-size: 24px;
  font-weight: 700;
  color: #fdfdfd;
}


.mobile-menu.show-submenu .menu-header {
  display: flex;
}
.mobile-menu.show-submenu .main-menu > .nav-item {
  display: none;
}

.mobile-menu.show-submenu .sub-menu {
  display: block;
}

.mobile-menu .sub-menu,
.mobile-menu .sub-sub-menu {
  display: none;
}

.mobile-menu.show-subsubmenu .sub-menu {
  display: none;
}

.mobile-menu.show-subsubmenu .sub-sub-menu {
  display: block;
}
.mobile-menu.show-subsubmenu .nav-item{
  color: #fdfdfd;
}

.fabricator-url-box {
  transition: left 0.3s ease-in-out;
}

.fabricator-url-box[data-status="open"] .open {
  display: none;
}



 .bg-white{
  background-color: #fff;
 }
 
.home-banner{
  position: relative;
  min-height: 720px;
}

.home-banner:after{
  content:"";
  width: 100%;
  height: 100%;
  position: absolute;
  top:0;
  left: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.12)),
  linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 100%);
  pointer-events: none;
}

@media (max-width: 768px) {
  .elementor-element.header-main {
      background: rgba(0, 0, 0, 0) !important; /* 移动端头部透明 */
  }
} 

 
.more-project .elementor-button{
   padding:0 !important;
}

.fabricator-at-aws .e-form__buttons {
  margin-top: 67px;
}

@media screen and (max-width: 807px) {
  .fabricator-at-aws .e-form__buttons {
    margin-top: 10px;
  }
}
@media screen and (max-width: 767px) {
  .fabricator-at-aws .e-form__buttons {
    margin-top: 0;
  }
  #become-fabricator-aws-submit {
    width: 100%;
  }
}
.subscribe-img-box {
  height: 100%;
}
.complementary-top-img {
  width: 361px;
  height: 361px;
  padding: 32px;
}
.product-loop .swiper-pointer-events {
  padding-right: 190px;
}
.project-loop .swiper-pointer-events {
  padding-right: 190px;
}



.related-img-box {
  height: 235px;
}
.related-img-box img {
  display: block;
  width: 100%;
  height: 235px;
  object-fit: contain;
}

.product-content ul {
  padding-left: 17px;
}

.compatible-hardwarer
  .swiper
  .swiper-wrapper
  .e-con-inner
  .elementor-widget-shortcode {
  height: 100%;
  max-height: 200px;
}
.compatible-hardwarer
  .swiper
  .swiper-wrapper
  .e-con-inner
  .elementor-widget-shortcode
  a
  img {
  display: block;
  height: 100%;
  object-fit: cover;
}

.product-detail-tabs .elementor-toc__list-wrapper li:last-child {
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}
#product-project-features​ .swiper-wrapper .swiper-slide{
  max-width: 332px;
}
.product-slider-box .swiper .swiper-wrapper .swiper-slide {
  max-width: 418px;
}
 
.project-slider-box .elementor-widget-container img {
  display: block;
  width: 100%;
  min-height: 304px;
  object-fit: cover;
}



.product-slider-top-box .swiper .swiper-slide , #related-products .swiper .swiper-slide{
  max-width: 511px;
}

.product-slider-top-box .elementor-swiper-button,
.hardware-detail-related .elementor-swiper-button,
.product-slider-box .elementor-swiper-button,
.project-slider-top-box .elementor-swiper-button,
.project-slider-box .elementor-swiper-button {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #9b8a78 !important;
  z-index: 12;
}

.product-slider-top-box .elementor-swiper-button svg,
.hardware-detail-related .elementor-swiper-button svg,
.product-slider-box .elementor-swiper-button svg,
.project-slider-top-box .elementor-swiper-button svg,
.project-slider-box .elementor-swiper-button svg {
  font-size: 14px;
}

.product-slider-top-box .elementor-swiper-button:hover,
.hardware-detail-related .elementor-swiper-button:hover,
.product-slider-box .elementor-swiper-button:hover,
.product-slider-top-box .elementor-swiper-button:focus,
.product-slider-box .elementor-swiper-button:focus,
.hardware-detail-related .elementor-swiper-button:focus,
.project-slider-top-box .elementor-swiper-button:hover,
.project-slider-box .elementor-swiper-button:hover,
.project-slider-top-box .elementor-swiper-button:focus,
.project-slider-box .elementor-swiper-button:focus {
  background: #9b8a78;
  background-position: center;
  background-repeat: no-repeat;
}

.product-slider-top-box .elementor-swiper-button:hover svg path,
.hardware-detail-related .elementor-swiper-button:hover svg path,
.product-slider-box .elementor-swiper-button:hover svg path,
.product-slider-top-box .elementor-swiper-button:focus svg path,
.hardware-detail-related .elementor-swiper-button:focus svg path,
.product-slider-box .elementor-swiper-button:focus svg path,
.project-slider-top-box .elementor-swiper-button:hover svg path,
.project-slider-box .elementor-swiper-button:hover svg path,
.project-slider-top-box .elementor-swiper-button:focus svg path,
.project-slider-box .elementor-swiper-button:focus svg path {
  fill: #e9e9e9 !important;
  color: #e9e9e9 !important;
}

.carousel-counter {
  text-align: center;
  margin-top: 10px;
  font-size: 14px;
  color: #666;
}

.product-register ul li {
  padding: 16px !important;
  margin: 0 !important;
  position: relative;
}
.product-register ul li:before {
  content: "";
  width: 32px;
  height: 32px;
  background-image: url("/wp-content/uploads/2025/02/register-approval.svg");
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  right: 16px;
  top: 16px;
}

.product-button .elementor-button {
  width: 100%;
}
.product-button .elementor-widget-button {
  margin-right: 16px;
}
@media screen and (max-width: 576px) {
  .product-button .elementor-widget-button {
    margin-right: 0;
  }
}
.product-detail-sub-title {
  color: #9b8a78;
  font-weight: 700;
  margin-right: 3px;
  line-height: 1.2;
}
 
 
.hardware-detail-related .related-item img {
  height: 100%;
  object-fit: cover;
}
 
 
#key-features-description{
  border: 1px solid #9b8a78;
}


#compatible-hardwarer
  .swiper
  .swiper-wrapper
  .swiper-slide
  .e-con-inner
  .elementor-widget-container {
  min-height: 100%;
}
#compatible-hardwarer
  .swiper
  .swiper-wrapper
  .swiper-slide
  .e-con-inner
  .elementor-widget-container
  a,
#compatible-hardwarer
  .swiper
  .swiper-wrapper
  .swiper-slide
  .e-con-inner
  .elementor-widget-container
  a
  img {
  display: block;
  height: 100%;
}

#compatible-hardwarer
.swiper
.swiper-wrapper
.swiper-slide
.e-con-inner
.elementor-widget-container
a
img {
display: block;
height: 200px;
}


#compatible-hardwarer .e-con-inner > .elementor-widget {
  height: 100%;
}

@media screen and (max-width: 500px) {
  .hardware-detail-related .swiper{
    padding-right: 100px;
  }
  
  #compatible-hardwarer .swiper{
    padding-right: 100px;
  }
}


.tcdPageCode {
  padding: 15px 20px;
  color: #ccc;
  text-align: center;
}
.tcdPageCode a {
  display: inline-block;
  font-size: 16px;
  color: #e9e9e9;
  height: 24px;
  line-height: 24px;
  padding: 0 9px;
  vertical-align: middle;
  margin: 0 8px;
  transition:all  0.25s ease-in-out;
}
.tcdPageCode a:hover {
  text-decoration: none;
  background-color: #9b8a78;
  color: #e9e9e9;
}
.tcdPageCode span.current {
  display: inline-block;
  height: 24px;
  line-height: 24px;
  padding: 0 9px;
  margin: 0 8px;
  color: #e9e9e9;
  background-color: #9b8a78;
  vertical-align: middle;
}
.tcdPageCode span.disabled {
  display: inline-block;
  height: 24px;

  padding: 0 9px;
  margin: 0 8px;
  cursor: not-allowed;
  vertical-align: middle;
}
.tcdPageCode svg {
  width: 24px;
  height: 24px;
}
.tcdPageCode span.disabled svg path {
  color: #616161 !important;
  fill: #616161 !important;
}

.inspiration-item .elementor-pagination {
  padding: 15px 20px;
  color: #ccc;
  text-align: center;
}
.inspiration-item .elementor-pagination a {
  display: inline-block;
  font-size: 16px;
  color: #e9e9e9;
  height: 24px;
  line-height: 24px;
  padding: 0 9px;
  vertical-align: middle;
  margin: 0 8px;
  transition: all 0.3s ease;
}
.inspiration-item .elementor-pagination a:hover {
  text-decoration: none;
  color: #e9e9e9;
  background-color: #9b8a78;
}
.inspiration-item .elementor-pagination span.current {
  display: inline-block;
  height: 24px;
  line-height: 24px;
  padding: 0 9px;
  margin: 0 8px;
  color: #e9e9e9;
  background-color: #9b8a78;
  vertical-align: middle;
}
.inspiration-item .elementor-pagination span.disabled {
  display: inline-block;
  height: 24px;

  padding: 0 9px;
  margin: 0 8px;
  cursor: not-allowed;
  vertical-align: middle;
}
.inspiration-item .elementor-pagination svg {
  width: 24px;
  height: 24px;
}
.inspiration-item .elementor-pagination span.disabled svg path {
  color: #616161 !important;
  fill: #616161 !important;
}

#wers-tab #header-residential {
  padding: 0;
  margin: 0 16px;
  position: relative;
}


#wers-tab #header-residential:before,
#wers-tab #header-commercial:before {
  content: "";
  width: 82%;
  height: 4px;
  border-radius: 4px;
  background: #9b8a78;
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
}

#wers-tab .e-n-tab-title[aria-selected="true"],
#wers-tab .elementor-widget-n-tabs .e-n-tab-title[aria-selected="true"] a {
  font-weight: 700;
  opacity: 1 !important;
}
#wers-tab .e-n-tab-title[aria-selected="true"]::before,
#wers-tab .elementor-widget-n-tabs .e-n-tab-title[aria-selected="true"]:before {
  opacity: 1 !important;
}

#wers-tab #header-commercial {
  padding: 0;
  margin: 0 16px;
}

#wers-tab .e-n-tabs-heading {
  display: flex;
  padding-bottom: 36px;
}
/* .compatible-with {
  height: 178px;
} */
 
@media screen and (max-width: 1280px) {
  .residential-box{
     width:100%;
     padding: 0 40px;
 }
}
@media screen and (max-width: 767px) {
  .residential-box{
     padding: 0 16px;
 }
}

.elementor  .compatible-with img {
  display: block;
  width: 100%;
  height: 235px;
  object-fit: contain;
}

.wers-empty-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.wers-empty-main img {
  display: block;
  width: 300px;
}
.wers-empty-main h2 {
  font-size: 24px;
  color: #9b8a78;
  margin-top: 16px;
}

.wers-empty-main a {
  display: inline-block;
  border: 1px solid #9b8a78;
  color: #9b8a78;
  padding: 10px 16px;
  border-radius: 4px;
}

.wers-header .wers-header-text {
  width: calc(100% - 100px);
}
.wers-header .wers-header-img {
  width: 100px;
}
.wers-header .wers-header-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sub-h1 h1 {
  font-size: 32px !important;
}
@media screen and (max-width: 1204px) {
  .sub-h1 h1 {
    font-size: 24px !important;
  }
}

.related-item .related-item-img {
  width: 100%;
  height: 235px;
}
.related-item .e-con-inner .elementor-widget-shortcode {
  margin-bottom: 16px;
}
@media screen and (max-width: 576px) {
  .related-item .e-con-inner a {
    font-size: 16px !important;
  }
}


.related-item img {
  display: block;
  width: 100%;
  height: 235px;
  object-fit: cover;
}
.related-products .related-item img{
  object-fit: contain;
  height: 100%;
}
 
#fabricator-hubspot-form{
  display: none;
  
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

#fabricator-hubspot-form.active{
  display: flex;
}

.quote-request-modal-main{
   width: 100%;
   max-width: 587px;
   background-color: #262626;
   margin: 0 auto;
   padding: 40px;
}
@media screen and (max-width: 767px) {
  .quote-request-modal-main{
    max-width: 100%;
    height: 100%;
  }
}
@media screen and (max-width: 576px) {
  .quote-request-modal-main{
    padding:16px;
    overflow-y: auto;
  }
}
.quote-request-modal-main .close{
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 8px;
  margin-bottom: 24px;
}
.quote-request-modal-main h2{
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
  text-align: center;
}
.quote-request-modal-main  form{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.quote-request-modal-main form .hs-form-field {
 margin-bottom: 16px;
}

.quote-request-modal-main  form .hs-form-field  select{
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 700;
  height: 53px;
  border-color: #9b8a78  !important;
  outline: none;
  appearance: none;        
  -webkit-appearance: none;    
  -moz-appearance: none;  
   position: relative;
   background-color: #262626 !important;
 
}


.quote-request-modal-main form .hs-form-field input::placeholder{
  color: #6E6E6E;
  outline: none;
}



.quote-request-modal-main form input{
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  height: 53px;
  outline: none;
  border-color: #9b8a78  !important;
  padding-left: 52px;
}
.quote-request-modal-main  form   label{
  display: none;
}

.quote-request-modal-main .hs_firstname, .quote-request-modal-main .hs_lastname, .quote-request-modal-main .hs_email ,.quote-request-modal-main .hs_mobilephone{
  width: calc(50% - 8px);
   position: relative;
}
@media screen and (max-width: 576px) {
  .quote-request-modal-main .hs_firstname, .quote-request-modal-main .hs_lastname, .quote-request-modal-main .hs_email ,.quote-request-modal-main .hs_mobilephone{
    width: 100%;
  }
}
.quote-request-modal-main .hs_type_of_build__c, .quote-request-modal-main .hs_message { 
  width: 100%;
}
 
  
.quote-request-modal-main .hs_message textarea{
  border-color: #9b8a78  !important;
  height:117px ;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  outline: none;
}

.quote-request-modal-main .hs_submit{
  width: 100%;
  text-align: center;
}
.quote-request-modal-main .hs_submit .actions{
  display: flex;
}
.quote-request-modal-main .hs_submit .actions input{
  width: 100%;
  background-color: #fdfdfd;
  color: #262626;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border:1px solid #fdfdfd;
  height: 51px;
  padding:8px 16px;
}
.quote-request-modal-main .hs_submit .actions input:hover{
  background-color: transparent;
  color: #fdfdfd;
}

.quote-request-modal-main form .hs-form-field:before{
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);

  background-size: contain;
  background-repeat: no-repeat;
}
 
.quote-request-modal-main form .hs_type_of_build__c{
  position: relative;
}
.quote-request-modal-main   form .hs_type_of_build__c:before{
 
  background: url('/wp-content/uploads/2025/07/arrow-down.svg');
  width: 12px;
  height: 7px;
  background-size: cover;
  background-repeat: no-repeat;
  left: auto;
  right: 16px;
 
  
}



.quote-request-modal-main .hs_firstname:before{
  background-image: url("/wp-content/uploads/2025/03/quote-request-icon-user.svg");
}
.quote-request-modal-main .hs_lastname:before{
  background-image: url("/wp-content/uploads/2025/03/quote-request-icon-user.svg");
}
.quote-request-modal-main .hs_mobilephone:before{
  background-image: url("/wp-content/uploads/2025/03/quote-request-icon-phone.svg");
}
.quote-request-modal-main .hs_email:before{
  background-image: url("/wp-content/uploads/2025/03/quote-request-icon-email.svg");
}
.quote-request-modal-main .hs_type_of_build__c:before{  
  background-image: url("/wp-content/uploads/2025/03/quote-request-icon-building.svg");
}




 
.fabricator-url-box {
  background-color: #262626;
  border: 2px solid #9b8a78;
  position: fixed;
  left: 0;
  bottom: 100px;
  z-index: 123;
}

.fabricator-url-man {
  display: flex;
}
.complementary-products-main .complementary .compatible-with img {
  object-fit: cover;
}

.fabricator-url-man .close {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #9b8a78;
  padding: 0 16px;
  cursor: pointer;
}
@media screen and (max-width: 576px) {
  .fabricator-url-man .close {
    padding: 0 8px;
  }
}

.fabricator-url-man .open {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 49px;
  border-left: 1px solid #9b8a78;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 576px) {
  .fabricator-url-man .open {
    width: 23px;
  }
}

.fabricator-url-man .open p {
  font-weight: 700;
  margin-bottom: 0;
  color: #9b8a78;
  transform: rotate(90deg);
}
@media screen and (max-width: 576px) {
  .fabricator-url-man .open p {
    font-size: 12px;
  }
}

.fabricator-inner {
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.fabricator-inner a{
  color: #e9e9e9;
}

.fabricator-inner a:hover{
  color: #9b8a78;
}

@media screen and (max-width: 576px) {
  .fabricator-inner {
    padding: 16px;
  }
}

.fabricator-inner .text-box {
  display: block;
}

.fabricator-inner .text-box h3 {
  font-size: 14px;
  font-weight: 600;
  color: #e9e9e9;
  margin-bottom: 8px;
}
@media screen and (max-width: 576px) {
  .fabricator-inner .text-box {
    max-width: 200px;
  }
  .fabricator-inner .text-box h3 {
    font-size: 12px;
  }
}

.fabricator-inner .text-box p {
  font-size: 14px;
  color: #e9e9e9;
  margin-bottom: 8px;
}
@media screen and (max-width: 576px) {
  .fabricator-inner .text-box p {
    font-size: 12px;
  }
}

.fabricator-inner .text-box p img {
  vertical-align: sub;
  display: inline-block;
  margin-right: 8px;
}

.fabricator-inner .text-box p:last-of-type {
  margin-bottom: 0;
}

.fabricator-inner .logo-box {
  width: 145px;
  background-color: #fff;
}
@media screen and (max-width: 576px) {
  .fabricator-inner .logo-box {
    width: 72px;
  }
}

.fabricator-inner .logo-box img {
  display: inline-block;
  width: 100%;
}

.policies-inner-box ul,
.policies-inner-box ol {
  padding-left: 16px;
  margin-bottom: 16px;
}

 
form.cmxform {
  width: 370px;
  font-size: 1em;
  color: #333;
}

form.cmxform legend {
  padding-left: 0;
}

form.cmxform legend,
form.cmxform label {
  color: #333;
}

form.cmxform fieldset {
  border: none;
  border-top: 1px solid #c9dca6;
  background: url(../images/cmxform-fieldset.gif) left bottom repeat-x;
  background-color: #f8fdef;
}

form.cmxform fieldset fieldset {
  background: none;
}

form.cmxform fieldset p,
form.cmxform fieldset fieldset {
  padding: 5px 10px 7px;
  background: url(../images/cmxform-divider.gif) left bottom repeat-x;
}

form.cmxform label.error,
label.error {
 
  color: #ff6a55;
}
div.error {
  display: none;
}
input {
  border: 1px solid #9b9b9b;
}
input.checkbox {
  border: none;
}

form.cmxform .gray * {
  color: gray;
}



.project-filter-tab  .elementor-widget-container{
  overflow-x: auto;
  padding-left: 0 !important;
}

.project-filter-tab  .elementor-widget-container::-webkit-scrollbar {
  display: none;
}
.project-filter-tab  .elementor-widget-container .e-filter{
  width: 1345px;
  flex-wrap: nowrap;
}

.recent-news .recent-news-img .elementor-widget-container a{
   display: block;
   width: 100%;
}

.recent-news .post-content .elementor-widget-container{
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-clamp: 3;
}

.button-register a{
  display: block;
}
 
.terms-text .elementor-widget-container .sub-title{
  border-bottom: 1px solid #fff;
}

.terms-text .elementor-widget-container ol.sub-title{
   padding-bottom: 16px;
   margin-bottom: 16px;
}
.pl-70{
  padding-left: 50px;
  padding-right:10px;
}

.pl-80{
  padding-left: 80px;
  padding-right:10px;
}
 
.header-search-icon{
  cursor: pointer;
}
.header-search-icon .elementor-button-content-wrapper span{
  color: #fff;
}
  .header-search-icon .elementor-button:hover span{
  color: #101010;
}

.new-detail-body ul {
  padding-left: 1rem;
}

.about-nav{
  width: auto !important;
  
}
.about-nav h2{
  position: relative;
  display: block !important;
  cursor: pointer;
}

.about-nav h2:after{
  content:"";
  position: absolute;
  bottom: -11.5px;
  left: 50%;
  transform: translateX(-50%);
  content:'';
  width: calc(100% - 16px);
  height: 4px;
  padding: 0 8px;
  border-radius: 1px;
  background: #D1C9C1;
   transition: all 0.2s ease-in-out;
   opacity: 0;
}
.about-nav h2 a{
    transition: all 0.2s ease-in-out;
}
.about-nav h2:hover a,.about-nav h2:hover{
    font-weight: bold !important;
    color: #D1C9C1 !important;
}
.about-nav h2:hover:after{
     opacity: 1;
}
@media screen and  (max-width: 576px) {
   .about-header{
      width: 100%;
      flex-wrap: wrap;
      gap: 16px;
  }
}

.new-breadcrumbs-head a{
  transition: all 0.2s ease-in-out;
}
.new-breadcrumbs-head .elementor-widget-container .eael-breadcrumbs .eael-breadcrumbs__content  a:hover{
   color:#9B8A78 !important;
}

.aws-form {
  position: relative;
}
 

.aws-form-mobile .aws-form-right-img .elementor-widget-image{
  height: 100%; 
 
}

.aws-form .aws-form-bg{
  height: 100%;
}


.hs-form-iframe{
  max-width: 960px;
}
.hs-form-iframe  label{
  display: none !important;
}
.hs-input{
  background: transparent !important;
  border-color: #FDFDFD !important;
} 
 
.hs-input:not([type=file]){
  background-color:transparent !important;
}



.aws-hubspot-form  .hbspt-form  .hs-form-private{
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
 }
 
 .aws-hubspot-form .hbspt-form  .hs-form-private .field{
  margin-bottom: 0;
 }

  .aws-hubspot-form .hbspt-form  .hs-form-private .hs_firstname {
  width: 23%;
 }

 .aws-hubspot-form  .hbspt-form  .hs-form-private .hs_lastname {
  width: 23%;
 }
 .aws-hubspot-form .hbspt-form  .hs-form-private .hs_email {
  width: 39%;
 }
 .aws-hubspot-form  .hbspt-form  .hs-form-private .hs_firstname input{
  color: #fdfdfd;
 }
 .aws-hubspot-form  .hbspt-form  .hs-form-private .hs_lastname input{
  color: #fdfdfd;
 }
 .aws-hubspot-form  .hbspt-form  .hs-form-private .hs_email input{
  color: #fdfdfd;
 }

 .aws-hubspot-form  .hbspt-form  .hs-form-private .hs_firstname>label{
  display: none;
 }
 .aws-hubspot-form .hbspt-form  .hs-form-private  input{
   outline: none;
 }
 .aws-hubspot-form .hbspt-form  .hs-form-private  input::placeholder{
  color: #9B9B9B;
 }

 .aws-hubspot-form  .hbspt-form  .hs-form-private .hs_lastname>label{  display: none;}
 .aws-hubspot-form  .hbspt-form  .hs-form-private .hs_email>label{  display: none;}
 .aws-hubspot-form  .hbspt-form  .hs-form-private .hs_submit .actions{
  margin: 0;
  padding: 0;
 }
 .aws-hubspot-form  .hbspt-form  .hs-form-private  .hs_recaptcha{
  order: 2;
  width: 100%;
 }
 .aws-hubspot-form  .hbspt-form  .hs-form-private .hs_submit {
  order: 1;
 }

 .aws-hubspot-form  .hbspt-form  .hs-form-private .hs_submit .actions input{
  background-color: #FDFDFD;
  border-color:#FDFDFD ;
  color: #262626;
  font-weight: 400;
  font-size:16px;
  font-family: "Inter";
  transition:all  0.25s ease-in-out;
 }

 .aws-hubspot-form  .hbspt-form  .hs-form-private .hs_submit .actions input:hover{
  background-color: transparent;
  color: #fdfdfd;
 }

 @media screen and  (max-width: 1024px) {
  .aws-hubspot-form  .hbspt-form  .hs-form-private{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0;
  }

  .aws-hubspot-form .hbspt-form  .hs-form-private .hs_firstname {
    width: calc(50% - 6px);
   }
  
   .aws-hubspot-form  .hbspt-form  .hs-form-private .hs_lastname {
    width: calc(50% - 6px);
   }
   .aws-hubspot-form .hbspt-form  .hs-form-private .hs_email {
    width: 100%;
    margin:16px 0 ;
   }
   .aws-hubspot-form  .hbspt-form  .hs-form-private .hs_firstname input{
    color: #fdfdfd;
   }
   .aws-hubspot-form  .hbspt-form  .hs-form-private .hs_submit {
     margin-bottom: 16px;
   }
  
}


 

 .img-auto-height{
   height: 100%;
 }
 .elementor a{
  color: #e9e9e9;
 }

 .elementor-widget-breadcrumbs a:hover{
  color: #e9e9e9;
 }
 
 
 .aws-form-mobile .hbspt-form .hs-form-private .hs_email{
  width: 100%;
 }
 .aws-form-mobile .hbspt-form .hs-form-private .hs_firstname input,
 .aws-form-mobile .hbspt-form .hs-form-private .hs_lastname input,
 .aws-form-mobile .hbspt-form .hs-form-private .hs_email input{
  border-color: #9B8A78 !important;
  
 }
 .aws-form-mobile  .hbspt-form  .hs-form-private .hs_submit, .aws-form-mobile  .hbspt-form  .hs-form-private .hs_submit .actions {
  width: 100%;
 }
 .aws-form-mobile  .hbspt-form  .hs-form-private .hs_submit .actions input{
  width: 100%;
  background-color: #9B8A78;
  border-color: #9B8A78;
  color: #FDFDFD;
 }
 

 .aws-hubspot-form .hbspt-form .hs_error_rollup{
  order: 2;
 }
 

 
.join-aws-hubspot-form   .hbspt-form  .hs-form-private{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0;
}

 .join-aws-hubspot-form .hbspt-form input,  .join-aws-hubspot-form .hbspt-form textarea{

  border-color: #9B8A78 !important;
   outline: none;
   color: #FDFDFD;
 }
 .join-aws-hubspot-form .hbspt-form textarea{
  height: 105px;
 }
 

 .join-aws-hubspot-form  .hbspt-form  .hs-form-private>.hs-form-field{width: 100%; margin-bottom: 16px;}
 .join-aws-hubspot-form  .hbspt-form  .hs-form-private>.hs-form-field label{ margin-bottom: 4px;}
 .join-aws-hubspot-form  .hbspt-form  .hs-form-private>.hs-form-field input{
  color: #FDFDFD;
 }
 .join-aws-hubspot-form  .hbspt-form  .hs-form-private .hs_firstname , .join-aws-hubspot-form   .hbspt-form  .hs-form-private .hs_lastname,
 .join-aws-hubspot-form  .hbspt-form  .hs-form-private .hs_company ,.join-aws-hubspot-form  .hbspt-form  .hs-form-private .hs_phone,
 .join-aws-hubspot-form  .hbspt-form  .hs-form-private .hs_state, .join-aws-hubspot-form  .hbspt-form  .hs-form-private .hs_abn_number__c, #fabricator-at-aws​-form  .hbspt-form .hs-form-private .hs_email{
  width: calc(50% - 6px);
 }
.join-aws-hubspot-form   .hbspt-form  .hs-form-private .hs_submit, .join-aws-hubspot-form .hbspt-form  .hs-form-private .hs_submit .actions {
  width: 100%;
 }
 .join-aws-hubspot-form .hbspt-form  .hs-form-private .hs_submit .actions input{
  width: 90px;
  background-color: #9B8A78;
  border-color: #9B8A78;
  color: #FDFDFD;
  font-weight: 700;
  font-family: "Inter";
   
 }

 @media screen and  (max-width: 576px) {
  #fabricator-at-aws​-form  .hbspt-form .hs-form-private .hs_email ,
   #fabricator-at-aws​-form  .hbspt-form .hs-form-private .hs_abn_number__c , 
   #fabricator-at-aws​-form  .hbspt-form .hs-form-private .hs_phone, 
  #fabricator-at-aws​-form  .hbspt-form .hs-form-private .hs_state{ 
    width: 100%;
  }

  }
 
 #join-aws-form .hs_file .input{
     display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: flex-start;
      cursor: pointer;
}

#join-aws-form .hs_file .input input[type="file"] {
  opacity: 0;
  position: absolute;
  z-index: -1;
}

 
#join-aws-form .hs_file .input label {
  display: flex;
  color: #BCBCBC;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
}

#join-aws-form .hs_file .input::after{
  content: "Support .pdf, .zip, .doc, .docx and .ppt, up to 10MB";
  margin-top: 8px;
  display: block;
  font-size: 14px;
  color:#BCBCBC;
}


#join-aws-form .hs_file  .hs_file label::after {
  content: "";
  margin-left: 8px;
  display: block;
  width: 16px;
  height: 16px;
  background-image: url("/wp-content/uploads/2025/04/upload-pdf.svg");
}


 

 #video-main .video-item span{
  color: #FFFFFF !important;
  background-color: transparent !important;
  font-size: 14px !important; 
  font-weight: 400 !important;
  font-family: "Inter" !important;
  text-transform: none !important;
  text-decoration: none !important;
 }



.home-project-list .home-project-img-box{
  position: relative;
  height: 304px
}
.home-project-list .home-project-img-box .elementor-widget-container,.home-project-list .home-project-img-box .elementor-widget-container a{
  height: 100%;
  width: 100%;
  display: block;
}
.home-project-list .home-project-img-box img{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
 
.post-comtent p span, .post-comtent p a, .post-comtent p strong, .post-comtent p em{
  background-color: transparent !important;
}

.video-info p span, .video-info p{
  display: -webkit-box;
  -webkit-line-clamp: 4; 
  -webkit-box-orient: vertical;
  overflow: hidden;
}
 
