@font-face {
  font-family: 'HoneywellSans-Black';
  src: url('/fonts/Honeywell-fonts/HoneywellSans-Black.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
  font-family: 'HoneywellSans-Bold';
  src: url('/fonts/Honeywell-fonts/HoneywellSans-Bold.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
  font-family: 'HoneywellSans-Extrabold';
  src: url('/fonts/Honeywell-fonts/HoneywellSans-Extrabold.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
:root {
  --brand-bw-honeywell-primary-color: #D22630; /* Primary Honeywell - RED */
  --brand-bw-honeywell-secondary-color: #D6D6D6; /* Secondary Honeywell - Light Gray */
  --brand-bw-honeywell-third-color: #666666; /* third color - Dark Gray Color */
  --brand-bw-honeywell-general-color: #303030; /* Dark gray - Text color */
  --brand-bw-honeywell-buttons-color: #0071B3; /* CTA Primary button */
  --brand-bw-honeywell-buttons-color-hover: #00629B; /* CTA Primary button HOVER */
  --white-bw-honeywell-color: #FFFFFF; /* white */ 
  --black-bw-honeywell-color: #191A00; /* black */ 
  --body-bw-honeywell-font: Helvetica, Arial, sans-serif;
  --p-bw-honeywell-font: 'HoneywellSans-Black', Helvetica, Arial, sans-serif;
  --p-bw-honeywell-font-regular: 'HoneywellSans-Bold', Helvetica, Arial, sans-serif;
  --p-bw-honeywell-font-bold: 'HoneywellSans-Extrabold', Helvetica, Arial, sans-serif;
}

/* Base container */
.bw-honeywell-header#store-banner {
  font-family: var(--body-bw-honeywell-font);
  font-size: 16px;    /* Base size for normal text */
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--brand-bw-honeywell-general-color);   /* Default text color */
  margin-bottom: 0px;
}
/* Headings */
.bw-honeywell-header#store-banner h1,
.bw-honeywell-header#store-banner h2,
.bw-honeywell-header#store-banner h3,
.bw-honeywell-header#store-banner h4,
.bw-honeywell-header#store-banner h5,
.bw-honeywell-header#store-banner h6 {
  font-family: var(--p-bw-honeywell-font-regular); /* All titiles Honeywell-font family */
  color: var(--brand-bw-honeywell-primary-color); /* Primary color by defualt*/
}
.bw-honeywell-header#store-banner h1 { font-size: 2.5rem; font-weight: 700; margin-bottom: 1rem; }
.bw-honeywell-header#store-banner h2 { font-size: 2rem; font-weight: 600; margin-bottom: 0.85rem; }

/* Paragraphs */
#store-banner p {
  font-family: var(--body-bw-honeywell-font); /* Helvetica, Arial, sans-serif */
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

/* Links */
.bw-honeywell-header#store-banner a {
 /* font-family: inherit;    Inherit Helvetica, Arial, sans-serif */
  font-size: 1rem;
  /* font-weight: 700; */
  color: var(--brand-bw-honeywell-general-color); 
  text-decoration: none;
  transition: all 0.3s ease;
}

a:focus {
    outline: thin dotted #333;
    outline: 2px transparent;
    outline-offset: -2px;
}

/**************************************     HEADER     ************************************************/

.bw-honeywell-header {
  width: 100vw !important;
  position: relative;
  margin-left: -50vw;
  left: 50%;
  box-sizing: border-box;
  padding: 1em 0;
  background: linear-gradient(to top, var(--brand-bw-honeywell-primary-color) 3px, var(--white-bw-honeywell-color) 3px);
  background-color: transparent;
  outline: none;
}
.bw-honeywell-header > .row-fluid
{
  max-width: 1140px;
  margin: 0 auto;
  padding: 7px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-around;
  align-items: center;
  flex-direction: row;
}
.bw-honeywell-header .span3.logo-bw-honeywell-sws img.brandlogo{
  width: 100%;
  margin-left: 0px;
}
.bw-honeywell-header .row-fluid .navbar.navbar-inner-bw-honeywell-subsite {
  float: right;
}
.bw-honeywell-header .span9.subheading-nav {
  float: right;
  margin-top: 0;
}

.bw-honeywell-header .row-fluid .navbar .nav-collapse.sws.collapse {
  margin-top: 0px !important;
  width: 53rem;
}

/**************************************     NAV     ************************************************/
.navbar .nav.navbar-bw-honeywell-subsite {
  margin-right: 0;
  width: 86%;
  font-family: var(--p-bw-honeywell-font-regular);

  /* Vendor prefixes for older browsers */
  display: -webkit-box;      /* Safari 6-9 */
  display: -moz-box;         /* Firefox 19-28 */
  display: -ms-flexbox;      /* IE 10 */
  display: -webkit-flex;     /* Safari 9+ */
  display: flex;             /* Standard flex display */

  /* Vendor prefixes for flex-wrap */
  -webkit-box-flex-wrap: nowrap;   /* Safari 6-9 */
  -moz-box-flex-wrap: nowrap;      /* Firefox 19-28 */
  -webkit-flex-wrap: nowrap;       /* Safari 9+ */
  -ms-flex-wrap: nowrap;           /* IE 10 */
  flex-wrap: nowrap;               /* Standard flex-wrap */
  
  justify-content: space-evenly;  /* Distribute items */
  align-items: center;             /* Align vertically */
  gap: 1em;
}

.navbar .nav.navbar-bw-honeywell-subsite > li.home-btn {
  /* Vendor prefixes for flex-grow, flex-shrink, and flex-basis */
  -webkit-box-flex: 0;     /* Safari 6-9 */
  -moz-box-flex: 0;        /* Firefox 19-28 */
  -webkit-flex: 0;         /* Safari 9+ */
  -ms-flex: 0;            /* IE 10 */
  flex: 0;              /* Takes up less space compared to other items */
}

.navbar .nav.navbar-bw-honeywell-subsite > li {
  /* Vendor prefixes for flex-grow, flex-shrink, and flex-basis */
  -webkit-box-flex: 1;     /* Safari 6-9 */
  -moz-box-flex: 1;        /* Firefox 19-28 */
  -webkit-flex: 1;         /* Safari 9+ */
  -ms-flex: 1;            /* IE 10 */
  flex: 1;                /* Adjust for proportional growth */
  text-align: center;
}
.navbar.navbar-inner-bw-honeywell-subsite.navbar-inner-bw-honeywell-subsite-french .nav.navbar-bw-honeywell-subsite {
  gap: 0.5em;
}

/* home button */
.home-btn .nav-home-icon-svg {
  color: var(--brand-bw-honeywell-general-color);
  width: 20px;
  height: 20px;
  /* transition: color 0.2s ease; */
  display: block;
}
.home-btn .nav-home-icon-path {
  transform: translate(-3213.967px, -45.771px);
  fill: none;
  stroke: var(--brand-bw-honeywell-general-color); 
  stroke-width: 1px;
}
.nav-home-icon-line {
  fill: none;
  stroke: var(--brand-bw-honeywell-primary-color);
  stroke-width: 1px;
  transform: translate(3.325px, 12.998px);
  transition: stroke-width 0.4s ease-in-out, transform 0.4s ease-in-out;
}
.navbar .nav.navbar-bw-honeywell-subsite a.nav-home-icon{
  padding: 18px 10px;
}
.navbar.navbar-inner-bw-honeywell-subsite .nav > li > a {
  text-shadow: none;
  display: block;
  white-space: nowrap;
  padding: 14px 10px;
  font-size: 1.25rem !important;
  font-family: var(--p-bw-honeywell-font-bold);
  font-weight: 600;
  transition: all 0.3s ease-in-out;
  color: var(--brand-bw-honeywell-general-color) !important;
  text-transform: none;
}
.navbar.navbar-inner-bw-honeywell-subsite.navbar-inner-bw-honeywell-subsite-french.mhide .nav>li>a {
  padding: 14px 9px;
}
.navbar.navbar-inner-bw-honeywell-subsite.navbar-inner-bw-honeywell-subsite-french.mhide a.nav-home-icon{
  padding: 18px 10px !important;
}
.navbar.navbar-inner-bw-honeywell-subsite .nav > li > a.nav-home-icon:hover .nav-home-icon-line {
  stroke-width: 3px;
  transform: translate(3.325px, 11.998px);
}
.nav, .navbar {
  margin-bottom: 0px;
}
/* NAV HOVER COLOURS */
.navbar.navbar-inner-bw-honeywell-subsite .nav > li > a:active,
.navbar.navbar-inner-bw-honeywell-subsite .nav > li > a:hover,
.navbar .nav.navbar-bw-honeywell-subsite li.dropdown.open > .dropdown-toggle,
.navbar .nav.navbar-bw-honeywell-subsite li.dropdown.active > .dropdown-toggle,
.navbar .nav.navbar-bw-honeywell-subsite li.dropdown.open.active > .dropdown-toggle {
  z-index: 1;
  position: relative;
  background-color: transparent;
}

