@font-face {
font-family: 'Brandon Bold';
src: url('https://d2988b.claudeassets.com/20240814013014im_/https://luqel-water.com/wp-content/themes/luqel-water/fonts/BrandonText-Bold.otf') format('opentype');
font-weight: normal;
font-style: normal;
}

@font-face {
font-family: 'Brandon Regular';
src: url('https://4296f1.claudeassets.com/20240814013014im_/https://luqel-water.com/wp-content/themes/luqel-water/fonts/Brandon_txt_reg.otf') format('opentype');
font-weight: normal;
font-style: normal;
}

/*--------------------------------------------------------------
Variables
----------------------------------------------------------------*/
 :root {
  --toggler-line-size: calc(10px / (3 + 3 - 4));
  --primary-font: 'Brandon Regular', sans-serif;
  --secondary-font: 'Brandon Bold', sans-serif;
  --primary-color:#000F28;
  --secondary-color:#4BCDE1;
  --accent-color:#004065;
}

/*--------------------------------------------------------------
Containers
----------------------------------------------------------------*/
* {word-break:break-word;}

body {
  font-size:16px;
  font-family:var(--primary-font);
  color:var(--primary-color);

}

main {
  display: inline-block;
  width: 100%;
}

main .page {
  margin: 0;
}

.wrapper {
  width: 85% !important;
  max-width: 1400px;
  margin: 0 auto !important;
  float: none !important;
}

.small-wrapper {
  max-width: 800px;
}

article {}

/*--------------------------------------------------------------
Text & Elements Styles
----------------------------------------------------------------*/
p {
  margin:1em 0;
  color:var(--primary-color);
  font-family:var(--primary-font);
  line-height: 1.6;
  font-size:16px;
}

a {
  color: #004065;
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  transition: all 0.3s ease;
}

a:hover {
  color:var(--primary-color);
}

h1, h2, h3, h4, h5, h6 {
  font-family:var(--secondary-font);
  margin:30px 0 0 0;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: normal;
  line-height: 1.2;
}

h1 {
  font-size:36px;
  text-shadow: 0 0.1em 0.1em rgb(0 0 0 / 40%);
  color: #fff;
}

h1.privacy {
  color:var(--primary-color);
  text-shadow: none;
  margin-top: 80px;
}

h2 {
  font-size:32px;
}

h3 {
  font-size:26px;
}

h4 {
  font-size:20px;
}

h5 {
  font-size:18px;
}

h6 {
  font-size:16px;
}

ul, ol {
  margin:1em 2em;
  padding: 0;
  font-family:var(--primary-font);
  list-style-position: outside; 
  line-height: 1.6;
}

ul li, ol li {}

blockquote {
  font-family:var(--primary-font);
  color: var(--secondary-color) !important;
}

img {
  width: 100%;
}

.button {
  background:#fff;
  color:var(--primary-color);
  border: 2px solid var(--secondary-color);
  border-radius: 30px;
  text-decoration: none;
  padding: 8px 24px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  font-family:var(--secondary-font);
  white-space: nowrap;
  line-height: 1.6;
  text-transform: uppercase;
  letter-spacing:2px;
  white-space: normal;
}

.button:hover {
  background:var(--secondary-color);
}

.button.transparent {
  background: transparent;
  color: #fff;
}

.button.transparent:hover {
  background:var(--secondary-color);
}

.overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background:rgba(0,0,0,0.4);
}


/*--------------------------------------------------------------
Header Styles
----------------------------------------------------------------*/
.site-header {
  width: 100%;
  z-index: 5;
  position: fixed;
  top: 0;
  background: #fff;
}

.site-header .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 0;
  position: relative;
}

.site-branding {
  max-width: 120px;
  line-height: 0;
}

.background-visual {
  position: relative;
}

.background-visual .header-text {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 50%;
    z-index: 2;
    text-align: center;
}

.head-container {
  background-size: cover;
  background-position: center;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  /* filter: grayscale(100%); */
  margin-bottom: 20px;
  z-index: -1;
}

.head-container h1 {
  z-index: 2;
  color: #fff;
}

/*--------------------------------------------------------------
Menu Styles
----------------------------------------------------------------*/
.site-header .mobile {
  opacity: 0;
  display: none;
  transition: all 0.3s ease;
}

.site-header .mobile.active {
    opacity: 1;
  }

