html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: #0095da #eaf6fd;
}

/* Tiny custom scrollbar */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: #eaf6fd;
}

::-webkit-scrollbar-thumb {
  background: #0095da;
  border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
  background: #007fbc;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

.main {
  width: 100%;
}

.flex {
  display: flex;
  flex-wrap: wrap;
}

.container-first {
  width: 100%;
  max-width: 1750px;
  margin: 0 auto;
}

.overflow-hidden {
  overflow: hidden;
}

.margin-center{
  margin: 0 auto;
}
.title-main-wrap{
      width: 100%;
      display: flex;
      flex-wrap: wrap;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 40px;
}

.title-half-wrap{
     width: 100%;
     max-width: 650px;
     margin-bottom: 40px;
}

.title-half-wrap h5{
   font-size: 22px;
   line-height: 28px;
   font-weight: 500;
   color: #000000;
   margin-bottom: 0;
}



.error-404-section .title-half-wrap .main-title {
  margin-bottom: 18px;
}

.error-404-section__actions {
  margin-bottom: 0 !important;
}

.error-404-section__actions .main_btn {
  margin-top: 8px;
}

.title-main-wrap p{
  max-width: 520px;
}

.title-main-left{
     max-width: 50%;
}

.main_banner {
  position: relative;
  width: 100%;
  min-height: 100vh;
  height: 100vh;
  padding-bottom: 90px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  box-sizing: border-box;
}

/* Positioning context for scroll CTA — matches .container width from reset */
.main_banner > .container {
  position: relative;
}

.responsive-img {
  width: 100%;
}

.main-title {
  font-size: 50px;
  line-height: 55px;
  font-weight: 500;
  color: #015DA4;
  margin-bottom: 15px;
}

.big-title {
  font-size: 60px;
  line-height: 65px;
  font-weight: 200;
  color: #000000;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.big-title span{
  font-weight: 500;
  display: block;
}

.title-one-line .big-title span{
      display: initial;
}

.main_banner_content {
  max-width: 600px;
}

.main_banner_content h1 {
  font-size: 60px;
  line-height: 70px;
  font-weight: 200;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.main_banner_content p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 16px;
  line-height: 29px;
  font-weight: 400;
  max-width: 470px;
}

.main_banner_content h1 span {
  font-weight: 500;
}

/* Home banner staged intro animation (always runs on page load/refresh). */
@keyframes main-banner-content-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.home .main_banner_content > h1,
.home .main_banner_content > p,
.home .main_banner_content > a {
  opacity: 0;
  transform: translateY(18px);
  animation-name: main-banner-content-in;
  animation-duration: 0.7s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
  will-change: opacity, transform;
}

.home .main_banner_content > h1 {
  animation-delay: 0.1s;
}

.home .main_banner_content > p {
  animation-delay: 0.35s;
}

.home .main_banner_content > a {
  animation-delay: 0.6s;
}

@media (prefers-reduced-motion: reduce) {
  .home .main_banner_content > h1,
  .home .main_banner_content > p,
  .home .main_banner_content > a {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

/* Scroll CTA — right edge aligned with .container (via .main_banner__container) */
.main_banner_scroll_cta {
  position: absolute;
  right: 0;
  bottom: -30px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: #CABEBE;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.02em;
  transition: color 0.2s ease, transform 0.2s ease;
}

.main_banner_scroll_cta:hover,
.main_banner_scroll_cta:focus-visible {
  color: #fff;
  outline: none;
}

.main_banner_scroll_cta:hover .main_banner_scroll_cta__circle,
.main_banner_scroll_cta:focus-visible .main_banner_scroll_cta__circle {
  border-color: #434048;
  transform: translateY(3px);
}



@keyframes main-banner-scroll-cta-line {
  0% {
    top: -70px;
  }
  100% {
    top: -24px;
  }
}

.main_banner_scroll_cta__circle {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid #434048;
  color: #fff;
  transition: border-color 0.2s ease, transform 0.25s ease, box-shadow 0.2s ease;
}

.main_banner_scroll_cta__circle::after {
  content: "";
  width: 2px;
  left: -0.8px;
  height: 50px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(0, 149, 217, 1) 100%);
  position: absolute;
  left: -0.5px;
  right: 0;
  margin: 0 auto;
  top: -50px;
  z-index: 1;
  animation: main-banner-scroll-cta-line 1.8s ease-in-out infinite alternate;
}

@media (prefers-reduced-motion: reduce) {
  .main_banner_scroll_cta__circle::after {
    animation: none;
    top: -20px;
  }
}

.main_banner_scroll_cta__chevron {
  display: block;
  margin-top: 2px;
}

.anchor-discover {
  scroll-margin-top: 1rem;
  height: 1px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  position: relative;
}

.hme_categoty_wrap{
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
}

.hme_categoty_two_col{
      display: grid;
      width: 100%;
      grid-template-columns: repeat(2, 1fr);
      gap: 2px;
}

.hme_categoty_box{
     width: 100%;
     
     overflow: hidden;
     position: relative;
}

.hme_categoty_box .img-box{
  height: 600px;
}

.hme_categoty_box .img-box img{
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: all 0.3s ease-in-out;
}
.hme_categoty_box:hover .img-box  img{
  transform: scale(1.1);
}

.hme_categoty_box .learn-more-white{
  opacity: 0;
 
  transition: all 0.1s ease-in-out;
  margin-top: 0;
}

.hme_categoty_box:hover .learn-more-white{
  opacity: 1;

}

.hme_categoty_box > a{
  display: block;
}

.hme_categoty_box>a::after{
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.4) 100%
  );
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}