/* Underline Effect */
.hover-underline-animation::before {
  display: block;
  content: ""; /* Add content after the element */
  position: absolute;
  width: 100%;
  transform: scaleY(0);
  height: 3px; /* Height of the underline */
  bottom: 11px;
  left: 0;
  background: var(--brand-bw-honeywell-primary-color);
  transform-origin: bottom; /* Expands from bottom to top */
  transition: transform 0.5s linear;
  -webkit-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
  -ms-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
}
.hover-underline-animation:hover::before,
.nav-item-container:hover .hover-underline-animation::before,
.active.hover-underline-animation::before,
.open .hover-underline-animation::before {
  transform: scaleY(1); /* Scale the underline on hover */
  visibility: visible;
}
.hover-underline-animation:hover::before,
.hover-underline-animation.open::before {
  transform: scaleY(1);
}
.active,
.hover-underline-animation {
  position: relative;
}

.navbar.navbar-inner-bw-honeywell-subsite .navbar-bw-honeywell-subsite li {
  line-height: 1.5;
}

/* DROP-DOWN MENU STYLES */
/* hide Bootstrap arrow */
.navbar .nav > li > .bw-honeywell-whole-cateogies-list-menu.dropdown-menu:before,
.navbar .nav > li > .bw-honeywell-whole-cateogies-list-menu.dropdown-menu:after {
  display: none;
}

/* base (hidden) */
.navbar .nav > li > .bw-honeywell-whole-cateogies-list-menu.dropdown-menu {
    display: flex !important;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    min-width: 647px;
    left: 0;
    top: 47px;
    border-radius: 3px;
    background-color: var(--white-bw-honeywell-color);
    box-shadow: 0 2px 3px #13486040;
    padding: 6px 12px;
    margin: 0;
    border: 1px solid var(--brand-bw-honeywell-secondary-color);
    opacity: 0;
    transform: translateY(5px);
    pointer-events: none;
    transition: opacity .35s ease, transform .8s ease;
    text-align: left;
    font-family: var(--body-bw-honeywell-font);
}
.navbar.navbar-inner-bw-honeywell-subsite.navbar-inner-bw-honeywell-subsite-french .nav > li > .bw-honeywell-whole-cateogies-list-menu.dropdown-menu{
  min-width: 656px;
  left: 0;
}
.navbar .nav > li > .bw-honeywell-whole-cateogies-list-menu.dropdown-menu.industries-list{
  min-width: 350px;
}
.navbar.navbar-inner-bw-honeywell-subsite.navbar-inner-bw-honeywell-subsite-french .nav > li >.bw-honeywell-whole-cateogies-list-menu.dropdown-menu.industries-list{
  min-width: 400px;
}
/* show only on click (when .open is applied by Bootstrap JS) */
.navbar .nav > li.open > .bw-honeywell-whole-cateogies-list-menu.dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
/* ******** */
.dropdown-menu.bw-honeywell-whole-cateogies-list-menu ul {
  text-decoration: none;
  list-style: none;
  padding-left: 0;
}
.dropdown-menu.bw-honeywell-whole-cateogies-list-menu > li{
  flex: 1;
  list-style: none;
}
.dropdown-menu.bw-honeywell-whole-cateogies-list-menu .first-col,
.dropdown-menu.bw-honeywell-whole-cateogies-list-menu .second-col,
.dropdown-menu.bw-honeywell-whole-cateogies-list-menu .resources{
  margin: 0px 10px;
}
/* Shared dropdown styles for all items */
.dropdown-menu.bw-honeywell-whole-cateogies-list-menu .first-col a,
.dropdown-menu.bw-honeywell-whole-cateogies-list-menu .second-col a,
.dropdown-menu.bw-honeywell-whole-cateogies-list-menu .resources a {
  padding: 2px 10px !important;
  line-height: 1.5;
  text-align: left;
  display: block;
  text-decoration: none;
  transition: all 0.3s ease !important;
  margin-left: 10px;
  margin-bottom: 3px;
}
.dropdown-menu.bw-honeywell-whole-cateogies-list-menu .first-col a:hover,
.dropdown-menu.bw-honeywell-whole-cateogies-list-menu .second-col a:hover,
.dropdown-menu.bw-honeywell-whole-cateogies-list-menu .resources a:hover {
  margin-left: 14px;
  background: transparent !important;
  color: var(--black-bw-honeywell-color) !important;
}

/* Titles (text-only and link-headers) */ 
.dropdown-menu.bw-honeywell-whole-cateogies-list-menu .first-col .dropdown-main-header-title a,
.dropdown-menu.bw-honeywell-whole-cateogies-list-menu .second-col .dropdown-main-header-title a,
.dropdown-menu.bw-honeywell-whole-cateogies-list-menu .resources .dropdown-main-header-title a{
  font-weight: 700;
  color: var(--black-bw-honeywell-color);
  margin-left: 0;
  font-size: 1rem;
  padding: 0;
  position: relative;
  display: block;
  transition: all 0.3s ease-in-out;
}
.dropdown-menu.bw-honeywell-whole-cateogies-list-menu .resources .dropdown-main-header-title a{
  font-family: var(--p-bw-honeywell-font-regular);
}
.dropdown-menu.bw-honeywell-whole-cateogies-list-menu .first-col .dropdown-main-header-title a:hover,
.dropdown-menu.bw-honeywell-whole-cateogies-list-menu .first-col .dropdown-main-header-title a:visited,
.dropdown-menu.bw-honeywell-whole-cateogies-list-menu .second-col .dropdown-main-header-title a:hover,
.dropdown-menu.bw-honeywell-whole-cateogies-list-menu .second-col .dropdown-main-header-title a:visited,
.dropdown-menu.bw-honeywell-whole-cateogies-list-menu .resources .dropdown-main-header-title a:hover,
.dropdown-menu.bw-honeywell-whole-cateogies-list-menu .resources .dropdown-main-header-title a:visited{
  background: transparent !important;
  color: var(--black-bw-honeywell-color) !important;
  margin-left: 4px;
}