#menuToggler {
    display: none;
  }

    .menu-toggler {
    border-radius: calc(var(--toggler-line-size) / 2);
    display: none;
    width: 40px;
    height: 30px;
    position: absolute;
    top: 50%;
    right: 0px;
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 6;
  }

  .menu-toggler__line {
    height: var(--toggler-line-size);
    background: #2F2F2F;
    position: absolute;
    border-radius: calc(var(--toggler-line-size) / 2);
    left: 0;
    right: 0;
    transition: all 0.3s ease-in-out; 
  }
  .menu-toggler__line:nth-child(1) {
    top: calc( var(--toggler-line-size) * 1 + (var(--toggler-line-size) * (1 - 2)) );
  }
  .menu-toggler__line:nth-child(2) {
    top: calc( var(--toggler-line-size) * 2 + (var(--toggler-line-size) * (2 - 2)) );
  }
  .menu-toggler__line:nth-child(3) {
    top: calc( var(--toggler-line-size) * 3 + (var(--toggler-line-size) * (3 - 2)) );
  }

  .input-toggler {
    position: absolute;
    left: -100%;
  }
  .input-toggler:focus ~ .menu-toggler {
    outline: 1px dotted;
  }
  .input-toggler:checked ~ .menu-toggler .menu-toggler__line:not(:first-child):not(:last-child) {
    opacity: 0;
  }
  .input-toggler:checked ~ .menu-toggler .menu-toggler__line:first-child,
  .input-toggler:checked ~ .menu-toggler .menu-toggler__line:last-child {
    background-color: #2F2F2F;
  }
  .input-toggler:checked ~ .menu-toggler .menu-toggler__line:first-child {
    transform: translateY(calc(var(--toggler-line-size) * (3 - 1))) rotate(45deg);
  }
  .input-toggler:checked ~ .menu-toggler .menu-toggler__line:last-child {
    transform: translateY(calc(-1 * var(--toggler-line-size) * (3 - 1))) rotate(-45deg);
  }
  .input-toggler:checked ~ .sidebar {
    transform: translateX(0);
    opacity: 0.98;
  }

.site-header .desktop {
  line-height: 0;
  width: auto;
}

.site-header .desktop ul {
    display: inline-block;
    line-height: 1;
}

.site-header .desktop ul ul {
  background: var(--primary-color);
  width: 230px;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  padding: 10px 15px;
}

.site-header .desktop ul ul li {
  clear: both;
}

.site-header .desktop ul li:hover ul {
  opacity: 1;
  visibility: initial;
}

.site-header .desktop ul ul li a {
  color: #fff;
  width: auto;
  padding:8px 0;
}

.site-header .desktop ul ul li a:hover {
  color: var(--secondary-color);
}

.site-header .desktop ul ul.sub-menu li .material-icons {
  display: none;
}

.site-header .desktop ul li#menu-item-wpml-ls-2-en ul, .site-header .desktop ul li#menu-item-wpml-ls-2-de ul, .site-header .desktop ul li#menu-item-wpml-ls-2-uae ul {
  width: auto;
}

.site-header .desktop ul li#menu-item-wpml-ls-2-en ul li, .site-header .desktop ul li#menu-item-wpml-ls-2-de ul li, .site-header .desktop ul li#menu-item-wpml-ls-2-uae ul li {
  margin: 0;
}

.mobile .menu-main-menu-container,
.mobile .menu-uae-menu-container {
  position: absolute;
    width: 100%;
    left: 0;
    top: 100%;
    z-index: 10;
    background:var(--primary-color);
    transition: all .5s ease;
     max-height: 0;
    display: block;
    overflow: hidden;
}

.mobile.active .menu-main-menu-container,
.mobile.active .menu-uae-menu-container {
  max-height: 800px;
  padding: 15px 30px;
}

.mobile .menu-german-menu-container {
  position: absolute;
    width: 100%;
    left: 0;
    top: 100%;
    z-index: 10;
    background:var(--primary-color);
    transition: all .5s ease;
     max-height: 0;
    display: block;
    overflow: hidden;
}

.mobile.active .menu-german-menu-container {
  max-height: 800px;
  padding: 15px 30px;
}

.mobile .menu {
    margin: 0;
}

.mobile li {
  float: none;
  margin: 0;
  position: relative;
  list-style-type: none;
}