.product_download_section{
  overflow: hidden;
}

.hme_categoty_box_content{
      position: absolute;
      left: 0;
      padding: 0 30px;
      bottom: 30px;
      max-width: 360px;
      z-index: 2;
      transition: all 0.3s ease-in-out;
      transform: translateY(30px);
}

.hme_categoty_box:hover .hme_categoty_box_content{
  transform: translateY(0);
}

.hme_categoty_box_content h3{
      font-size: 25px;
      line-height: 30px;
      font-weight: 400;
      color: #fff;
      margin-bottom: 10px;
}

.hme_categoty_box_content p{
     font-size: 16px;
     line-height: 24px;
     color: #fff;
}

.hme_categoty_three_col{
  width: 100%;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
}

.hme_categoty_three_col .hme_categoty_box .img-box{
  height: 570px;
}

/* ——— Featured products carousel (featureSwiper) ——— */
/* .feature-swiper-shell {
  margin-top: 2.5rem;
} */

.hme_feature_section{
  overflow: hidden;
}

.featureSwiper {
  overflow: visible;
}

.featureSwiper .swiper-slide {
  height: auto;
}

.feature-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 420px;
  height: 100%;
  background: #e8e8e8;
  border-radius: 2px;
  overflow: hidden;
}

.feature-card__media-wrap {

  flex: 1;
  min-height: 0;
  overflow: hidden;
}

.feature-card__media-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.feature-card__media-link:focus-visible {
  outline: 2px solid #015da4;
  outline-offset: 2px;
}

.feature-card-hover {
  position: absolute;
  width: 100%;
  height: 0;
  overflow: hidden;
  transition: height 0.5s ease;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  pointer-events: none;
}

.feature-card:hover .feature-card-hover,
.feature-card:focus-within .feature-card-hover {
  height: 100%;
}

.feature-card:hover .feature-card-hover,
.feature-card:focus-within .feature-card-hover {
  pointer-events: auto;
}

.feature-card-hover-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity var(--transition-time, 0.35s) ease;
}

.title-full-width{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.feature-card:hover .feature-card-hover-img,
.feature-card:focus-within .feature-card-hover-img {
  opacity: 1;
}

.feature-card-hover-img > img {
  width: 100%;
  height: 100%;
  min-height: 650px;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}

/* Bottom sheet: slides up, rounded on all sides, inset like mockup */
.feature-card-hover-content {
  position: absolute;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: calc(100% - 40px);
  max-width: 100%;
left: 20px;
bottom: 20px;
  background: #fff;
  border-radius: 13px;
  box-sizing: border-box;
overflow: hidden;
  opacity: 1;
}



.feature-card-hover-content__head {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.25rem 1rem;
  border-bottom: 1px solid #6D758F;
  flex-shrink: 0;
}

.feature-card-hover-content__thumb {
  width: 80px;
  height: 60px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-card-hover-content__thumb img {
  max-width: 80px;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.feature-card-hover-content__title {
  margin: 0;
  font-size: 22px;
  font-weight: bold;
  color: #000000;
  line-height: 1.2;
  flex: 1;
  text-align: left;
}

.feature-card-hover-content__desc {
  margin: 0;
  padding: 0.65rem 1.25rem 0.85rem;
  font-size: 14px;
  line-height: 1.45;
  display: none;
  color: #333;
  border-bottom: 1px solid #6d758f;
}

.feature-card-hover-content__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.mannaglass-req-btn,
.feature-card-hover-content__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 20px;
  height: 60px;
  font-size: 16px;
  font-weight: 500;
  color: #111;
  text-decoration: none;
  font-family: var(--font-primary, system-ui, sans-serif);
  transition: background 0.2s ease, color 0.2s ease;
  box-sizing: border-box;
}

.mannaglass-req-btn:first-child,
.feature-card-hover-content__action:first-child {
  border-right: 1px solid #6D758F;
}

.mannaglass-req-btn:hover,
.mannaglass-req-btn:focus-visible,
.feature-card-hover-content__action:hover,
.feature-card-hover-content__action:focus-visible {
  background: #f5f7fa;
  color: #015da4;
  outline: none;
}

.feature-card-hover-content__ico {
  display: flex;
  color: inherit;
}

.feature-card__body-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.feature-card__body-link:focus-visible {
  outline: 2px solid #015da4;
  outline-offset: 2px;
}

.feature-card__wishlist {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 6;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  background: transparent;
  color: #1a1a1a;
  cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease;
}

.feature-card__wishlist:hover,
.feature-card__wishlist:focus-visible {
  color: #0095da;
  outline: none;
}

.feature-card:hover .feature-card__wishlist,
.feature-card:focus-within .feature-card__wishlist {
  filter: brightness(0) invert(1);
}

.feature-card:hover .feature-card__wishlist:hover,
.feature-card:hover .feature-card__wishlist:focus-visible,
.feature-card:focus-within .feature-card__wishlist:focus-visible {
  opacity: 0.92;
  outline: none;
}

.feature-card__media {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  /* min-height: 460px; */
  padding: 4.9rem 1.25rem 0.5rem;
  box-sizing: border-box;
}

.feature-card__media img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  vertical-align: middle;
  mix-blend-mode: multiply;
}

.feature-card__body {
  padding: 35px 30px;
}

.feature-card__title {
  margin: 0 0 0.5rem;
  font-size: 22px;
  line-height: 1.25;
  font-weight: bold;
  color: #000000;
}

.feature-card__desc {
  margin: 0;
  font-size: 15px;
  line-height: 20px;
  color: #000000;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-width: 280px;
}

@media (prefers-reduced-motion: reduce) {
  .feature-card-hover-img,
  .feature-card-hover-content {
    transition: none;
  }

  .feature-card-hover-content {
    transform: translateY(calc(100% + 24px));
    opacity: 0;
  }

  .feature-card:hover .feature-card-hover-content,
  .feature-card:focus-within .feature-card-hover-content {
    transform: translateY(0);
    opacity: 1;
  }
}

.feature-swiper-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.75rem;
  max-width: 100%;
}