/* Red vertical line */
.dropdown-main-header-title ::before {
    content: "";
    position: absolute;
    width: 2px;
    height: 10px;
    background-color: var(--brand-bw-honeywell-primary-color);
    border-radius: 0;
    top: 50%;
    left: 0px;
    transform: translateY(-50%) rotate(0deg);
    transform-origin: center;
    transition: transform 0.3s ease-in-out;
}
/* On hover red line becomes horizontal */
.dropdown-main-header-title:hover ::before {
  transform: translateY(-50%) rotate(90deg);
}
.dropdown-menu.bw-honeywell-whole-cateogies-list-menu .dropdown-header a {
    font-weight: 400;
    color: var(--brand-bw-honeywell-buttons-color);
    margin-left: 0;
    display: inline-block;
    background: hsl(202.12deg 100% 35.1% / 0%);
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}
.dropdown-menu.bw-honeywell-whole-cateogies-list-menu .dropdown-header a:hover {
    margin-left: 3px;
    background: hsl(202.12deg 100% 35.1% / 10%) !important;
    color: var(--brand-bw-honeywell-buttons-color) !important;
}
.dropdown-menu.bw-honeywell-whole-cateogies-list-menu .dropdown-header a:active,
.dropdown-menu.bw-honeywell-whole-cateogies-list-menu .dropdown-header a:focus {
    background: transparent !important;
    background-image: none !important;
    color: var(--brand-bw-honeywell-general-color) !important;
}
/* Split the line with the text */
.dropdown-menu.bw-honeywell-whole-cateogies-list-menu .dropdown-header.multiline-category a{ 
  display: inline-block;
  max-width: 18ch;
  line-height: 1.2;
  vertical-align: middle;
  white-space: normal;
  word-wrap: break-word;
}
/**************************************     SEARCH BAR     ************************************************/
.bw-honeywell-search form#ProductDisplayForm button.btn.btn-default .nav-search-icon-svg, 
.bw-honeywell-mobile .mobile-search button .nav-search-icon-svg {
  height: auto;
  width: 20px;
  color: var(--black-bw-honeywell-color);
  display: block;
}
.bw-honeywell-search .btn{
  padding: 0px;
}
/* Style for the button */
 .bw-honeywell-search form#ProductDisplayForm button.btn.btn-default {
    background-color: transparent;
    border-radius: 0 3px 3px 0;
    border: none;
    width: 40px;
    height: 36px !important;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: background-color 0.4s ease;
    z-index: 2;
    padding: 9px;
    border-left: 1px solid var(--brand-bw-honeywell-primary-color);
}
/* Search bar container */
.bw-honeywell-search.input-append {
  margin-left: auto;
  margin-right: 0;
  position: relative;
  left: 0;
  width: 250px;
}
/* Search Bar - Expand on Hover/Focus */
.bw-honeywell-search.input-append:hover,
.bw-honeywell-search.input-append:focus-within {
  background-color: var(--brand-bw-honeywell-primary-color);
  box-shadow: none;
}
/* Input field styling */
.bw-honeywell-search input#ProductSearch.appendInputButton {
    font-family: var(--body-bw-honeywell-font);
    color: var(--brand-bw-honeywell-general-color);
    border: none;
    background-color: transparent;
    padding: 7px 0px;
    margin-right: 0px;
    margin-left: 0px;
    font-weight: 500;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    border: none;
    left: -15px;
    width: 80%;
}

.bw-honeywell-search form#ProductDisplayForm {
    width: 100%;
    padding: 0;
    transform: translate(0%, 0%);
    background: var(--white-bw-honeywell-color);
    height: 36px;
    border-radius: 3px;
    transform-origin: right;
    transition: width 0.4s ease, background-color 0.4s ease, right 0.4s ease;
    border: 1px solid var(--brand-bw-honeywell-general-color);
}

/* Change Button Color & Move Left when Hovering */
.bw-honeywell-search.input-append:hover form#ProductDisplayForm button.btn.btn-default,
.bw-honeywell-search.input-append:focus-within form#ProductDisplayForm button.btn.btn-default {
  background-color: transparent;
}
/* Input focus styling */
.bw-honeywell-search input.refine-search.appendInputButton:focus {
  color: var(--brand-bw-honeywell-primary-color);
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  border-color: var(--white-bw-honeywell-color);
}

.bw-honeywell-search input.refine-search.appendInputButton::placeholder {
  /* your styles */
  color: var(--brand-bw-honeywell-primary-color);
  opacity: 1;
}
.bw-honeywell-search input.refine-search.appendInputButton:hover::placeholder{
  color: var(--black-bw-honeywell-color);
}

/******  END SEARCH BAR ***** */
/* ********* END HEADER ********* */

/**************************************     HEROS     ************************************************/
.carousel-top.bw-honeywell-sws-store {
  margin-top: 0;
  width: 100vw !important;
  position: relative;
  margin-left: -50vw;
  left: 50%;
  padding-bottom: 0em;
}
.bw-honeywell-sws-store #myCarousel {
  margin-bottom: 10px;
}
/* Set a fixed height for the carousel inner to prevent jumping */
.bw-honeywell-sws-store #myCarousel .carousel-inner.hero-section,
.bw-honeywell-sws-store #myCarousel .carousel-inner.hero-section-french{
  height: 450px;
}
.bw-honeywell-sws-store #myCarousel .hero-section {
  width: 100%;
  background-image: url(/images/pages/bw-honeywell/bw-honeywell-background-hero-opt-upd.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: 0px;
}
.bw-honeywell-sws-store #myCarousel .hero-content {
  width: min(90vw, 1140px);
  box-sizing: border-box;
    display: flex;
    align-items: center;
    padding: 0;
    max-height: 450px;
    margin: 0 auto;
    background-color: transparent;
    border-radius: 6px;
    height: 100%;
}
.bw-honeywell-sws-store #myCarousel .text-content {
    padding: 0 30px 0 0;
    width: 100%;
    max-width: 700px;
}
.bw-honeywell-sws-store #myCarousel .text-content .text-contnet-inside {
    padding: 1em 0em 1em 3em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: baseline;
    background-color: transparent;
    border-radius: 20px;
    box-shadow: none;
    min-height: 340px;
    height: fit-content;
}
.bw-honeywell-sws-store #myCarousel .hero-content .image-content{
  width: 100%;
  text-align: center;
  overflow: hidden;
}
.bw-honeywell-sws-store #myCarousel .hero-content .image-content img {
    object-fit: contain;
    height: auto;
    width: 100%;
    max-height: 450px;
    object-position: center;
    margin-top: 0;
    transition: transform 0.8s ease-in-out;
}

/* Apply a full-surface invisible link to cover all content */
.bw-honeywell-sws-store .hero-content .hero-global-link {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 5; /* Place between the carousel arrows and the content (text/images) */
}
/* Other Carousel Styles */
.bw-honeywell-sws-store #myCarousel h1 {
    font-size: clamp(1.2rem, 2.9vw, 2.3rem);
    margin-bottom: 0px;
    color: var(--brand-bw-honeywell-primary-color);
    line-height: 1.2;
    letter-spacing: 0.5px;
    font-family: var(--p-bw-honeywell-font-bold);
    white-space: normal;
    text-transform: uppercase;
    position: relative;
    padding-left: 15px;
}
/* Red vertical line */
.bw-honeywell-sws-store #myCarousel h1::before {
    content: "";
    position: absolute;
    width: 4px;
    min-height: 4.5rem;
    height: 100%;
    background-color: var(--brand-bw-honeywell-primary-color);
    border-radius: 0;
    top: 50%;
    left: 0px;
    transform: translateY(-50%) rotate(0deg);
    transform-origin: center;
    transition: transform 0.3s ease-in-out;
}
.bw-honeywell-sws-store #myCarousel h1 .bw-honeywell-brand-white-text {
    color: var(--white-bw-honeywell-color);
    display: block;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}
.bw-honeywell-sws-store #myCarousel h2 {
    color: var(--brand-bw-honeywell-general-color);
    font-size: clamp(1rem, 2.2vw, 1.5rem);
    font-family: var(--body-bw-honeywell-font);
    font-weight: 300;
    line-height: 1.2;
    margin: 10px 0 15px;
    white-space: normal;
    font-style: normal;
}
.bw-honeywell-sws-store #myCarousel .carousel-btn {
    margin-top: 0px;
    font-size: 1rem;
    font-family: var(--body-bw-honeywell-font);
    box-shadow: none;
    text-transform: none;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    color: var(--white-bw-honeywell-color);
    gap: 0px;
    background-color: var(--brand-bw-honeywell-buttons-color);
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    border: none;
    overflow: hidden;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}
/* Text wrapper (to move only the text) */
.bw-honeywell-sws-store #myCarousel .carousel-btn span {
    display: inline-block;
    transition: transform 0.3s ease-in-out;
}
/* Arrow inside the button */
.bw-honeywell-sws-store #myCarousel .carousel-btn::after {
    content: "";
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15.045' height='9.717' viewBox='0 0 15.045 9.717'%3E%3Cpath d='M14.707,4.042,11,.338A1.155,1.155,0,0,0,9.37,1.971L11.1,3.7H1.155a1.155,1.155,0,0,0,0,2.309H11.1L9.37,7.747A1.155,1.155,0,0,0,11,9.379l3.7-3.7a1.155,1.155,0,0,0,0-1.633' fill='%23ffffff'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
    width: 16px;
    height: 11px;
    margin-left: 10px;
    display: inline-block;
    transform: translateX(0px);
    transition: transform 0.3s ease-in-out;
}