.mobile li a {
  color: #fff;
  display: inline-block;
  font-size: 15px;
  text-decoration: none;
  padding: 15px 5%;
  border-bottom: 1px solid #fff;
  text-transform: uppercase;
  width: 100%;
}

.mobile .sub-menu {
  width: 100%;
  margin: 0;
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.mobile .sub-menu.active {
  max-height: 1000px;
}

.mobile .sub-menu li {
  margin: 0;
  padding: 0;
}

.mobile .sub-menu li a {
  font-size: 14px;
  padding: 8px 5%;
}

.mobile li a img {
  width: 20px;
}

.mobile .sub-menu .material-icons {
  display: none;
}

.desktop li.menu-item-has-children a:after {
}

.desktop li {
  margin: 0 12px;
}

.desktop a {
  color:var(--primary-color);
  position: relative;
  overflow: hidden;
  padding: 5px 0;
  margin: 0px;
  font-size: 15px;
  letter-spacing: 0;
  text-transform: uppercase;
  font-family: var(--secondary-font);
  display: inline-block;
}

.desktop a:hover {
  color: var(--secondary-color);
}

.desktop .material-icons {
  color: var(--secondary-color);
}


/*--------------------------------------------------------------
Footer Styles
----------------------------------------------------------------*/
footer {
  background:var(--primary-color);
  padding: 50px 0;
}

footer .footer-content {
  display: flex;
  justify-content: space-between;
}

footer .footer-content .footer-logo {
  margin-right: 8%;
}

footer .footer-content .footer-logo img {
  width: 85%;
  max-width: 220px;
    display: block;
  clear: both;
}

footer .footer-content ul.important-links {
  margin: 0;
}

footer .footer-content ul.important-links p {
  color: #fff;
  font-family: var(--secondary-font);
  text-transform: uppercase;
  margin: 0;
  line-height: 1;
}

footer .footer-content ul.important-links li {
  line-height: 1;
  margin: 12px 0;
}

footer .footer-content ul.important-links li a {
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
}

footer .footer-content ul.important-links li a:hover {
  color: var(--secondary-color);
}

footer .footer-content .social-media-links {
}

footer .footer-content .social-media-links p {
  color: #fff;
  font-family: var(--secondary-font);
  text-transform: uppercase;
  margin: 0 0 10px 0;
  line-height: 1;
}

footer .social-media-links a {
  text-decoration: none;
  color: #fff;
}

footer .social-media-links a .dashicons {
  /* font-size: 28px; */
}

footer .social-media-links a .dashicons-youtube {
  padding: 2px 0 0 6px;
}

footer img.accred {
  max-width: 50px !important;
  float: left;
  margin-top: 15px;
}

footer .footer-logos p {
  color: #fff;
  font-family: var(--secondary-font);
  text-transform: uppercase;
  margin: 0 0 10px 0;
}

footer .footer-logos .wpml-ls-statics-shortcode_actions .wpml-ls-current-language>a {
  background: transparent;
  display: flex;
  border: 1px solid #fff;
  align-items: center;
}

footer .footer-logos .wpml-ls-statics-shortcode_actions a span {
  text-transform: uppercase;
  color: #fff;
  font-size: 11px;
  letter-spacing: 0;
}

footer .footer-logos .wpml-ls-statics-shortcode_actions .wpml-ls-flag {
  height: 12px;
  width: auto;
}

footer .footer-logos .wpml-ls-statics-shortcode_actions {
  padding: 0;
  margin: 0 0 20px 0;
}

footer .footer-logos .wpml-ls-statics-shortcode_actions.wpml-ls-statics-footer>ul {
  text-align: left;
}

footer .footer-logos .wpml-ls-statics-shortcode_actions .wpml-ls-sub-menu a span {
  color: var(--primary-color);
}

.wpml-ls-legacy-dropdown a.wpml-ls-item-toggle:after {
  color: #fff;
}


/*--------------------------------------------------------------
Home Page - video background Styles
----------------------------------------------------------------*/
.video-bg {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
}

.video-bg iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


/*--------------------------------------------------------------
Home Page - Slider background Styles
----------------------------------------------------------------*/

.hero-slider {
}

.hero-slider .slick-slider .slick-slide {
  height: 400px;
  background-size: cover;
  background-position: center;
}


/*--------------------------------------------------------------
Default Page Styles
----------------------------------------------------------------*/
.flex-content-container {
  display: flex;
}

.flex-content-container.center {
  justify-content: center;
}

.flex-content-container .flex-content-image {
  width: 50%;
  background-size: cover;
  background-position: center;
}

.flex-content-container .flex-content-text {
  width: 50%;
}


/*--------------------------------------------------------------
Main CTA Styles
----------------------------------------------------------------*/
.cta {
  display: flex;
  justify-content: space-between;
}

.cta .text {
  flex: 1;
  max-width: 550px;
  width: 97%;
  padding: 20px 15px 50px 15px;
  margin: 0 auto;
}

.cta .text .sub-title {
  color: var(--accent-color);
  text-transform: uppercase;
  font-family: var(--secondary-font);
  letter-spacing: 2px;
}

.cta .cta-image {
  width: 37%;
  background-size: cover;
  background-position: center;
}

.cta .button {
  margin: 20px 20px 20px 0;
}

.datasheet-cta {
  display: block;
  background: var(--primary-color);
  color: #fff;
  text-align: center;
  padding: 30px 15px;
  font-size: 18px;
  text-decoration: none;
  font-family: var(--secondary-font);
  transition: all 0.3s ease-in-out;
  margin: -6px 0 0 0;
  letter-spacing: 2px;
}

.datasheet-cta:hover {
  color: #fff;
}

.datasheet-cta .material-icons {
  font-size: 18px;
  color: var(--secondary-color);
  position: relative;
  top: 2px;
  transition: all 0.3s ease-in-out;
  left: 0;
}

.datasheet-cta:hover .material-icons {
  left: 20px;
}



/*--------------------------------------------------------------
Latest Posts Page Styles
----------------------------------------------------------------*/
.latest-posts .latest-posts-image {
  height: 250px;
  width: 250px;
  background-size: cover;
  background-position: center;
}

.category-post .category-post-image {
  height: 250px;
  width: 250px;
  background-size: cover;
  background-position: center;
}


/*--------------------------------------------------------------
Case Study Page Styles
----------------------------------------------------------------*/
.project-listing .project-image {
  height: 250px;
  width: 250px;
  background-size: cover;
  background-position: center;
}

/*--------------------------------------------------------------
Case Study Component Styles
----------------------------------------------------------------*/
.case-study-image {
  height: 150px;
  width: 150px;
  background-size: cover;
  background-position: center;
}


/*--------------------------------------------------------------
WPBakery Styles
----------------------------------------------------------------*/
.wpb-content-wrapper {
  overflow: hidden;
}

.vc_btn3 {
    background: transparent !important;
    color: #fff !important;
    border: 2px solid var(--secondary-color) !important;
    border-radius: 30px !important;
    text-decoration: none !important;
    padding: 8px 24px !important;
    display: inline-block !important;
    transition: all 0.3s ease-in-out !important;
    font-family: var(--secondary-font);
    white-space: nowrap;
    line-height: 1.6 !important;
    text-transform: uppercase;
    font-size: 16px !important;
    letter-spacing: 2px;
    white-space: normal;
}

.vc_btn3:hover {
    background: var(--secondary-color) !important;
}

.blue .vc_btn3 {
    background: transparent !important;
    color: #fff !important;
    letter-spacing: 2px;
}

.blue  .vc_btn3:hover {
    background: var(--secondary-color) !important;
}

.vc_custom_1676737981365 .vc_btn3 {
  color: var(--primary-color) !important;
}

.vc_custom_1675805381058 .vc_btn3 {
  color: var(--primary-color) !important;
}

.vc_custom_1676738066361 .vc_btn3 {
  color: var(--primary-color) !important;
}

.vc_custom_1675876661904 .vc_btn3 {
  color: var(--primary-color) !important;
}

.vc_custom_1675860397377 .vc_btn3 {
  color: var(--primary-color) !important;
}

.vc_custom_1676061410259 .vc_btn3 {
  color: var(--primary-color) !important;
}

.vc_custom_1678715527893 .vc_btn3 {
  color: var(--primary-color) !important;
}

.vc_custom_1675851128229 .vc_custom_1678715527893 {
  padding: 50px 10% !important;
}

.head-title .vc_column-inner {
  padding: 0 10% !important;
}

.head-title .wpb_text_column {
  width: 60%;
    max-width: 97%;
    float: right;
}

.head-title p {
  color: #fff;
  font-size: 18px;
}

.page-intro .dsm-text-divider-wrapper {
  text-align: center;
}

.page-intro h2 {
  position: relative;
  display: inline-block;
}

.page-intro h2::before {
  position: absolute;
  content:"";
  height: 1px;
  width: 50px;
  background:var(--primary-color);
  display: block;
  top: 0;
  bottom: 0;
  margin: auto 0;
  left:-70px;
}

.page-intro h2::after {
  position: absolute;
  content:"";
  height: 1px;
  width: 50px;
  background:var(--primary-color);
  display: block;
  top: 0;
  bottom: 0;
  margin: auto 0;
  right:-70px;
}

.sectors .vc_btn3 {
  background: transparent !important;
  color: #fff !important;
  border: 2px solid var(--secondary-color) !important;
  letter-spacing: 2px;
}

.sectors .vc_btn3:hover {
  background: var(--secondary-color) !important;
}

.differences .owl-carousel .owl-stage-outer {
}

.differences .owl-carousel .owl-stage {
}

.differences .white .sa_owl_theme .owl-nav .owl-prev {
  left: -20px;
  background-image: url(https://9f0e07.claudeassets.com/20240814013014im_/https://luqel-water.com/wp-content/themes/luqel-water/images/nav-left.png) !important;
  background-size: contain !important;
  background-color: transparent !important;
  height: 30px !important;
}

.differences .white .sa_owl_theme .owl-nav .owl-prev:hover {
  background-color: transparent !important;
}

.differences .white .sa_owl_theme .owl-nav .owl-next {
  right: -20px;
  background-image: url(https://0a47e1.claudeassets.com/20240814013014im_/https://luqel-water.com/wp-content/themes/luqel-water/images/nav-right.png) !important;
  background-size: contain !important;
  background-color: transparent !important;
  height: 30px !important;
}

.differences .white .sa_owl_theme .owl-nav .owl-next:hover {
  background-color: transparent !important;
}

.differences .carousel-image {
  height: 240px;
  max-width: 400px;
  background-size: cover;
  background-position: center;
  margin: 0 auto;
}

.differences .owl-item a {
  background: #fff;
    color: var(--primary-color);
    border: 2px solid var(--secondary-color);
    border-radius: 30px;
    text-decoration: none;
    padding: 8px 24px;
    display: inline-block;
    transition: all 0.3s ease-in-out;
    font-family: var(--secondary-font);
    white-space: nowrap;
    line-height: 1.6;
    text-transform: uppercase;
}

.differences .owl-item a:hover {
  background: var(--secondary-color);
}

.icon-grid {
  text-align: center;
}

.icon-grid h4 {
  color: var(--primary-color);
  margin-bottom: 12px;
  margin-top: 0;
}

.icon-grid img {
  width: auto;
  max-height: 40px;
}

.subtitle-nomargin h4 {
  margin: 10px 0 0 0;
}

.luqel-way .wpb_text_column img {
  height: 40px;
  width: auto;
}

.luqel-way .wpb_text_column h4 {
  color: var(--primary-color);
  margin-bottom: 12px;
  margin-top: 0;
}

.awards .vc-hoverbox-front {
  /*max-width: 250px;*/
  background-size: contain;
  background-repeat: no-repeat;
  right: 0;
  margin: 0 auto;
}

.awards .vc-hoverbox-inner {
  min-height: 230px !important;
}

.awards .vc-hoverbox-block-inner h2 {
  font-size: 18px;
  letter-spacing: 2px;
}
.recipes h3 {
  position: relative;
  display: inline-block;
}

.recipes h3::before {
  position: absolute;
  content:"";
  height: 1px;
  width: 50px;
  background:var(--primary-color);
  display: block;
  top: 0;
  bottom: 0;
  margin: auto 0;
  left:-70px;
}

.recipes h3::after {
  position: absolute;
  content:"";
  height: 1px;
  width: 50px;
  background:var(--primary-color);
  display: block;
  top: 0;
  bottom: 0;
  margin: auto 0;
  right:-70px;
}

.recipes .wrapper {
  text-align: center !important;
  float: none !important;
}

.luqel-way.great-foryou .wpb_text_column img {
}

.icon-text-right-bgimage {
  background-position: 50%;
  padding-top: 80px !important;
}

.icon-text-right-bgimage.home {
  background-position: 50%;
  padding-top: 30px !important;
}

.icon-text-right-bgimage .icon-grid img {
  width: auto;
  height: 40px;
}

.icon-text-right-bgimage .icon-grid .wpb_text_column {
  min-height: 270px;
}

.icon-text-right-bgimage.home .icon-grid .wpb_text_column {
  min-height: 200px;
}

.wrapper.whats-in h4 {
  color:var(--primary-color);
}

.contact-intro h1 {
  text-shadow: none;
}

.home-slider .owl-item .sa_hover_container {
  display: flex;
  justify-content: center;
  flex-direction: column;
  min-height: 80vh !important;
}

.home-slider .owl-item .sa_hover_container h2 {
  color: #fff;
  text-align: right;
  text-shadow: 0 0.1em 0.1em rgb(0 0 0 / 70%);
  font-size: 38px;
  letter-spacing: 1px;
}

.home-slider .owl-item .sa_hover_container p {
  color: #fff;
  text-align: right;
  text-shadow: 0 0.1em 0.1em rgb(0 0 0 / 40%);
  font-size: 20px;
}

.home-slider .owl-item .sa_hover_container a.button {
  text-shadow: none;
  font-size: 16px;
  background: transparent;
  color: #fff;
}

.home-slider .owl-item .sa_hover_container a.button:hover {
  background: var(--secondary-color);
}

.home-slider .sa_owl_theme .owl-dots {
  bottom: 20px !important;
}

.home-slider .sa_owl_theme .owl-dots .owl-dot span {
  background-color: #fff !important;
}

.home-slider .sa_owl_theme .owl-dots .owl-dot.active span {
  background-color: transparent !important;
  border: 1px solid #fff !important;
}

.wrapper .post-list {
  width: 65%;
  margin-right: 5%;
  float: left;
}

.wrapper .post-list .vc_grid-item .vc_gitem-animated-block .vc_gitem-zone {
  height: 350px;
  border-radius: 15px;
}

.wrapper .post-list .vc_custom_1419240516480 {
  background-color: transparent !important;
 }

.wrapper .post-list .vc_grid-item h4 {
  font-size: 28px;
 }

.wrapper .post-list .vc_grid-item .vc_btn3 {
  background-color: transparent !important;
  letter-spacing: 2px;
  color: var(--primary-color) !important;
}

.wrapper .post-list .vc_grid-item .vc_btn3:hover {
  background-color: var(--secondary-color) !important;
}


.wrapper .extra-post-detail {
  width: 30%;
  float: right;
}

.wrapper .extra-post-detail .wpb_content_element h2 {
  font-size: 20px;
}

.wrapper .extra-post-detail .wpb_content_element ul {
  margin: 10px 0 0 0;
  list-style: none;
}

.wrapper .extra-post-detail .wpb_content_element ul li a {
  text-decoration: none;
}

.wrapper .extra-post-detail .wpb_content_element ul li {
  line-height: 1.8;
}

body.archive {
  padding: 100px 0 0 0;
}

body.archive .post-list {
  padding: 0 35px 0 15px;
}

body.archive .post-list article {
  margin: 0 0 70px 0;
}

body.archive .post-list article img {
  border-radius: 15px;
}

body.archive .post-list article h4 {
  font-size: 28px;
}

body.archive .wrapper .extra-post-detail {
  width: 30%;
  float: right;
  padding: 0 15px;
}

.wrapper .extra-post-detail .widget h2 {
  font-size: 20px;
}

.wrapper .extra-post-detail .widget ul {
  margin: 10px 0 0 0;
  list-style: none;
}

.wrapper .extra-post-detail .widget ul li a {
  text-decoration: none;
}

.wrapper .extra-post-detail .widget ul li {
  line-height: 1.8;
}

.wrapper .extra-post-detail #block-10, .wrapper .extra-post-detail #block-11, .wrapper .extra-post-detail #block-12 {
  margin: 0;
}

body.single-post {
  padding: 100px 0 0 0;
}

body.single-post .post-list {
  padding: 0 35px 0 15px;
}

.single-post h1 {
  color: var(--primary-color);
  text-shadow:none;
  font-size: 48px;
}

.single-post .main-image img {
  border-radius: 15px;
  margin: 30px 0 0 0;
}

.single-post .post-navigation {
  display: none;
}

.single-post .comments-area {
  display: none;
}

.video-section {
  padding: 3% 30px !important;
  margin: 0 !important;
}

.video-section .vc_row {
  margin: 0 !important;
  display: flex;
  justify-content: space-between;
}

.video-section .vc_row:before, .video-section .vc_row:after {
  content: none;
}

.video-section .video-box {
  width: 47%;
  box-shadow: 0px 8px 18px -6px rgb(0 0 0 / 30%);
  border-radius: 10px 10px 10px 10px;
  overflow: hidden;
  margin: 40px 0;
}

.video-section .video-box .vc_column-inner {
  padding: 0;
}

.video-section .video-box .vc_column-inner .text {
  padding: 0 30px;
}

.video-section .video-box .vc_column-inner .text h4 {
  margin-bottom: 10px;
}

.video-section .video-box .vc_column-inner .text .button {
  margin-top: 35px;
}

.hubspot-page {
  padding-bottom: 70px;
}

.hubspot-page .wrapper {
  background: #fff;
  border-radius: 15px;
  margin-top: 100px !important;
  padding: 50px !important;
}

.hubspot-page .wrapper .vc_column_container {
  padding: 0 20px;
}

.hubspot-page .wrapper .vc_column_container .text img {
  max-width: 250px;
}

.differences {
  padding-bottom: 40px;
}

.differences h3 {
  font-size: 32px;
}

.sectors h3 {
  font-size: 32px;
}

.cta h3 {
  font-size: 32px;
}

.home-slider .white .sa_owl_theme .owl-nav .owl-prev {
    background-image: url(https://9f0e07.claudeassets.com/20240814013014im_/https://luqel-water.com/wp-content/themes/luqel-water/images/nav-left.png) !important;
    background-size: contain !important;
    background-color: transparent !important;
    height: 30px !important;
    background-position: center !important;
}

.home-slider .white .sa_owl_theme .owl-nav .owl-next {
    background-image: url(https://0a47e1.claudeassets.com/20240814013014im_/https://luqel-water.com/wp-content/themes/luqel-water/images/nav-right.png) !important;
    background-size: contain !important;
    background-color: transparent !important;
    height: 30px !important;
    background-position: center !important;
}

.home-slider .white .sa_owl_theme .owl-nav .owl-prev:hover, .home-slider .white .sa_owl_theme .owl-nav .owl-next:hover {
  background-color: transparent !important;
}

.head-title {
  min-height: 80vh !important;
}

.vc_custom_1676039213296 {
  padding: 0 !important;
}

.vc_custom_1676039213296 video {
  width: 100%!important;
    height: auto!important;
        object-fit: contain;
}

.vc_custom_1676039213296 .mejs-video {
  width: 100%!important;
}

.vc_custom_1676039213296 .mejs-controls {
  padding: 0 20px;
}

.vc_custom_1676039213296 .wp-video {
  width: 100% !important;
    height: auto !important;
}

.video-section .mejs-video {
  width: 100% !important;
}

.video-section .wp-video {
  width: 100% !important;
}

.full-width-video h3 {
  margin-bottom: 30px;
}

.full-width-video video {
  width: 100%!important;
    height: auto!important;
        object-fit: contain;
}

.full-width-video .mejs-video {
  width: 100%!important;
}

.full-width-video  .wp-video {
  width: 100% !important;
    height: auto !important;
}

.wrapper.accordion {
  max-width: 800px;
  padding: 20px 0;
}

.vc_row .vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-grey>li>a, .vc_row .vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-grey>li>span {
  background-color:var(--primary-color) !important;
  font-size: 12px;
}

.widget a {
  color: #004065;
}

.last-line-award {
  display: flex;
    justify-content: space-around;
}
/*
     FILE ARCHIVED ON 03:54:19 Aug 14, 2024 AND RETRIEVED FROM THE
     INTERNET ARCHIVE ON 07:56:16 Jul 21, 2026.
     JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE.

     ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.
     SECTION 108(a)(3)).
*/
/*
playback timings (ms):
  captures_list: 0.9
  exclusion.robots: 0.108
  exclusion.robots.policy: 0.089
  esindex: 0.012
  cdx.remote: 383.286
  LoadShardBlock: 4052.169 (3)
  PetaboxLoader3.datanode: 4195.574 (5)
  PetaboxLoader3.resolve: 73.941 (2)
  load_resource: 262.472
  loaddict: 185.77
*/