.feature-swiper-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.feature-swiper-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #f3f3f3;
  color: #0095da;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.feature-swiper-btn:hover:not(.swiper-button-disabled),
.feature-swiper-btn:focus-visible:not(.swiper-button-disabled) {
  background: #F0F0F0;
  color: #0077b3;
  outline: none;
}

.feature-swiper-btn.swiper-button-disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.feature-swiper-pagination.swiper-pagination-progressbar {
  position: relative;
  flex: 1 1 auto;
  min-width: 120px;
  height: 4px;
  top: auto;
  left: auto;
  right: auto;
  margin: 0;
  border-radius: 2px;
  background: #E7DFDF;
}

.feature-swiper-pagination .swiper-pagination-progressbar-fill {
  background: #0095da;
  border-radius: 2px;
}

@media (max-width: 767px) {
  .feature-swiper-controls {
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .feature-swiper-pagination.swiper-pagination-progressbar {
    order: 3;
    flex: 1 1 100%;
    min-width: 0;
  }
}

.contact_details,
.product_overview_section,
.product_details_gallery_wrap{
  overflow: hidden;
}

/* ——— Image with text (template-parts/image-with-text.php) ——— */

.manufacturing-section,
.image-with-text{
    overflow: hidden;
}

.image-with-text__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.image-with-text_reverse .image-with-text__media {
  order: 2;
}

.image-with-text_reverse .image-with-text__content {
  order: 1;
}

.image-with-text__media--empty {
  display: none;
}

.image-with-text__media {
  position: relative;
  line-height: 0;
}

.image-with-text__img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.image-with-text__heading {
  margin: 0 0 1.75rem;
  font-family: var(--font-primary, system-ui, sans-serif);
  font-size: 60px;
  line-height: 1.15;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #111;
}

.image-with-text__heading-light {
  font-weight: 300;
}

.image-with-text__heading-bold {
  font-weight: 700;
  display: block;
}

.image-with-text__main {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.image-with-text__main:empty {
  display: none;
}

.image-with-text__features {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Two <ul> side by side (wrapper from `lists` block) */
.image-with-text__double:not(.image-with-text__features) {
  display:flex;
  flex-wrap: wrap;
  align-items: start;
}

.image-with-text__double:not(.image-with-text__features) > .image-with-text__features {
  min-width: 0;
}

/* One <ul>, items flow in two columns */
.image-with-text__features.image-with-text__double {
  display: flex;
  flex-wrap: wrap;
  row-gap: 10px;
}

.image-with-text__double  .image-with-text__features{
  padding-right: 4px;
}

.image-with-text__double  .image-with-text__features:first-child{
      width: 38%;
}

.image-with-text__double  .image-with-text__features:last-child{
  width: 62%;
}


.image-with-text__features.image-with-text__double li {
  margin-bottom: 0;
}

.image-with-text__features li {
  position: relative;
  margin: 0 0 10px;
  padding-left: 30px;
  font-family: var(--font-primary, system-ui, sans-serif);
  font-size: 20px;
  line-height: 32px;
  color: #222;
}

.image-with-text__features li:last-child {
  margin-bottom: 0;
}

.image-with-text__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: #83CBEC;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 12px;
}

.image-with-text__text,
.image-with-text__text-block {
  margin: 0;
  font-family: var(--font-primary, system-ui, sans-serif);
  font-size: 20px;
  line-height: 32px;
  color: #333;
}

.image-with-text__text-block b{
     font-weight: 500;
}

.image-with-text__cta-wrap {
  display: flex;
  justify-content: flex-end;
  margin-top: 35px;
}

.image-with-text__cta-left {
  display: flex;
  justify-content: flex-start;
  margin-top: 20px;
}

.image-with-text__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-family: var(--font-primary, system-ui, sans-serif);
  font-size: 1rem;
  font-weight: 500;
  color: #00b4e5;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.image-with-text__cta:hover,
.image-with-text__cta:focus-visible {
  color: #015da4;
  outline: none;
  opacity: 0.95;
}

.image-with-text__cta-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border: 1px solid #00b4e5;
  border-radius: 50%;
  line-height: 0;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.image-with-text__cta:hover .image-with-text__cta-icon,
.image-with-text__cta:focus-visible .image-with-text__cta-icon {
  border-color: #015da4;
}

.image-with-text__cta-icon img {
  display: block;
  width: 18px;
  height: auto;
}

.hme_cta_section{
     width: 100%;
     min-height: 630px;
     display: flex;
     align-items: center;
     background-size: cover;
     background-position: center;
     background-repeat: no-repeat;
}

.hme_cta_content{
  max-width: 710px;
}

.hme_cta_content h2{
  color: #fff;
}

.hme_cta_content p{
  max-width: 455px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #fff;
}


.sub-banner-inner-page {
  width: 100%;
  height: 600px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 90px;
  position: relative;
  overflow: hidden;
}

.sub-banner-inner-page::after {
  content: "";
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 43%, rgba(0, 0, 0, 0.7) 100%);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}

.sub-banner-inner-page h1{
  color: #fff;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
  z-index: 2;
  margin-bottom: 0;
}

.manufacturing-list ul{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;   
}

.manufacturing-box{
    width: 100%;
    min-height: 220px;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    background-color: #EEF8FF;
    padding: 20px 20px 30px;
}

.manufacturing-box-icon{
      width: 60px;
      height: 60px;
      margin-bottom: 10px;
}

.manufacturing-box-icon img{
     max-width: 100%;
     max-height: 100%;
}

.manufacturing-box-content{
  margin-top: auto;
  width: 100%;
}

.manufacturing-box h3{
      font-size: 24px;
      line-height: 1.1;
      color: #0095DA;
      font-weight: 400;
      margin-bottom: 0;
      max-width: 290px;
     
}

.certificate-section-list ul{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 10px; 
}

.certificate-box{
     width: 100%;
     min-height: 240px;
     border-radius: 25px;
     background-color: #fff;
     border: 1px solid #C7C7C7;
     height: 100%;
     padding: 25px 30px;
     display: flex;
     flex-wrap: wrap;
}

.certificate-box h3{
  font-size: 22px;
  line-height: 28px;
  font-weight: 500;
  color: #000000;
  margin-bottom: 10px;
}

.certificate-box-img{
     width: 100%;
     height: 160px;
     display: flex;
     justify-content: center;
     align-items: center;
     margin-top: auto;
}

.certificate-box-img img{
    max-width: 100%;
    max-height: 100%;
}


.project-box{
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
}

.project-box a{
pointer-events: none;
}

.project-box-image{
     width: 100%;
     height: 600px;

     &:after{
      content: "";
      width: 100%;
      height: 100%;
      background: #FFFFFF;
background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
      position: absolute;
      left: 0;
      top: 0;
      z-index: 1;
     }
}

.project-box-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}
.project-box:hover .project-box-image img{
  transform: scale(1.1);
}