/* --- Global hover effect on slide --- */

/* Text shifts to the left */
.bw-honeywell-sws-store #myCarousel .hero-content:hover .carousel-btn span {
    transform: translateX(-2px);
}

/* Arrow straightens, elongates, and follows the text */
.bw-honeywell-sws-store #myCarousel .hero-content:hover .carousel-btn::after {
    transform: translateX(3px);
}
/* Prevent color changes from being overridden by other styles */
.bw-honeywell-sws-store #myCarousel .carousel-btn:hover {
    color: var(--white-bw-honeywell-color) !important;
    background-color: var(--brand-bw-honeywell-buttons-color-hover) !important;
}

/* Trigger button animation when hovering anywhere on the banner */
.bw-honeywell-sws-store #myCarousel .hero-content:hover .carousel-btn {
    color: var(--white-bw-honeywell-color);
    text-decoration: none;
}

/* Add a subtle zoom effect to the background image on hover */
.bw-honeywell-sws-store #myCarousel .hero-content:hover .image-content img {
    transform: scale(1.03);
}

/* --- END Global hover effect on slide --- */

.carousel-control-new {
  color: var(--white-bw-honeywell-color) !important;
  background-color: var(--brand-bw-honeywell-primary-color);
  border: 2px solid var(--white-bw-honeywell-color);
  border-radius: 50% !important;
  width: 40px !important;
  height: 40px !important;
  line-height: 40px;
  text-align: center;
  font-size: 20px; /* size of the arrow */
  font-weight: lighter;
  text-shadow: none;
  position: absolute; /* Position the arrows */
  top: 55%; /* Position vertically in the middle */
  transform: translateY(-50%); /* Adjust vertical position */
  transition: 0.3s ease-in-out;
}
.carousel-control-new.left {
  left: 2rem;
}
.carousel-control-new.right {
  right: 2rem;
}
.carousel-control-new:hover{
  background-color: var(--brand-bw-honeywell-primary-color);
  border: 2px solid var(--white-bw-honeywell-color);
  color: var(--white-bw-honeywell-color) !important;
  box-shadow: 0 4px 7px rgba(0, 0, 0, 0.25);
}
/* Important: carousel arrows stay above the global link */
.carousel-control-new {
    z-index: 10 !important;
}

/* ********* END Heroes ********* */

/**************************************     BUTTONS     ************************************************/
/* GRID */
.bw-honeywell-grid-container {
    display: grid;
    display: -ms-grid;
    gap: 3em 1.5em;
    /* gap: 1em; */
    margin: 50px auto 40px;
    /* margin: 30px auto 40px; */
    grid-template-columns: repeat(3, 1fr);

    /* Grid structure: 
       b1, b2... — category buttons. 
       ad — the high vertical block. 
    */
    grid-template-areas: 
        "b1 b2 ad"
        "b4 b5 ad"
        "b6 b7 ad"
        "b8 b9 b10"
        "b11 b12 b13"
        "b14 b15 b16";
        width: 100%;
    box-sizing: border-box; 
}
.bw-honeywell-grid-container > a {
    min-width: 0;
    width: 100% !important;
    display: block;
    height: 100%;
    text-decoration: none !important;
}
/* Mapping children to grid areas */
.bw-honeywell-grid-container > a:nth-child(1)  { grid-area: b1; }
.bw-honeywell-grid-container > a:nth-child(2)  { grid-area: b2; }
.bw-honeywell-grid-container > a:nth-child(3)  { grid-area: ad; } /* High side ad block */
.bw-honeywell-grid-container > a:nth-child(4)  { grid-area: b4; }
.bw-honeywell-grid-container > a:nth-child(5)  { grid-area: b5; }
.bw-honeywell-grid-container > a:nth-child(6)  { grid-area: b6; }
.bw-honeywell-grid-container > a:nth-child(7)  { grid-area: b7; }
.bw-honeywell-grid-container > a:nth-child(8)  { grid-area: b8; }
.bw-honeywell-grid-container > a:nth-child(9)  { grid-area: b9; }
.bw-honeywell-grid-container > a:nth-child(10) { grid-area: b10; }
.bw-honeywell-grid-container > a:nth-child(11) { grid-area: b11; }
.bw-honeywell-grid-container > a:nth-child(12) { grid-area: b12; }
.bw-honeywell-grid-container > a:nth-child(13) { grid-area: b13; }
.bw-honeywell-grid-container > a:nth-child(14) { grid-area: b14; }
.bw-honeywell-grid-container > a:nth-child(15) { grid-area: b15; }
.bw-honeywell-grid-container > a:nth-child(16) { grid-area: b16; }

/* General link container styling */
.bw-honeywell-grid-container > a {
    position: relative;
    float: none !important; /* Cleanup floats */
    width: auto !important;  
    text-decoration: none !important;
    display: block;
    height: 100%;
}
/* END GRID STYLES */

/*  Main Card Styling */
.bw-honeywell-item {
    background-color: #ffffff;
    border: 1px solid var(--brand-bw-honeywell-secondary-color);
    border-radius: 3px;
    height: 140px;
    position: relative;
    box-sizing: border-box;
    overflow: visible;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    /* justify-content: space-between; */
    align-items: flex-end;
}
.bw-honeywell-item:not(.side-ad)::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30px;
    background-color: var(--brand-bw-honeywell-secondary-color);
    border-bottom-left-radius: 2px;
    border-bottom-right-radius: 2px;
    z-index: 0;
}

/* Image Container */
/* .bw-honeywell-application-img {
    width: 46%;
    height: inherit;
    overflow: visible;
    background-color: transparent;
    border-radius: 0px;
    text-align: center;
    margin: 0;
    position: relative;
    order: 2;
    z-index: 1;
} */
 .bw-honeywell-application-img {
    width: 160px;
    height: 100%;
    overflow: visible;
    background-color: transparent;
    border-radius: 0px;
    text-align: center;
    margin: 0;
    position: absolute;
    z-index: 1;
    right: 0px;
    bottom: 0;
}

.bw-honeywell-application-img img {
    width: auto;
    height: 165px;
    object-fit: contain;
    display: block;
    backface-visibility: hidden;
    transition: transform 0.4s ease-in-out, filter 0.3s ease-in-out;
    margin: 0 auto;
    transform: translateY(-30px) scale(1);
}

/* Title Block (category buttons) */
.bw-honeywell-bkgr-btn {
    padding: 0 0 15px 15px;
    background: transparent;
    width: 55%;
    order: 1;
    box-sizing: border-box;
    margin: auto 0;
}
.application-title {
    font-family: var(--p-bw-honeywell-font-bold);
    font-weight: 700;
    /* font-size: 1rem; */
    font-size: clamp(.8rem, 2.9vw, 1rem);
    color: var(--brand-bw-honeywell-primary-color);
    margin: 0 0 4px 0;
    line-height: 1.2;
    text-align: left;
    position: relative;
    padding-left: 0px;
    border-left: 2px solid transparent;
    transition: padding-left 0.2s ease-in-out, border-color 0.2s ease-in-out;
}
.application-sub-title {
    font-family: var(--body-bw-honeywell-font);
    font-weight: 500;
    font-size: clamp(.5rem, 2.9vw, .9rem);
    color: var(--brand-bw-honeywell-general-color);
    margin: 0;
    padding-left: 2px; 
    line-height: 1.2;
    text-align: left;
}
.bw-honeywell-grid-container > a:hover .bw-honeywell-item:not(.side-ad) .application-title {
    padding-left: 2px; 
    border-color: var(--brand-bw-honeywell-primary-color); 
}
/* Specific styles for SIDE AD (3rd grid item) */
.bw-honeywell-item.side-ad {
    height: 100% !important;
    min-height: 0 !important;
    width: 100%;
    display: flex;
    flex-direction: column;
    /* justify-content: space-between !important; */
    justify-content: flex-start !important;
    background: url(/images/pages/bw-honeywell/bw-side-ad-bkgr.webp) no-repeat center / cover, 
                linear-gradient(180deg, var(--brand-bw-honeywell-secondary-color) 0%, var(--brand-bw-honeywell-secondary-color) 100%);
    padding: 0 !important;
    text-align: center;
    border-radius: 3px;
    color: #fff;
    text-decoration: none;
    overflow: hidden;
    box-sizing: border-box;
}

/* Product image inside the high side-ad block */
.bw-honeywell-side-ad-img {
    margin: 10px;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.bw-honeywell-side-ad-img img {
    max-width: 100%;
    max-height: 270px;
    margin: 0px auto;
    display: block;
    transition: transform 0.6s ease-in-out;
    backface-visibility: hidden;
    object-fit: contain;
    height: auto;
}
.sws-bw-honeywell-buttons.sws-bw-honeywell-buttons-fr .bw-honeywell-side-ad-img img {
    max-width: 100%;
    max-height: 240px;
    margin: 0px auto;
    display: block;
    transition: transform 0.6s ease-in-out;
    backface-visibility: hidden;
    object-fit: contain;
}

/* .bw-honeywell-item.side-ad .bw-honeywell-inside-bckgr {
    background: transparent;
    margin: 10px;
    color: white;
    text-align: center;
    border-radius: 3px;
    padding: 0;
    box-sizing: border-box;
    width: calc(100% - 20px);
    flex-grow: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
} */

.bw-honeywell-item.side-ad .bw-honeywell-inside-bckgr {
    background: transparent;
    margin: 0 auto;
    color: white;
    text-align: center;
    border-radius: 3px;
    padding: 10px;
    box-sizing: border-box;
    width: calc(100% - 20px);
    flex-grow: 1;
    flex-shrink: 1 !important;
    min-height: 0 !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bw-honeywell-item.side-ad .application-title {
    color: var(--brand-bw-honeywell-primary-color);
    font-family: var(--p-bw-honeywell-font-bold);
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 0;
    margin-top: 0;
    text-transform: uppercase;
    line-height: 1.2;
}
.bw-honeywell-item.side-ad .bw-honeywell-brand-white-text{
    color: var(--white-bw-honeywell-color);
    display: block;
    font-size: 1.2rem;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
}

.bw-honeywell-side-ad-subtitle,
.bw-honeywell-side-ad-title {
    margin: 0 10px;
    min-height: 0 !important;
    flex-shrink: 1 !important;
}
.bw-honeywell-side-ad-subtitle .application-subtitle {
    font-family: var(--body-bw-honeywell-font);
    font-size: 1rem;
    color: var(--brand-bw-honeywell-general-color);
    margin-bottom: 6px;
    line-height: 1.2;
    text-align: center;
    font-weight: 400;
}

/* "Learn More" Button inside Side Ad */
.bw-honeywell-side-ad-cta {
  margin: 10px auto 20px;
}
.side-ad-btn {
    margin-top: 0px;
    font-size: 1rem;
    font-family: var(--body-bw-honeywell-font);
    box-shadow: none;
    text-transform: none;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    color: var(--white-bw-honeywell-color);
    gap: 0px;
    background-color: var(--brand-bw-honeywell-buttons-color);
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    border: none;
    overflow: hidden;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}
/* Text slide animation on hover */
.side-ad-btn span {
    display: inline-block;
    transition: transform 0.3s ease-in-out;
}
/* Arrow SVG inside the button */
.side-ad-btn::after {
    content: "";
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15.045' height='9.717' viewBox='0 0 15.045 9.717'%3E%3Cpath d='M14.707,4.042,11,.338A1.155,1.155,0,0,0,9.37,1.971L11.1,3.7H1.155a1.155,1.155,0,0,0,0,2.309H11.1L9.37,7.747A1.155,1.155,0,0,0,11,9.379l3.7-3.7a1.155,1.155,0,0,0,0-1.633' fill='%23ffffff'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
    width: 16px;
    height: 11px;
    margin-left: 10px;
    display: inline-block;
    transform: rotate(0deg);
    transition: transform 0.3s ease-in-out;
}

.bw-honeywell-grid-container > a:nth-child(3) {
    grid-area: ad;
    width: 100% !important;
    max-width: 100% !important;
}
/* --- GLOBAL HOVER EFFECTS FOR THE LINK CONTAINER --- */

/* Button background color shift */
.bw-honeywell-item-link:hover .side-ad-btn {
    background-color: var(--brand-bw-honeywell-buttons-color);
}

/* Text moves to the left */
.bw-honeywell-item-link:hover .side-ad-btn span {
    transform: translateX(-2px);
}

/* Arrow straightens */
.bw-honeywell-item-link:hover .side-ad-btn::after {
    transform: translateX(3px);
}

/* Side ad product image zoom */
.bw-honeywell-item-link:hover .bw-honeywell-side-ad-img img {
    transform: scale(1.05);
}


/*  */
/**************************************     ABOUT US     ************************************************/
.bw-honeywell-hero-container{
  margin-top: -15px;
  width: 100vw !important;
  position: relative;
  margin-left: -50vw;
  left: 50%;
}
 .about-bw-honeywell-container, 
.about-bw-honeywell-main-content {
    max-width: 1140px;
    margin: 0 auto !important;
    float: none !important;
    padding: 0;
}
/* HERO SECTION */
.about-bw-honeywell-hero {
    position: relative;
    background-image: linear-gradient(to top right, rgba(0, 0, 0, 1) 10%, rgba(0, 0, 0, 0.2) 100%),
        url(/images/pages/bw-honeywell/bw-honeywell-about-us-banner.webp);
    
    background-size: 100% 100%, cover;
    background-position: center, center;
    background-repeat: no-repeat, no-repeat;
    background-blend-mode: normal;
    padding: 100px 0px !important;
    margin-bottom: 50px;
    text-align: center;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    z-index: 1;
    top: -6px;
    background-color: #001529;
}

.about-bw-honeywell-hero h1, 
.about-bw-honeywell-hero p {
    position: relative;
    z-index: 2;
}

.about-bw-honeywell-hero h1 {
    font-family: var(--p-bw-honeywell-font);
    font-size: clamp(2.2rem, 6vw, 4rem);
    color: var(--brand-bw-honeywell-primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0,0,0,0.4);
    position: relative;
    z-index: 10;
    padding: .5em;
    line-height: 1.2;
}

.about-bw-honeywell-hero h1 .bw-honeywell-brand-white-text {
    color: var(--white-bw-honeywell-color) !important;
    display: block;
}

.about-bw-honeywell-container {
    max-width: 1050px;
    margin: 0 auto 40px !important;
    float: none !important;
    text-align: center;
}
.about-bw-honeywell-container p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--brand-bw-honeywell-general-color);
    font-weight: 400;
    font-family: var(--body-bw-honeywell-font);
}
.about-bw-honeywell-main-content {
    max-width: 1140px;
    margin: 0 auto !important;
    float: none !important;
    gap: 40px;
}

.about-bw-honeywell-main-content h2 {
    color: var(--brand-bw-honeywell-primary-color);
    font-family: var(--p-bw-honeywell-font);
    font-weight: 700;
    font-size: 1.6rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 0px;
    line-height: 1.2;
    margin-left: 10px;
}
.about-bw-honeywell-main-content p {
    font-family: var(--body-bw-honeywell-font);
    font-size: 1rem;
    margin-bottom: 10px;
    position: relative;
    padding-bottom: 10px;
    line-height: 1.5;
}

.about-bw-honeywell-main-content h2::after {
    content: '';
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 3px;
    height: 100%;
    background: var(--brand-bw-honeywell-primary-color);
    margin-left: -10px;
}