.project-listing ul{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.project-box-content{
  position: absolute;
  bottom: 20px;
  padding: 0 30px;
  z-index: 2;
  color: #fff;
  max-width: 400px;
  transform: translateY(0px);
  transition: all 0.3s ease-in-out;
}
.project-box:hover .project-box-content{
  opacity: 1;
  visibility: visible;
  transform: translateY(-20px);
}

.project-box-content h3{
     font-size: 25px;
     font-weight: 500;
}

.project-box-content h5{
     font-size: 16px;
     line-height: 24px;
     font-weight: 500;
     color: #fff;
     margin-bottom: 5px;
}

.project-box-content .project-box-btn p{
  padding-left: 5px;
  font-size: 14px;
}

.project-box-btn{
padding-left: 15px;
border-left: 1px solid #0095D9;
opacity: 0;
visibility: hidden;

transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.project-box:hover .project-box-btn{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.project-box-content p{
  color: #fff;
  font-size: 16px;
  line-height: 24px;
}

.project-box-tag{
     position: absolute;
     z-index: 2;
     top: 30px;
     right: 30px;
     border: 1px solid #fff;
     min-height: 40px;
     line-height: 25px;
     padding: 6px 20px;
     display: block;
     border-radius: 35px;
     color: #fff;
     font-size: 16px;
}

.project-gallery-main{
     margin-top: 60px;
}

.projectMarqueeSwiper .swiper-wrapper{
     align-items: center;
     transition-timing-function: linear;
}

.projectMarqueeSwiper .swiper-slide img{
     width: 100%;
     display: block;
}

.sub-nav-wrap ul{
     width: 100%;
     display: flex;
     flex-wrap: wrap;
      justify-content: center;
     gap: 25px;
     list-style: none;
     padding: 0;
     margin: 0;
}

.sub-nav-wrap ul li a{
  line-height: 65px;
  font-size: 20px;
  padding: 0 25px;
  color: #5C5C5C;
  font-weight: 400;
  display: block;
  position: relative;
  transition: all 0.3s ease-in-out;
}

.sub-nav-wrap ul li a::after{
  content: "";
  width: 100%;
  height: 1px;
  background-color: #F6F6F6;
  position: absolute;
  left: 0;
  bottom: 0;
}

.sub-nav-wrap ul li a:hover{
  color: #0095D9;
}

.sub-nav-wrap ul li.active a{
  color: #0095D9;
}

.sub-nav-wrap ul li.active a::after{
   background-color: #0095D9;
}


.exhibition-showcase-list .hme_categoty_box.is-hidden{
  display: none;
}

.project-datasheet-list ul{
 display: flex;
 flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.project-datasheet-list ul li{
   width: calc(33.3% - 9px);
}

.datasheet-box{
      width: 100%;
      min-height: 160px;
      height: 100%;
      padding: 25px 30px;
      border: 1px solid #C7C7C7;
      border-radius: 25px;
      background-color: #fff;
      display: flex;
      flex-wrap: wrap;
}

.datasheet-box h3{
      font-size: 22px;
      line-height: 30px;
      font-weight: 500;
      color: #000000;
      margin-bottom: 10px;
      width: 100%;
}

.download-btn{
      display: inline-flex;
      align-items: center;
      font-size: 16px;
      line-height: 22px;
      color: #0095D9;
      gap: 5px;
      margin-top: auto;
      position: relative;
      transition: all 0.3s ease-in-out;
}

.download-btn:hover{
  color: #000;
}

.download-btn img{
  transition: all 0.3s ease-in-out;
}

.download-btn:hover img{
  filter: brightness(0);
}

.download-btn:hover::after{
  background-color: #000;
} 

.download-btn::after{
  content: "";
  width: 100%;
  height: 1px;
  background-color: #0095D9;
  position: absolute;
  left: 0;
  bottom: -3px;
}


.project-warranty-list ul{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.project-conditions-list ul{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;
}

.project-conditions-list ul li{
     width: calc(33.3% - 4px);
}

.certificate-list-main ul{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.certificate-list-main ul li{
     width: calc(33.3% - 9px);
}

.conditions-box{
      width: 100%;
      height: 100%;
      border-radius: 25px;
      min-height: 160px;
      border: 1px solid #C7C7C7;
      display: flex;
      align-items: center;
      padding: 20px;
}

.conditions-box h3{
    font-size: 22px;
    line-height: 32px;
    font-weight: 500;
    color: #000000;
    margin-bottom: 0;
    width: 100%;
}

.faq-main{
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 70px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item{
  border: 1px solid #EBEBEB;
  border-radius: 10px;
  background-color: #fff;
}

.faq-trigger{
  width: 100%;
  border: 0;
  background: transparent;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  text-align: left;
  padding: 30px;
}

.faq-question{
  font-size: 25px;
  line-height: 28px;
  font-weight: 500;
  color: #000000;
}

.faq-icon{
  color: #0095d9;
  flex: 0 0 auto;
  transition: transform 0.25s ease-in-out;
  margin-top: 3px;
}

.faq-item:not(.active) .faq-icon{
  transform: rotate(180deg);
}

.faq-item.active .faq-icon{
  margin-top: 6px;
}

.faq-content{
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.25s ease, padding-bottom 0.25s ease;
}

.faq-item.active .faq-trigger{
    padding-bottom: 10px;
}

.faq-item.active{
  padding-bottom: 30px;
}

.faq-item.active .faq-content{
  opacity: 1;
}
.faq-content p{
  color: #424242;
}

.exhibition-showcase-list{
     margin-top: 50px;
}

.exhibition-showcase-list .hme_categoty_three_col{
     gap: 20px 10px;
}

.exhibition-showcase-nav{
     background-color: #F6F6F6;
     background: #f6f6f6;
     border-radius: 16px;
     min-height: 64px;
     position: relative;
     box-shadow: 0px 3px 16px 0px rgba(0, 0, 0, 0.06);
     backdrop-filter: blur(6px);
     padding: 0 30px;
     display: flex;
     align-items: center;
     max-width: max-content;
     margin: 0 auto;
 
}

.exhibition-showcase-nav ul{
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
}

.exhibition-showcase-nav a{
  font-size: 14px;
  font-weight: 500;
   line-height: 40px;
   color: #151516;
}

.exhibition-showcase-nav li a:hover{
  color: #0095D9;
}

.exhibition-showcase-nav li.active a{
  color: #0095D9;
}

.packaging-standards-wrap{
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
}

.packaging-two-col{ 
  width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.packaging-three-col{ 
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.packaging-three-col .package-box .package-box-icon{
     justify-content: flex-start;
}

.package-box{
     width: 100%;
     background-color: #EEF8FF;
     min-height: 340px;
     padding: 40px;
     display: flex;
     flex-direction: column;
}

.package-box-content{
  width: 100%;
  margin-top: 15px;
}

.package-box-content h3{
  font-size: 24px;
  line-height: 32px;
  font-weight: 500; 
  color: #0095D9;
  margin-bottom: 10px;
}

.package-box-content .package-box-text{
     font-size: 16px;
     line-height: 24px;
     font-weight: 400;
     color: #534D4D;
     margin-bottom: 0;
     min-height: 72px;
}

.package-box-content-inner{
     max-width: 320px;
}

.package-box-icon{
  width: 100%;
  height: 90px;
  display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    margin-bottom: 15px;
}

.package-box-icon img{
  width: auto;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.product-filter{
      width: 55%;
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 10px;
      margin-left: auto;
      align-items: start;
      display: none;
}

/* Nice-select plugin adds float/clear; neutralize inside grid so all 4 show in a row */
.product-filter .nice-select{
  float: none;
  clear: none;
  width: 100%;
  max-width: 100%;
}

.nice-select.product-filter__select{
    background-color: #EEF8FF;
    height: 54px;
    line-height: 54px;
    border: none;
    border-radius: 300px;
    font-size: 14px;
    color: #000000;
    padding-left: 25px;
    padding-right: 35px;
    font-weight: 400;
}

.nice-select.product-filter__select .list{
  width: 100%;
  background-color: #EEF8FF;
  font-size: 15px;
}

.nice-select.product-filter__select .option{
         font-size: 15px;
         padding: 6px 20px;
         line-height: 28px;
         min-height: auto;
}

.nice-select.product-filter__select.current{
        line-height: 54px;
}

.nice-select.product-filter__select:after {
  border-bottom: 2px solid #0095D9;
  border-right: 2px solid #0095D9;
  content: '';
  display: block;
  height: 9px;
  margin-top: -4px;
  pointer-events: none;
  position: absolute;
  right: 20px;
  top: 49%;
  -webkit-transform-origin: 66% 66%;
  -ms-transform-origin: 66% 66%;
  transform-origin: 66% 66%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  width: 9px;
}

.categoty-filter-list{
  overflow: hidden;
}

.categoty-filter-list .productCategotySwiper{
  overflow: visible;
}

.categoty-filter-item{
  overflow: hidden;
  line-height: 0;
  height: 190px;
  position: relative;
}

.categoty-filter-item a{
  display: contents;
  position: relative;
}

.categoty-filter-item a::after{
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.4) 80%);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}

.categoty-filter-item img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}
.categoty-filter-item:hover img{
  transform: scale(1.1);
}

.categoty-filter-name{
  position: absolute;
  z-index: 2;
  padding: 15px 20px;
  left: 0;
  bottom: 0;
}

.categoty-filter-name h3{
  font-size: 20px;
  line-height: 25px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 0;
}

.product_download_list{
  width: 100%;
}

.product_download_list ul{
  width: 100%;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
}

.product_download_box{
     width: 100%;
     background-color:#EEF8FF;
     height: 226px;
}

.product_download_box a{
  width: 100%;
  height: 100%;
      display: flex;
      flex-wrap: wrap;
      padding: 20px;
}

.product_download_text{
   width: 100%;
   margin-top: auto;
   display: flex;
   flex-wrap: wrap;
   justify-content: space-between;
   gap: 10px;
}

.product_download_text h4{
    font-size: 24px;
    color: #015DA4;
    font-weight: 500;
    margin-bottom: 0;
    line-height: 32px;
}

.product_download_text .download-btn{
     margin-top: 0;
}

.product_overview_left{
      width: 45%;
      padding-right: 5%;
}

.product_overview_right{
      width: 55%;
}

.product-details-gallery{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.product-details-gallery__left{
  max-width: 660px;
  background-color: #fff;
  overflow: hidden;
}

.product-details-gallery__main{
  position: relative;
  min-height: 660px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid #C7C7C7;
  
  border-radius: 25px;
}

.productDetailsMainSwiper .swiper-slide{
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-details-gallery__wishlist{
  border: 0;
  background: transparent;
  position: absolute;
  right: 16px;
  top: 16px;
  width: 24px;
  height: 24px;
  padding: 0;
}

.product-details-gallery__main img{
  max-width: 82%;
  max-height: 500px;
  object-fit: contain;
}

.product-details-gallery__thumbs{
  padding: 10px 0;
  background-color: #fff;
}

.product-details-gallery__thumb{
  height: 98px;
  border: 1px solid #C7C7C7;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background-color: #fff;
}

.product-details-gallery__thumb.swiper-slide-thumb-active{
  border-color: #0095d9;
  box-shadow: inset 0 0 0 1px #0095d9;
}

.product-details-gallery__thumb img{
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.product-details-gallery__right  h2{
  font-size: 45px;
  line-height: 50px;
  font-weight: 900;
  color: #015DA4;
  margin-bottom: 5px;
}

.product-details-gallery__right > p{
  font-size: 16px;
  margin-bottom: 18px;
}

.product-details-specs{
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.product-details-specs li{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid #EBEBEB;
}

.product-details-specs li span{
  color: #111;
  font-weight: 500;
  font-size: 22px;
  line-height: 32px;
}

.product-details-specs li strong{
  color: #5E5E5E;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}

.product_details_nav{
  position: sticky;
  top: 0;
  z-index: 50;
}

.product_details_nav ul{
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 60px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.product_details_nav ul li a{
  display: block;
  padding: 28px 35px;
  font-size: 20px;
  line-height: 28px;
  color: #5C5C5C;
  position: relative;
  transition: color 0.25s ease-in-out;
}

.product_details_nav ul li a::after{
  content: "";
  width: 100%;
  height: 2px;
  background-color: transparent;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: background-color 0.25s ease-in-out;
}

.product_details_nav ul li.active a,
.product_details_nav ul li a:hover{
  color: #0095D9;
}

.product_details_nav ul li.active a::after{
  background-color: #0095D9;
}

.header-not-fixed .header.site-header{
  background: rgba(0, 0, 0, 0.6);
  position: static;
  padding: 15px 0;
}

.detail_banner{
  padding: 30px 0;
}

.detail_banner__breadcrumb{
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  line-height: 22px;
  color: #000000;
  margin-bottom: 10px;
}

.detail_banner__breadcrumb a{
  color: #222;
}

.detail_banner__breadcrumb span:last-child{
  color: #0095D9;
}

.detail_banner__row{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-top: 50px;
}



.detail_banner__left p{
  margin: 0;
  font-size: 16px;
  line-height: 22px;
  color: #000000;
}

.detail_banner__price{
  font-size: 30px;
  line-height: 1;
  font-weight: bold;
  color: #0095D9;
  white-space: nowrap;
}


.product-filter__select.mobile{
     display: none;
}

.sitemap-page-list li a{
  color: #0095D9;
  font-size: 16px;
  line-height: 30px;
}

.hme_cta_content_btn{
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
}


.pkg_bottom_section .main-title,
.pkg_bottom_section p{
  color: #fff;
}
.pkg_bottom_section h5{
   color: #3377AB;
}

.pkg_bottom_list{
     margin-top: 80px;
}

.pkg_bottom_list ul{
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 80px;
}

.pkg_bottom_list ul li:nth-child(2){
           margin-top: 40px;
}

.pkg_bottom_list ul li:nth-child(3){
  margin-top: 80px;
}

.pkg_bottom_list ul li:nth-child(4){
  margin-top: 120px;
}

.pkg_btm_box{
  width: 100%;
  border-top: 1px solid #FFFFFF;
  padding-top: 20px;
}

.pkg_btm_box h3{
  font-size: 30px;
  line-height: 30px;
  color: #0095D9;
  font-weight: 500;
  margin-bottom: 10px;
}

.pkg_btm_box h4{
   font-size: 22px;
   line-height: 30px;
   color: #FFFFFF;
   font-weight: 500;
   margin-bottom: 10px;
}

.pkg_btm_box p{
     font-size: 16px;
     line-height: 24px;
     color: #fff;
}

.location-search{
     width: 100%;
     padding: 20px 0;
}

.search-bar{
  width: 100%;
  height: 56px;
  line-height: 56px;
  background-color: #fff;
  padding: 0 20px 0 50px;
  border-radius: 49px;
  border: none;
  font-size: 14px;
  background-image: url(../images/search.svg);
 background-repeat: no-repeat;
 background-position: center left 20px;
}

.location-search-content{
     max-width: 700px;
}

.location-title{
     padding-bottom: 50px;
}

.location-title-inner{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.location-map{
 width: 100%;
}

.location-map-inner{
  position: relative;
  min-height: 680px;
  background: #d5e1ea;
  overflow: hidden;
}

.location-map-frame{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* .location-map-inner::before{
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(214, 226, 236, 0.50); 
  pointer-events: none;
} */

.location-card{
  position: absolute;
  z-index: 4;
  left: 13%;
  bottom: 16%;
  padding: 10px;
  width: min(100%, 650px);
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 280px 1fr 24px;
  align-items: stretch;
  box-shadow: 0 10px 30px rgba(30, 69, 98, 0.16);
}

.location-card__image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.location-card__content{
  padding: 30px 30px 20px;
}

.location-card__content h3{
  font-size: 23px;
  line-height: 26px;
  color: #0095D9;
  font-weight: bold;
  margin: 0 0 15px;
}

.location-line{
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0 0 20px;
  color: #000000;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
}

.location-line:nth-child(3){
    align-items: center;
}

.location-line:last-child{
  margin-bottom: 0;
  align-items: center;
}

.location-line__icon{
  color: #202020;
  line-height: 1;
  margin-top: 2px;
  flex: 0 0 auto;
}

.location-card__arrow{
  width: 50px;
  height: 50px;
  position: absolute;
  bottom: 10px;
  right: 10px;

  z-index: 2;
}


.location-map-pin{
  position: absolute;
  z-index: 3;
  right: 38%;
  top: 48%;
  width: 40px;
  height: auto;
}

.contact-form-main{
  display: grid;
  grid-template-columns: minmax(300px, 46%) 1fr;
  border-radius: 25px;
  overflow: hidden;
  background: #EEF8FF;
  align-items: center;
}

.contact-form-main__image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.contact-form-main__content{
  padding:40px 50px;
}

.contact-form-main__content .main-title{
  color: #0095D9;
  margin-bottom: 25px;
  font-weight: bold;
}

.contact-form-main__grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px 10px;
  margin-bottom: 15px;
}

.contact-field{
  width: 100%;
}

.contact-field label{
  display: block;
  color: #737171;
  font-size: 14px;
  line-height: 22px;
  margin-bottom: 5px;
}

.contact-field input{
  width: 100%;
  height: 56px;
  border: 0;
  border-radius: 49px;
  background: #fff;
  padding: 0 16px;
  font-size: 14px;
  color: #000;
}

.contact-field input::placeholder{
  color: #A7A9AC;
}

.contact-field textarea{
  width: 100%;
  min-height: auto;
  height: 140px;
  line-height: 25px;
  resize: none;
  border: 0;
  border-radius: 20px;
  background: #fff;
  padding: 15px 16px;
  font-size: 14px;

  color: #000;
}


.contact-field textarea::placeholder{
  color: #A7A9AC;
}

.contact-field--full{
  margin-bottom: 15px;
}

.contact-field--full:last-child{
     margin-bottom: 0;
}

.contact-file{
  position: relative;
  height: 56px;
  border-radius: 49px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  overflow: hidden;
}

.contact-file input[type="file"]{
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}

.contact-file__placeholder{
  font-size: 14px;
  color: #a0a8b0;
}

.contact-file__browse{
  font-size: 16px;
  color: #0095D9;
}

.contact-form-main__form .main_btn{
  margin-top: 45px;
min-width: auto;
}


.contact_details{
  width: 100%;
  border-top: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
}

.contact-details-grid{
  display: grid;
  grid-template-columns: 0.75fr 1.25fr 1.25fr 0.75fr;
}

.contact-details-item{
  padding: 30px 44px;
  min-height: 240px;
  border-right: 1px solid #d9d9d9;
}


.contact-details-item:first-child{
 padding-left: 0;
}


.contact-details-item:last-child{
  border-right: 0;
  padding-right: 0;
}

.contact-details-item h4{
  margin: 0 0 20px;
  color: #0095D9;
  font-size: 18px;
  line-height: 32px;
  font-weight: 500;
}

.contact-details-item p{
  margin: 0 0 6px;
  color: #000000;
  font-size: 22px;
  line-height: 32px;
  font-weight: 500;
}

.contact-details-item p label{
    font-size: 18px;
    color: #0095D9;
}

.contact-details-item p:last-child{
  margin-bottom: 0;
}

.contact-details-item a{
  color: inherit;
}

.career-list ul{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px 10px;
}

.career-card{
  background: #fff;
  border: 1px solid #C7C7C7;
  border-radius: 25px;
  padding: 20px;
  min-height: 185px;
  display: flex;
  flex-wrap: wrap;
}

.career-card h3{
  margin: 0 0 10px;
  color: #000;
  font-size: 22px;
  line-height: 30px;
  font-weight: 500;
}

.career-card__time{
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 24px;
  color: #424242;
}

.career-card__tags{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  width: 100%;
}

.career-card__tag{
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 10px 15px;
  border: 1px solid #0095D9;
  border-radius: 999px;
  color: #0095D9;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
}

.contact-details-item a:hover{
  color: #0095D9;
}

.wdo-logout-success {
    width: 100%;
    padding: 180px 0 150px;
    text-align: center;
}

.tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart-plus.no-txt, .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart.no-txt{
	   width: 24px;
	   height: 24px;
}

.tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart-plus.no-txt:before, .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart.no-txt:before{
	   font-size: 24px;
}

.button.tinvwl_button_close,
.button.tinvwl_button_view.main-button.tinvwl-btn-onclick,
.woocommerce .tinv-wishlist .tinvwl_added_to_wishlist.tinv-modal button.button{
  width: max-content;
  min-width: 100%;
  height: 35px;
  line-height: 35px;
  background-color: transparent;
  border: 1px solid #0095D9;
  margin-bottom: 0;
  color: #0095D9;
  cursor: pointer;
  padding: 0 20px;
  font-size: 16px;
  border-radius: 35px;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin-top: 10px;
  position: relative;
  text-align: center;
  transition: all 0.3s ease-in-out;
}

.button.tinvwl_button_close:hover,
.button.tinvwl_button_view.main-button.tinvwl-btn-onclick:hover,
.woocommerce .tinv-wishlist .tinvwl_added_to_wishlist.tinv-modal button.button:hover{
  background-color: #0095D9;
  border-color: #0095D9;
  color: #fff;
}

.tinv-wishlist .mannaglass-req-btn{
  font-size: 14px !important;
}

.detail-item strong{
     width: 100%;
     display: block;
     margin-bottom: 4px;
}

.entry-content ul{
       display: flex;
       flex-wrap: wrap;
}

.entry-content ul li{
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
  margin-top: 0;
  color: #303030;
  margin-bottom: 15px;
  margin-bottom: 5px;
  padding-left: 15px;
  position: relative;
  width: 100%;
}

.entry-content ul li::after{
      content: "";
      width: 6px;
      height: 6px;
      background-color: #0095D9;
      border-radius: 50%;
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
}

.entry-content h3{
  color: #0095D9;
  font-size: 22px;
  font-weight: 500;
  margin-top: 10px;
}

.categories_sections .e-products-grid{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 10px;
}

.location-search-feedback{
  width: 100%;
  display: block;
  margin-top: 10px;
  color: #015da4;
  padding: 0;
  font-size: 14px;
  margin-bottom: 0;
}

.location-search-results{
  display: flex !important;
    flex-wrap: wrap;
    gap: 8px;
}

.footer_subscribe_message.error {
  color: #ff0000f2;
}

.footer_subscribe_message.success{
  color: #000000;
}

.project-section h2{
  margin-bottom: 20px;
}

.categories_list {
  width: 100%;
  min-height: 600px;
  margin-top: 40px;
}

.categories_list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 50px 20px;
  justify-content: center;
}

.categories_list ul li{
   width: calc(33.3% - 19px);
}

.categories_list_box {
  width: 100%;
  -webkit-border-radius: 25px;
  border-radius: 25px;
  overflow: hidden;
}

.categories_list_img{
    width: 100%;
    -webkit-border-radius: 14px;
    border-radius: 14px;
    overflow: hidden;
}

.categories_list_img img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  object-position: top center;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.categories_list_box:hover .categories_list_img img {
  transform: scale(1.1);
}

.categories_list h5 {
  font-size: 22px;
  line-height: 30px;
  color: #000000;
  margin-top: 26px;
  font-weight: 500;
}


.search-field.ui-autocomplete-input{
  width: 100%;
  height: 50px;
  line-height: 50px;
  font-size: 16px;
  padding: 0px 20px;
  padding-right: 55px;
  border-radius: 30px;
  border:1px solid #0095D9;
  outline: none;
}

.woocommerce-product-search{
  position: relative;
}

.woocommerce-product-search button{
      width: 43px;
      height: 43px;
      line-height: 44px;
      border-radius: 30px;
      border: 1px solid #0095D9;
      outline: none;
      background-color: #0095D9;
      color: #fff;
      font-size: 0;
      font-weight: 500;
      text-align: center;
      transition: all 0.3s ease-in-out;
      cursor: pointer;
      position: absolute;
      right: 4px;
      top: 3px;
      background-image: url("../images/search-white.png");
      background-repeat: no-repeat;
      background-position: center;
      transition: all 0.3s ease-in-out;
}

.woocommerce-product-search button:hover{
  background-color: #fff;
  color: #0095D9;
  border-color: #0095D9;
  background-image: url("../images/search.png");
}