@media (max-width: 1199px) {
/**************************************     HEADER     ************************************************/
.bw-honeywell-header > .row-fluid {
  max-width: 914px;
}
/**************************************     NAV     ************************************************/
 .navbar .nav.navbar-bw-honeywell-subsite {
    width: 80%;
}
.nav-home-icon-svg {
    width: 18px;
    height: 18px;
}
.navbar.navbar-inner-bw-honeywell-subsite .nav > li > a {
    font-size: 1.1rem !important;
}
.navbar .nav > li > .bw-honeywell-whole-cateogies-list-menu.dropdown-menu {
    top: 45px;
    min-width: 597px;
}
.hover-underline-animation::before {
    bottom: 9px;
}
/**************************************     SEARCH BAR     ************************************************/

/* ********* END NAV ********* */
    
/**************************************     HEROS     ************************************************/
.bw-honeywell-sws-store #myCarousel .hero-content {
    padding: .5em 0 0;
}
.bw-honeywell-sws-store #myCarousel .text-content {
    padding: 0;
    width: 100%;
    max-width: 600px;
}
.bw-honeywell-sws-store #myCarousel .image-content {
  text-align: right;
}
.carousel-control-new.left {
  left: 0.75rem; /* Position the left arrow */
}
.carousel-control-new.right {
  right: 0.75rem; /* Position the right arrow */
}
/**************************************     BUTTONS     ************************************************/
.bw-honeywell-item {
    height: 8em;
}
.bw-honeywell-item:not(.side-ad)::after {
    height: 1.4em;
}
.bw-honeywell-application-img {
    width: 40%;
    right: -10px;
}
.bw-honeywell-application-img img {
    height: 120px;
    transform: translateY(-15px) scale(1);
}
.bw-honeywell-bkgr-btn {
    padding: 0 0 0.3em .7em;
    width: 65%;
}
/**************************************     SIDE AD     ************************************************/

.bw-honeywell-side-ad-img img,
.sws-bw-honeywell-buttons.sws-bw-honeywell-buttons-fr .bw-honeywell-side-ad-img img {
    max-width: 75%;
}
.bw-honeywell-side-ad-cta {
    margin: 10px auto;
}
.side-ad-btn {
    padding: 10px 20px;
}
/**************************************     ABOUT PAGE     ************************************************/

/* ********* END About Page ********* */
  
}

@media (max-width: 979px) {
  .row-fluid.bw-honeywell-sws-store{
    padding-top: 9px;
  }
/**************************************     HEADER     ************************************************/
.navbar-inner.bw-honeywell-mobile {
  font-family: var(--body-bw-honeywell-font);
  background: #ffffff;
  background-color: var(--white-bw-honeywell-color);
  padding-top: 10px;
  padding-bottom: 0;
}
.bw-honeywell-mobile .logo-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  padding-bottom: 5px;
}
.bw-honeywell-mobile .span3 {
  width: 25%;
  float: left;
  margin: 0px;
}
.bw-honeywell-mobile img.brand.mobile-logo {
  width: 100%;
  padding: 0px;
  margin: 0px;
}
.bw-honeywell-mobile .span9 {
  margin-left: 0px;
  margin-top: 0;
  width: 60%;
}
/**************************************     SEARCH BAR     ************************************************/
.bw-honeywell-mobile .mobile-search {
    width: 100%;
    margin-top: 0;
    padding: 0;
}
/* Style for the button */
.bw-honeywell-mobile .mobile-search form#ProductDisplayForm button.btn.btn-default {
    background-color: transparent;
    border-radius: 0 3px 3px 0;
    border: none;
    border-left: 1px solid var(--brand-bw-honeywell-primary-color);
    width: 40px;
    height: 34px !important;
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    transition: background-color 0.4s ease;
    z-index: 2;
    padding: 8px 9px;
}
/* Search bar container */
.bw-honeywell-mobile .mobile-search .input-append {
  margin-left: auto;
  margin-right: 0;
  position: relative;
  left: 0;
  width: 250px;
}
/* Input field styling */
.bw-honeywell-mobile .mobile-search input#ProductSearch.appendInputButton {
    font-family: var(--body-bw-honeywell-font);
    color: var(--brand-bw-honeywell-general-color);
    border: none;
    background-color: transparent;
    padding: 7px 0px !important;
    margin-right: 0px;
    margin-left: 0px;
    font-weight: 500;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    border: none;
    left: 7px;
    width: 92%;
}
.bw-honeywell-mobile .mobile-search form#ProductDisplayForm {
    width: 100%;
    padding: 0;
    transform: translate(0%, 0%);
    background: var(--white-bw-honeywell-color);
    height: 32px;
    border-radius: 3px;
    transform-origin: right;
    transition: width 0.4s ease, background-color 0.4s ease, right 0.4s ease;
    border: 1px solid var(--brand-bw-honeywell-general-color);
}

/* Change Button Color & Move Left when Hovering */
.bw-honeywell-mobile .mobile-search.input-append:hover form#ProductDisplayForm button.btn.btn-default,
.bw-honeywell-mobile .mobile-search.input-append:focus-within form#ProductDisplayForm button.btn.btn-default {
  background-color: var(--brand-bw-honeywell-primary-color);
}
/* Input focus styling */
.bw-honeywell-mobile .mobile-search input.refine-search.appendInputButton:focus {
  color: var(--brand-bw-honeywell-general-color);
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  border-color: var(--white-bw-honeywell-color);
}
/* Target the button when the parent container is focused */
.bw-honeywell-mobile .mobile-search .input-append:focus-within .btn {
  background-color: transparent;
}
.bw-honeywell-mobile .input-append input.refine-search.appendInputButton::placeholder {
  /* your styles */
  color: var(--brand-bw-honeywell-primary-color);
  opacity: 1; /* this is for Firefox */
}
/**************************************     NAV     ************************************************/
/* Main nav wrapper */
.bw-honeywell-mobile .sws-mobile-header-nav .navbar-bw-honeywell-subsite-mobile {
  width: 100%;
  margin: 0 !important;
  border-radius: 0;
}
/* Main nav container full width */
.bw-honeywell-mobile #SWS-mobile-nav-button-adjust {
  display: flex;
  width: 100%;
  padding: 0;
  list-style: none;
  background-color: var(--white-bw-honeywell-color);
  border: 1px solid var(--black-bw-honeywell-color);
  border-radius: 3px;
  position: relative;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
}
/* All nav items reset */
.bw-honeywell-mobile #SWS-mobile-nav-button-adjust > li {
  margin: 0;
  padding: 0;
  text-align: center;
  position: relative; /* dropdown attaches to Products li */
  background-color: transparent;
}
.bw-honeywell-mobile #SWS-mobile-nav-button-adjust > li.nav-item.bw-honeywell-home {
    flex: 0 0 50px; /* fixed width for icon */
    background-color: transparent;
}
/* Products & About equal size */
.bw-honeywell-mobile #SWS-mobile-nav-button-adjust > li.nav-item.bw-honeywell-products, 
.bw-honeywell-mobile #SWS-mobile-nav-button-adjust > li.nav-item.bw-honeywell-about {
    flex: 1; /* equal space */
    background-color: transparent;
}
/* Divider between items */
.bw-honeywell-mobile #SWS-mobile-nav-button-adjust > li + li:not(.collapse) {
    border-left: 1px solid var(--black-bw-honeywell-color);
}
/* Links inside nav items */
.bw-honeywell-mobile #SWS-mobile-nav-button-adjust > li > a, 
.bw-honeywell-mobile #SWS-mobile-nav-button-adjust > li > .nav-home-icon {
  display: flex;
  width: 100%;
  padding: 6px 0px;
  color: var(--brand-bw-honeywell-general-color);
  text-decoration: none;
  align-items: center;
  justify-content: space-around;
  text-transform: none;
  font-weight: 500;
  font-size: 1rem;
  font-family: var(--p-bw-honeywell-font-bold);
}
.bw-honeywell-mobile .bw-honeywell-mobile-sub-nav.collapse {
  -webkit-transition: height .8s ease;
  -moz-transition: height .8s ease;
  -o-transition: height .8s ease;
  transition: height .8s ease;
}
/* Collapsible submenu */
li#mobile-sws-1,
li#mobile-sws-2 {
  width: 100%;
}
/* Submenu items */
.bw-honeywell-mobile .bw-honeywell-mobile-sub-nav.collapse ul.accordion-inner {
  margin: 0;
  padding: 0;
  list-style: none;
  border: none;
  border-top: 1px solid var(--black-bw-honeywell-color);
  background-color: var(--white-bw-honeywell-color);
  border-radius: 0 0 3px 3px;
}

.bw-honeywell-whole-cateogies-list-menu-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 25px;
    text-align: left;
    padding: 15px;
    font-family: var(--body-bw-honeywell-font);
}
.bw-honeywell-whole-cateogies-list-menu-wrapper a {
    font-family: var(--body-bw-honeywell-font);
    padding: 2px 0px;
}

/* Remove default list styles */
.bw-honeywell-whole-cateogies-list-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    padding-left: 1em;
    flex: 1;
}

/* Spacing between items */
.bw-honeywell-mobile .bw-honeywell-whole-cateogies-list-menu li {
    margin-bottom: 6px;
    margin-left: 1em;
}

/* Optional: make header-type items stand out */
.bw-honeywell-mobile .bw-honeywell-whole-cateogies-list-menu .dropdown-main-header-title ::before {
    content: "";
    position: absolute;
    border-radius: 2px;
    left: -7px;
}
.bw-honeywell-mobile .bw-honeywell-whole-cateogies-list-menu li.dropdown-main-header-title {
    margin-left: 0;
    display: block;
    position: relative;
}
.bw-honeywell-mobile .bw-honeywell-whole-cateogies-list-menu .dropdown-main-header-title a {
    font-weight: 600;
    color: var(--brand-bw-honeywell-general-color);
}
.bw-honeywell-mobile .bw-honeywell-whole-cateogies-list-menu li.dropdown-header {
    margin-left: 0em;
}
.bw-honeywell-mobile .bw-honeywell-whole-cateogies-list-menu .dropdown-header a {
    font-weight: 400;
    color: var(--brand-bw-honeywell-general-color);
}
.bw-honeywell-mobile .sws-mobile-header-nav .nav > li > a:active, 
.bw-honeywell-mobile .sws-mobile-header-nav .nav > li > a:focus {
  background: linear-gradient(to top, var(--brand-bw-honeywell-primary-color) 3px, transparent 3px);
  margin: 0;
  border-radius: 0;
  color: var(--black-bw-honeywell-color) !IMPORTANT;
  outline: none;
}

    /* When the mouse leaves (no longer hovering), force-remove the background even if the focus is still active. */
    @media (hover: hover) {
        .bw-honeywell-mobile .sws-mobile-header-nav .nav > li > a:focus:not(:hover) {
            background: transparent !important;
        }
    }
.bw-honeywell-mobile .bw-honeywell-whole-cateogies-list-menu .dropdown-header a:active, 
.bw-honeywell-mobile .bw-honeywell-whole-cateogies-list-menu .dropdown-header a:focus, 
.bw-honeywell-mobile .bw-honeywell-whole-cateogies-list-menu .dropdown-header a:hover {
    margin-left: 0px;
    background: #0071b31a;
    color: var(--brand-bw-honeywell-buttons-color);
    border-radius: 5px;
    padding: 2px 5px;
}

.bw-honeywell-mobile #SWS-mobile-nav-button-adjust > li > .nav-home-icon{
  padding: 7px 0;
}
/* Remove hover/active/focus effect ONLY on the Home button */
.bw-honeywell-mobile #SWS-mobile-nav-button-adjust > li > .nav-home-icon:hover,
.bw-honeywell-mobile #SWS-mobile-nav-button-adjust > li > .nav-home-icon:focus,
.bw-honeywell-mobile #SWS-mobile-nav-button-adjust > li > .nav-home-icon:active {
    background-color: transparent !important;
    color: var(--brand-bw-honeywell-buttons-color) !important;
}

.bw-honeywell-mobile .bw-honeywell-whole-cateogies-list-menu .dropdown-main-header-title.multiline-category a{ 
  display: inline-block;
  line-height: 1.2;
  vertical-align: middle;
  white-space: normal;
  word-wrap: break-word;
}
/* SUB menu STYLES */

/* ********* END HEADER ********* */

/**************************************     HEROS     ************************************************/
.carousel-top.bw-honeywell-sws-store {
  margin-top: 0px;
  width: 100vw !important;
  position: relative;
  margin-left: -50vw;
  left: 50%;
}
.row-fluid.bw-honeywell-sws-store {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0;
  margin-top: 0;
}
.bw-honeywell-sws-store #myCarousel .carousel-inner.hero-section, 
.bw-honeywell-sws-store #myCarousel .carousel-inner.hero-section-french {
    display: flex;
    align-items: flex-start;
     height: 350px; 
}
.bw-honeywell-sws-store #myCarousel .hero-content {
    margin: 0 auto;
    max-height: 350px;
}
.bw-honeywell-sws-store #myCarousel .text-content {
    padding: 0;
    width: 100%;
    max-width: 600px;
}
.bw-honeywell-sws-store #myCarousel .text-content .text-contnet-inside {
    padding: 0em 0em 0em 2.5em;
}
.bw-honeywell-sws-store #myCarousel h1::before {
    min-height: 3rem;
    height: 100%;
}
.bw-honeywell-sws-store #myCarousel .image-content {
  text-align: center;
}
.bw-honeywell-sws-store #myCarousel .carousel-btn {
  font-size: 0.9rem;
}
.bw-honeywell-sws-store #myCarousel .hero-content .image-content img {
    max-height: 350px;
}
/**************************************     BUTTONS     ************************************************/
.bw-honeywell-grid-container {
    margin: 30px auto 40px;
    gap: 1.5em;
}
.bw-honeywell-item {
    height: 8em;
}
.bw-honeywell-item:not(.side-ad)::after {
    height: 1em;
}
.bw-honeywell-application-img {
    width: 35%;
    right: 0;
}
.bw-honeywell-application-img img {
    height: 100%;
    transform: translateY(0px) scale(1);
}

.bw-honeywell-bkgr-btn {
    padding: 0 0 0.3em .5em;
    z-index: 1;
}
.sws-bw-honeywell-buttons.sws-bw-honeywell-buttons-fr .application-title {
    font-size: clamp(.8rem, 1.8vw, 1rem);
}
.sws-bw-honeywell-buttons.sws-bw-honeywell-buttons-fr .application-sub-title {
    font-size: clamp(.5rem, 1.8vw, .9rem);
}

/**************************************     SIDE AD     ************************************************/
.bw-honeywell-item.side-ad .bw-honeywell-inside-bckgr {
    margin: 0px 10px 0px;
    padding: 0px 10px 10px;
}
.bw-honeywell-side-ad-img {
    margin: 0px 10px 10px;
}
.bw-honeywell-item.side-ad .application-title {
    font-size: 1rem;
    margin-bottom: 10px;
    line-height: 1.2;
}
.side-ad-btn {
    font-size: .8rem;
}
/* End Side Ad*/
/* ********* END BUTTONS ********* */


/**************************************     ABOUT PAGE     ************************************************/
}

@media (max-width: 768px) {
  .row-fluid.bw-honeywell-sws-store {
    padding-top: 0px;
}
/**************************************     NAV     ************************************************/
.navbar-inner.bw-honeywell-mobile {
    padding-right: 0;
    padding-left: 0;
}
.bw-honeywell-whole-cateogies-list-menu-wrapper {
    gap: 0px;
    padding: 15px 20px;
}
/**************************************     HEADER     ************************************************/

.bw-honeywell-mobile .span3 {
  width: 30%;
}
.bw-honeywell-mobile .span9 {
  margin-bottom: 0;
}
.bw-honeywell-mobile .mobile-search form#ProductDisplayForm {
    height: 34px;
}
/**************************************     HEROS     ************************************************/
.row-fluid.bw-honeywell-sws-store {
  padding-bottom: 0;
}
.bw-honeywell-sws-store #myCarousel .carousel-inner.hero-section, 
.bw-honeywell-sws-store #myCarousel .carousel-inner.hero-section-french {
    height: 270px;
    margin-top: 0;
}
.bw-honeywell-sws-store #myCarousel .hero-content {
    margin: 0 auto;
    max-height: 270px;
}
.bw-honeywell-sws-store #myCarousel .text-content .text-contnet-inside {
    padding: 0em;
    /* padding: 0em 0em 0em 1.5em; */
}

.bw-honeywell-sws-store #myCarousel .carousel-btn {
    padding: 10px 20px;
}
.bw-honeywell-sws-store #myCarousel .hero-content .image-content img {
    box-shadow: none;
    max-height: 270px; 
} 
.carousel-indicators {
  margin-bottom: 10px;
}
/**************************************     BUTTONS     ************************************************/
/* Hide Side ad */
.bw-honeywell-grid-container > a:nth-child(3),
.side-ad { 
  display: none !important;
}

/* Rebuild the GRID "ad" */
.bw-honeywell-grid-container {
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
  "b1 b2"
  "b4 b5"
  "b6 b7"
  "b8 b9"
  "b10 b11"
  "b12 b13"
  "b14 b15"
  "b16 .";
  gap: 15px;
  width: 100%;
  padding: 0;
  padding: 0 1.2em;
}
.sws-bw-honeywell-buttons.sws-bw-honeywell-buttons-fr .application-title {
    font-size: clamp(.8rem, 2.9vw, 1rem);
}
.sws-bw-honeywell-buttons.sws-bw-honeywell-buttons-fr .application-sub-title {
    font-size: clamp(.5rem, 2.9vw, .9rem);
}

/* ********* END BUTTONS ********* */
/**************************************     ABOUT PAGE     ************************************************/
 .bw-honeywell-hero-container {
    margin-top: 0px;
}
.about-bw-honeywell-hero {
    padding: 50px 0 !important;
    top: 0;
}
.about-bw-honeywell-container {
    margin: 0 auto 30px !important;
}
.about-bw-honeywell-container p {
    font-size: 1.1rem;
}
.about-bw-honeywell-main-content h2 {
    font-size: 1.6rem;
}

}

@media (max-width: 600px) {
/**************************************     HEADER     ************************************************/
 .bw-honeywell-mobile .mobile-search form#ProductDisplayForm {
    left: 1px;
}
/**************************************     NAV     ************************************************/
.bw-honeywell-mobile .nav-home-icon-svg {
    width: 16px;
    height: 16px;
    padding: 2px;
}
.bw-honeywell-mobile #SWS-mobile-nav-button-adjust > li > a {
    padding: 7px 0px;
}
/**************************************     HERO     ************************************************/
.row-fluid.bw-honeywell-sws-store {
  padding-top: 4px;
}
.bw-honeywell-sws-store #myCarousel .carousel-inner.hero-section, 
.bw-honeywell-sws-store #myCarousel .carousel-inner.hero-section-french {
    height: 350px;
}
.bw-honeywell-sws-store #myCarousel .hero-content {
    margin: 0.2em auto;
    display: flex;
    flex-direction: column;
    max-height: 350px;
}
.bw-honeywell-sws-store #myCarousel .text-content {
    max-width: unset;
    margin-top: 1em;
}
.bw-honeywell-sws-store #myCarousel .text-content .text-contnet-inside {
    padding: 0;
    height: 100%;
    min-height: unset;
    width: 100%;
    max-width: unset;
}
.bw-honeywell-sws-store #myCarousel h2 {
    margin: 10px 0 18px;
}
.about-bw-honeywell-main-content h2 {
    line-height: 1.3;
}
.bw-honeywell-sws-store #myCarousel .carousel-btn {
    font-size: 0.8rem;
    padding: 12px 16px;
}
 .bw-honeywell-sws-store #myCarousel .hero-content .image-content {
    width: clamp(180px, 10vw, 270px);
    text-align: center;
    overflow: hidden;
}
.bw-honeywell-sws-store #myCarousel .hero-content .image-content img {
    box-shadow: none;
    max-height: unset;
}

/**************************************     BUTTONS     ************************************************/
/* .bw-honeywell-application-img {
    height: 100px;
} */
/* ********* END BUTTONS ********* */
/**************************************     ABOUT PAGE     ************************************************/
.about-bw-honeywell-hero {
    padding: 50px 0 !important;
    margin-bottom: 2.8em;
    margin-bottom: 40px;
}
.about-bw-honeywell-container p {
    line-height: 1.5;
}
.about-bw-honeywell-container {
    margin: 0 auto 10px !important;
}

}

@media (max-width: 480px) {
/**************************************     HEADER     ************************************************/
.bw-honeywell-mobile .span3 {
  width: 35%;
} 
/**************************************     SEARCH BAR     ************************************************/

.bw-honeywell-mobile .input-append input.refine-search {
    width: 79% !important;
}
.bw-honeywell-mobile .input-append input {
  font-size: 13px !important;
}
/**************************************     NAV     ************************************************/
.bw-honeywell-whole-cateogies-list-menu-wrapper {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}
/**************************************     HERO     ************************************************/
.carousel-top.bw-honeywell-sws-store {
  padding-bottom: 0em;
}

.bw-honeywell-sws-store #myCarousel h2 {
    margin: 5px 0;
}

.bw-honeywell-sws-store #myCarousel .carousel-btn {
    margin-top: 8px;
}
/**************************************     BUTTONS     ************************************************/
.bw-honeywell-grid-container {
  grid-template-columns: 1fr;
  grid-template-areas: "b1" "b2" "b4" "b5" "b6" "b7" "b8" "b9" "b10" "b11" "b12" "b13" "b14" "b15" "b16";
}
.application-title,
.sws-bw-honeywell-buttons.sws-bw-honeywell-buttons-fr .application-title {
    font-size: clamp(.8rem, 5vw, 1rem);
}


/* ********* END BUTTONS ********* */
/**************************************     ABOUT PAGE     ************************************************/

}

@media (max-width: 399px) {
/**************************************     HEADER     ************************************************/
.navbar-inner.bw-honeywell-mobile {
    padding-top: 15px;
}
.bw-honeywell-mobile .logo-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  gap: 8px;
  align-items: center;
  padding-bottom: 0;
}
.bw-honeywell-mobile .span3 {
    width: 50%;
}

.bw-honeywell-mobile .logo-wrapper .span3 a{
  display: flex;
}
.bw-honeywell-mobile .span9 {
  margin-bottom: 10px;
  width: 100%;
}
/**************************************     SEARCH BAR     ************************************************/

.bw-honeywell-mobile .input-append input.refine-search {
    width: 83% !important;
}

/**************************************     NAV     ************************************************/
.bw-honeywell-mobile #SWS-mobile-nav-button-adjust > li.nav-item.bw-honeywell-home {
  flex: 0 0 30px;
}
.bw-honeywell-mobile #SWS-mobile-nav-button-adjust > li > a, 
.bw-honeywell-mobile #SWS-mobile-nav-button-adjust > li > .nav-home-icon {
  font-size: 0.9rem;
  
}
.bw-honeywell-mobile #SWS-mobile-nav-button-adjust > li > a {
    padding: 6px 0px;
}
.bw-honeywell-mobile .nav-home-icon-svg {
    width: 14px;
    height: 14px;
}
/**************************************     HERO     ************************************************/

/**************************************     BUTTONS     ************************************************/
.application-title,
.sws-bw-honeywell-buttons.sws-bw-honeywell-buttons-fr .application-title {
    font-size: clamp(.8rem, 4.8vw, 1rem);
}
.application-sub-title,
.sws-bw-honeywell-buttons.sws-bw-honeywell-buttons-fr .application-sub-title {
    font-size: clamp(.5rem, 5vw, .8rem);
}
/* ********* END BUTTONS ********* */
/**************************************     ABOUT PAGE     ************************************************/
}


@media (max-width: 329px) {
/**************************************     HEADER     ************************************************/
.navbar-inner.bw-honeywell-mobile {
  padding-bottom: 0px;
}
.bw-honeywell-mobile .span9 {
  margin-bottom: 5px;
}
.bw-honeywell-mobile .sws-mobile-header-nav .nav > li > a {
  font-size: 0.8em;
}
/**************************************     SEARCH BAR     ************************************************/

/**************************************     HERO     ************************************************/

/**************************************     BUTTONS     ************************************************/
/* ********* END BUTTONS ********* */
/**************************************     ABOUT PAGE     ************************************************/

}