:root {
  --brand-gpi-primary-color: #0093D0; /* primary color */
  --brand-gpi-secondary-color: #134760; /* secondary color */
  --brand-gpi-third-color: #CC3300; /* accent color */
  --brand-gpi-general-color: #3B393A; /* text color */
  --brand-gpi-dkgrey-color: #464646;
  --brand-gpi-inputgrey-color: #D7D7D7;
  --brand-gpi-text-inputgrey-color: #A7A8AA;
  --white-gpi-color: #FFFFFF; /* white */ 
  --body-gpi-font: 'Montserrat', 'Roboto', 'Open Sans', sans-serif;
  --p-gpi-font: 'Open Sans', Helvetica, Arial, sans-serif;;
}

/* Base container */
.gpi-header#store-banner {
  font-family: 'Montserrat', 'Roboto', 'Open Sans', sans-serif;
  font-size: 16px;       /* Base size for normal text */
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #3B393A;           /* Default text color */
}
/* Headings */
.gpi-header#store-banner h1 { font-size: 2rem; font-weight: 700; margin-bottom: 1rem; }
.gpi-header#store-banner h2 { font-size: 1.75rem; font-weight: 600; margin-bottom: 0.85rem; }
.gpi-header#store-banner h3 { font-size: 1.5rem; font-weight: 600; margin-bottom: 0.75rem; }
.gpi-header#store-banner h4 { font-size: 1.25rem; font-weight: 600; margin-bottom: 0.6rem; }
.gpi-header#store-banner h5 { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.5rem; }
.gpi-header.gpi-header#store-banner h6 { font-size: 1rem; font-weight: 600; margin-bottom: 0.4rem; }

/* Paragraphs */
#store-banner p {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

/* Small text */
.gpi-header#store-banner small {
  font-size: 0.875rem;
  font-weight: 400;
}

/* Links */
.gpi-header#store-banner a {
  font-family: inherit;         /* Inherit Montserrat → Roboto → Open Sans */
  font-size: 1rem;
  font-weight: 700;
  color: #134760;             /* Primary brand color */
  text-decoration: none;
  transition: color 0.3s ease;
}

.gpi-header#store-banner a:hover
/*,.gpi-header#store-banner a:focus*/ {
  color: #fff;               /* Darker shade on hover/focus */
  outline: none;
}


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

.gpi-header {
  width: 100vw !important;
  position: relative;
  margin-left: -50vw;
  left: 50%;
  box-sizing: border-box;
  padding: .7em 0;
  border-bottom: 4px solid var(--brand-gpi-primary-color);
  background-color: var(--brand-gpi-primary-color);
}
.gpi-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;
}
.gpi-header .span3.logo-gpi-sws img.brandlogo{
  width: 100%;
  margin-left: 0px;
}
.gpi-header .row-fluid .navbar.navbar-inner-gpi-subsite {
  float: right;
}
.gpi-header .span9.subheading-nav {
  float: right;
  margin-top: 9px;
}
.gpi-header .row-fluid .navbar .nav-collapse.sws.collapse {
  margin-top: 0px !important;
  width: 53rem;
}

/**************************************     NAV     ************************************************/

.navbar .nav.navbar-gpi-subsite {
  margin-right: 0;
  width: 85%;
  font-family: var(--body-hero-title-gpi-font);

  /* 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: flex-end;  /* Distribute items */
  align-items: center;             /* Align vertically */
  gap: 0.1em;
}

.navbar .nav.navbar-gpi-subsite > li.home-btn {
  /* 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: 0;              /* Takes up less space compared to other items */
  /* margin: 0 0.5em; */        /* Adjust spacing */
}

.navbar .nav.navbar-gpi-subsite > li {
  /* Vendor prefixes for flex-grow, flex-shrink, and flex-basis */
  -webkit-box-flex: 4;     /* Safari 6-9 */
  -moz-box-flex: 4;        /* Firefox 19-28 */
  -webkit-flex: 4;         /* Safari 9+ */
  -ms-flex: 4;            /* IE 10 */
  flex: 0;                /* Adjust for proportional growth */
  /* margin: 0 1em; */          /* Consistent spacing */
  text-align: center;
}

.navbar.navbar-inner-gpi-subsite-french .nav.navbar-gpi-subsite > li {
  /* 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;                /* Same as above, use consistent flex values */
  /*margin: 0 0.6em;*/        /* Adjust spacing for the French navbar */
  text-align: center;
}

.navbar.navbar-inner-gpi-subsite .nav > li > a {
  text-shadow: none;
  color: var(--white-gpi-color) !important;
  display: block;
  white-space: nowrap;
}
/* NAV HOVER COLOURS */
.navbar.navbar-inner-gpi-subsite .nav > li > a:active,
.navbar.navbar-inner-gpi-subsite .nav > li > a:hover,
.navbar .nav.navbar-gpi-subsite li.dropdown.open > .dropdown-toggle,
.navbar .nav.navbar-gpi-subsite li.dropdown.active > .dropdown-toggle,
.navbar .nav.navbar-gpi-subsite li.dropdown.open.active > .dropdown-toggle {
  background-color: var(--brand-gpi-secondary-color);
  border-radius: 4px 4px 0px 0px;
}
.navbar.navbar-inner-gpi-subsite .navbar-gpi-subsite li {
  line-height: 1.5;
}
/* home button */
.nav-home-icon-svg {
  color: #ffffff;
  width: 18px;
  height: 18px;
  transition: color 0.2s ease;
  filter: drop-shadow(0 2px 3px var(--brand-gpi-secondary-color));
  display: block;
}
.navbar .nav.navbar-gpi-subsite a.nav-home-icon{
  padding: 11px 20px;
}


.navbar.navbar-inner-gpi-subsite .nav>li>a {
  padding: 6px 20px;
  text-shadow: 0 2px 3px var(--brand-gpi-secondary-color);
  font-size: 1.2rem !important;
}
.navbar.navbar-inner-gpi-subsite.navbar-inner-gpi-subsite-french.mhide .nav>li>a {
  padding: 6px 24px;
}
.navbar.navbar-inner-gpi-subsite.navbar-inner-gpi-subsite-french.mhide a.nav-home-icon{
  padding: 11px 24px !important;
}
.nav, .navbar {
  margin-bottom: 0px;
}
.navbar .nav.navbar-gpi-subsite > li:last-child {
  flex-grow: 2; /* Allow more space for the search bar */
  max-width: 270px; /* Constrain the search bar width */
}

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

/* base (hidden) */
.navbar .nav > li > .gpi-whole-cateogies-list-menu.dropdown-menu {
  display: block !important;
  width: 265px;
  left: 0 !important;
  top: 40px;
  border-radius: 0;
  background-color: var(--white-gpi-color);
  box-shadow: 0 2px 3px #13486040;
  padding: 0;
  margin: 0;
  border: 1px solid var(--brand-gpi-secondary-color);
  border-top: 4px solid var(--brand-gpi-secondary-color);
  opacity: 0;
  transform: translateY(5px);
  pointer-events: none;
  transition: opacity .25s ease, transform .5s ease;
}
.navbar.navbar-inner-gpi-subsite.navbar-inner-gpi-subsite-french.mhide .dropdown-menu.gpi-whole-cateogies-list-menu{
  width:308px;
}
/* show only on click (when .open is applied by Bootstrap JS) */
.navbar .nav > li.open > .gpi-whole-cateogies-list-menu.dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
/* ******** */
.dropdown-menu.gpi-whole-cateogies-list-menu ul {
  text-decoration: none;
  list-style: none;
  padding-left: 0;
}
.dropdown-menu.gpi-whole-cateogies-list-menu .gpi-flex-dropdown{
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-evenly;
  margin: 0 auto;
  width: fit-content;
}
.dropdown-menu.gpi-whole-cateogies-list-menu .first-col{
  margin: 10px;
}
/* Shared dropdown styles for all items */
.dropdown-menu.gpi-whole-cateogies-list-menu li a,
.dropdown-menu.gpi-whole-cateogies-list-menu li.dropdown-header-title,
.dropdown-menu.gpi-whole-cateogies-list-menu li.dropdown-header a {
  white-space: break-spaces;
  padding: 5px 2px !important;
  line-height: 1.5;
  font-family: var(--body-gpi-font);
  font-size: 16px;
  text-align: left;
  display: block;
  text-decoration: none;
  transition: all 0.3s ease-in-out !important;
}
/* Regular links */
.dropdown-menu.gpi-whole-cateogies-list-menu li a:not(.dropdown-header) {
  font-weight: 600 !important;
  margin-left: 10px; /* Slight indent */
}
.dropdown-menu.gpi-whole-cateogies-list-menu li a:not(.dropdown-header):hover {
  margin-left: 18px;
  background: transparent !important;
  color: var(--brand-gpi-primary-color) !important;
}
/* Titles (text-only and link-headers) */
.dropdown-menu.gpi-whole-cateogies-list-menu li.dropdown-header-title,
.dropdown-menu.gpi-whole-cateogies-list-menu li.dropdown-header a {
  font-weight: 700;
  color: var(--brand-gpi-primary-color);
  margin-left: 0; /* alignment with no indent */
}
.dropdown-menu.gpi-whole-cateogies-list-menu li.dropdown-header a:hover {
  margin-left: 4px; /* alignment with no indent */
}
.dropdown-menu.gpi-whole-cateogies-list-menu li>a:focus{
  background-color: transparent !important;

}
.dropdown-menu .gpi-flex-dropdown .divider {
  height: 1px;
  margin: 2px 1px;
  overflow: hidden;
  background-color: var(--brand-gpi-inputgrey-color);
}
ul.dropdown-menu.gpi-whole-cateogies-list-menu:hover{
  background-color: var(--white-gpi-color);
}

.navbar.navbar-inner-gpi-subsite.navbar-inner-gpi-subsite-french.mhide ul.dropdown-menu.gpi-whole-cateogies-list-menu.solutions-by-industry,
ul.dropdown-menu.gpi-whole-cateogies-list-menu.solutions-by-industry {
  width: fit-content;
  padding: 10px;
}
ul.dropdown-menu.gpi-whole-cateogies-list-menu.solutions-by-industry li{
  margin-left: 10px 10px 5px;
}
ul.dropdown-menu.gpi-whole-cateogies-list-menu.solutions-by-industry li>a{
  margin-left: 10px 0;
}
/**************************************     SEARCH BAR     ************************************************/
.gpi-search form#ProductDisplayForm button.btn.btn-default i.icon-search,
.gpi-mobile .mobile-search button .icon-search {
  margin-top: 1px !important;
  background-image: url(/images/pages/gpi/gpi-search-btn.svg);
}
.gpi-search .btn{
  padding: 0px;
}
/* Style for the button */
.gpi-search form#ProductDisplayForm button.btn.btn-default {
  background-color: var(--brand-gpi-third-color);
  border-radius: 0px 4px 4px 0px;
  border: none;
  width: 35px;
  height: 35px !important;
  position: absolute; /* Anchor the button */
  right: 0px; /* Keep it fixed */
  top: 50%; /* Center vertically */
  transform: translateY(-50%); /* Vertical alignment */
  transition: background-color 0.4s ease; /* Remove right transition */
  z-index: 2; /* Ensure it appears above expanding input */
}
/* Search bar container */
.gpi-search.input-append {
  margin-left: auto;
  margin-right: 0;
  position: absolute;
  right: 0;
  transform: translate(0, -50%);
  background: var(--white-gpi-color);
  height: 34px;
  border-radius: 4px;
  padding: 0;
  width: 35%; /* Default width */
  transform-origin: right;
  transition: width 0.4s ease, background-color 0.4s ease, right 0.4s ease;
  border: 1px solid var(--white-gpi-color);
}
/* Search Bar - Expand on Hover/Focus */
.gpi-search.input-append:hover,
.gpi-search.input-append:focus-within {
  width: 36%; /* Expanded width */
  background-color: var(--white-gpi-color);
  border: 1px solid var(--white-gpi-color);
  box-shadow: 0 2px 3px var(--brand-gpi-secondary-color);
}
/* Input field styling */
.gpi-search input#ProductSearch.appendInputButton {
  font-family: "Source Sans Pro", Arial, "Roboto", sans-serif;
  border-radius: 0px;
  color: var(--brand-gpi-third-color);
  border: none;
  background-color: var(--white-gpi-color);
  padding: 7px 6px 6px 6px;
  width: 100% !important;
  margin-right: 0px;
  margin-left: 0px;
  font-weight: 400;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
/* Change Button Color & Move Left when Hovering */
.gpi-search.input-append:hover form#ProductDisplayForm button.btn.btn-default,
.gpi-search.input-append:focus-within form#ProductDisplayForm button.btn.btn-default {
  background-color: var(--brand-gpi-primary-color);
}
/* Input focus styling */
.gpi-search input.refine-search.appendInputButton:focus {
  color: var(--brand-gpi-primary-color);
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  border-color: var(--white-gpi-color);
}
.gpi-search input.refine-search.appendInputButton::-webkit-input-placeholder {
  /* Chrome, Opera, Safari */
  color: var(--brand-gpi-dkgrey-color);
}
.gpi-search input.refine-search.appendInputButton:-moz-placeholder {
  /* Firefox 4-18 */
  color: var(--brand-gpi-dkgrey-color);
}
.gpi-search input.refine-search.appendInputButton::-moz-placeholder {
  /* Firefox 19+ */
  color: var(--brand-gpi-dkgrey-color);
}
.gpi-search input.refine-search.appendInputButton:-ms-input-placeholder {
  /* IE 10-11 */
  color: var(--brand-gpi-dkgrey-color);
}
.gpi-search input.refine-search.appendInputButton::-ms-input-placeholder {
  /* MS Edge */
  color: var(--brand-gpi-dkgrey-color);
}
.gpi-search input.refine-search.appendInputButton::placeholder {
  /* your styles */
  color: var(--brand-gpi-dkgrey-color);
}

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

/**************************************     HEROS     ************************************************/
.carousel-top.gpi-sws-store {
  margin-top: 0px;
  width: 100vw !important;
  position: relative;
  margin-left: -50vw;
  left: 50%;
  padding-bottom: 0em;
}
.gpi-sws-store #myCarousel {
  margin-bottom: 10px;
}
/* Set a fixed height for the carousel inner to prevent jumping */
.gpi-sws-store #myCarousel .carousel-inner.hero-section,
.gpi-sws-store #myCarousel .carousel-inner.hero-section-french{
  height: 400px;
}
.gpi-sws-store #myCarousel .hero-section {
  width: 100%;
  background-image: url(/images/pages/gpi/gpi-background-hero-opt.webp);
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: 0px;
}
.gpi-sws-store #myCarousel .hero-content {
  max-width: 1100px;
  width: 100%;
  display: grid;
  grid-template-columns: 2fr 1fr;
  align-items: stretch;
  padding: 15px 20px;
  height: fit-content;
  margin: 0 auto;
}
.gpi-sws-store #myCarousel .text-content {
  padding: 0px 30px;
  width: 100%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: baseline;
  
}
.gpi-sws-store #myCarousel .image-content{
  width: 100%;
  text-align: center;
}
.gpi-sws-store #myCarousel .image-content img {
  object-fit: contain;
  height: auto;
  max-width: 100%;
  max-height: 400px;
}
.carousel-control-new {
  color: var(--white-gpi-color) !important;
  background-color: var(--brand-gpi-primary-color);
  border: 2px solid var(--white-gpi-color);
  border-radius: 50% !important; /* Rounded shape */
  width: 40px !important; /* Width of the circle */
  height: 40px !important; /* Height of the circle */
  line-height: 40px; /* Center the arrow vertically */
  text-align: center; /* Center the arrow horizontally */
  font-size: 20px; /* Adjust the size of the arrow */
  font-weight: lighter;
  text-shadow: none;
  position: absolute; /* Position the arrows */
  top: 50%; /* Position vertically in the middle */
  transform: translateY(-50%); /* Adjust vertical position */
  transition: 0.3s ease-in-out;
}
.carousel-control-new.left {
  left: 2rem; /* Position the left arrow */
}
.carousel-control-new.right {
  right: 2rem; /* Position the right arrow */
}
.carousel-control-new:hover{
  background-color: var(--brand-gpi-third-color);
  border: 2px solid var(--white-gpi-color);
  color: var(--white-gpi-color) !important;
  box-shadow: 0 4px 7px rgba(0, 0, 0, 0.25);
}

/* Other Carousel Styles */
.gpi-sws-store #myCarousel h1 {
  font-size: 1.5rem;
  margin-bottom: 0px;
  color: var(--white-gpi-color);
  line-height: 1.2;
  letter-spacing: 0.5px;
  font-weight: 700;
  font-family: var(--body-gpi-font);
  white-space: normal;
}
.gpi-sws-store #myCarousel .carousel-inner.hero-section-french h1{
  font-size: 30px;
}
.gpi-sws-store #myCarousel h2 {
  color: var(--white-gpi-color);
  font-weight: 800;
  font-size: 2rem;
  font-family: var(--body-gpi-font);
  line-height: 1.2;
  margin-top: 5px;
  white-space: normal;
}
.gpi-sws-store #myCarousel .carousel-inner.hero-section-french h2 br{
  display: none;

}
.gpi-sws-store #myCarousel p{
  color: var(--white-gpi-color);
  font-weight: 500;
  font-size: 20px;
  font-family: var(--body-gpi-font);
  line-height: 1.2;
  margin-bottom: 1em;
  white-space: normal;
}
.gpi-sws-store #myCarousel .carousel-btn {
  color: var(--white-gpi-color);
  background-color: var(--brand-gpi-third-color);
  border-radius: 4px;
  margin-top: 0px;
  font-size: 18px;
  padding: 6px 24px;
  display: inline-flex;
  font-family: var(--body-gpi-font);
  font-weight: 600;
  border: 2px solid #fff;
  text-decoration: none;
  transition: 0.3s ease-out;
  box-shadow: none;
}

.gpi-sws-store #myCarousel .carousel-btn:hover {
  color: var(--white-gpi-color);
  background-color: var(--brand-gpi-primary-color);
  box-shadow: 0 2px 3px var(--brand-gpi-secondary-color);
}

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

/**************************************     BUTTONS     ************************************************/
.sws-gpi-buttons .gpi-grid-container {
  display: grid;
  display: -ms-grid; /* For IE10+ */
  grid-template-columns: repeat(3, 1fr);
  gap: 1em 1em;
  margin-bottom: 2%;
  margin-top: 0em;
}
.sws-gpi-buttons .gpi-item {
  position: relative;
  display: grid;
  display: -ms-grid; /* IE10+ Fallback */
  grid-template-columns: repeat(1, 1fr);
  overflow: hidden;
  gap: 0px;
  -ms-grid-columns: 1fr 1fr; /* Explicit columns for IE */
  padding: 0px;
  align-content: center;
  border: 1px solid var(--brand-gpi-primary-color);
  border-radius: 4px;
  justify-items: center;
}
.sws-gpi-buttons .gpi-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 147, 208, 0.85); /* light blue tint */
  z-index: 1;
  transition: filter 0.5s ease, box-shadow 0.3s ease; /* smooth change */
}
/* Hover overlay brightness */
.sws-gpi-buttons .gpi-item:hover::before {
  filter: brightness(1.1); /* lighten the overlay */
}
/* Make text above overlay */
.gpi-item .application-title,
.gpi-item p,
.gpi-item a {
  position: relative;
  z-index: 2;
  color: #fff;
}
/* Shared button styles */
.gpi-application-img {
  width: 100%;
  height: 154px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--brand-gpi-primary-color);
  background-size: cover;
  background-position: center;
}

.gpi-application-title .application-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
  text-shadow: 0 2px 6px rgb(0 0 0 / 85%);
  text-transform: uppercase;
  width: 6em;
  text-align: center;
  line-height: 1.2;
  padding: 0;
} 
.sws-gpi-buttons.sws-gpi-buttons-fr .gpi-application-title .application-title {
  width: 13em;
} 

/* Individual background images */
.gpi-img-btn-1 .gpi-application-img {
  background-image: url('/images/pages/gpi/gpi-water-meters-bw.webp');
}
.gpi-img-btn-2 .gpi-application-img {
  background-image: url('/images/pages/gpi/gpi-disc-meters-bw.webp');
}
.gpi-img-btn-4 .gpi-application-img {
  background-image: url('/images/pages/gpi/gpi-oval-gear-bw.webp');
}
.gpi-img-btn-5 .gpi-application-img {
  background-image: url('/images/pages/gpi/gpi-insertion-meters-bw.webp');
}
.gpi-img-btn-6 .gpi-application-img {
  background-image: url('/images/pages/gpi/gpi-fuel-meters-bw.webp');
}
.gpi-img-btn-7 .gpi-application-img {
  background-image: url('/images/pages/gpi/gpi-pumps-bw.webp');
}
/* ...END Individual background images */

.gpi-item:not(.side-ad){
    height: 11em;
}

@supports (gap: 1em) {
  .sws-gpi-buttons .gpi-grid-container > * {
    margin: 0; /* Reset when gap is supported */
  }
}

/**************************************     SIDE AD     ************************************************/
.gpi-item.side-ad {
  grid-column-start: 3;
  grid-column-end: 4;
  grid-row-start: 1;
  grid-row-end: 4;
  padding: 0px 0px;
  place-items: center;
  text-align: center;
  max-height: 496px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  flex-direction: column;
  flex-wrap: nowrap;
  transition: box-shadow 0.3s ease;
  background-color: var(--brand-gpi-primary-color);
  z-index: 1;
  border: none;
  gap: 12px;
}
.gpi-item.side-ad::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(/images/pages/gpi/g8p-bkgr-side-ad.webp);
  background-size: 250%;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0.2;
  z-index: -1; /* Background stays below content */
  background-blend-mode: soft-light;
}
.sws-gpi-buttons .gpi-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.gpi-item.side-ad .gpi-side-ad-title p.application-title {
  line-height: 1.2;
  color: var(--white-gpi-color);
  font-size: 1.4rem;
  font-weight: 600;
  margin-top: 0px;
  font-family: var(--body-gpi-font);
  margin-bottom: 0;
  padding: 0 20px;
  text-transform: uppercase;
}
.gpi-item.side-ad .gpi-side-ad-subtitle p.application-subtitle {
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--white-gpi-color);
  line-height: 1.2;
  font-family: var(--body-gpi-font);
  padding: 0 20px;
  margin-bottom: 0;
}
.sws-gpi-buttons-fr .gpi-item.side-ad .gpi-side-ad-title p.application-title{
  line-height: 1.2;
  color: var(--white-gpi-color);
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 0px;
  font-family: var(--body-gpi-font);
  margin-bottom: 0;
  padding: 0 10px;
  text-transform: uppercase;
}
.sws-gpi-buttons-fr .gpi-item.side-ad .gpi-side-ad-subtitle p.application-subtitle {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--white-gpi-color);
  line-height: 1;
  font-family: var(--body-gpi-font);
  padding: 0 10px;
}
.gpi-item.side-ad .gpi-side-ad-img a{
  overflow: hidden; /* Prevents overflow */
  display: inline-block;
}
.gpi-item.side-ad .gpi-side-ad-img a img {
  height: auto;
  display: block;
  width: 100%;
  max-width: 100%;
  position: relative;
  left: 15px;
}
.sws-gpi-buttons .side-ad-btn {
  color: var(--white-gpi-color);
  background-color: var(--brand-gpi-third-color);
  border-radius: 4px;
  margin-top: 0px;
  font-size: 1rem;
  padding: 6px 24px;
  display: inline-flex;
  font-family: var(--body-gpi-font);
  font-weight: 600;
  border: 1px solid #fff;
  text-decoration: none;
  transition: 0.3s ease-out;
  box-shadow: none;
}
.sws-gpi-buttons .side-ad-btn:hover {
  color: var(--white-gpi-color);
  background-color: var(--brand-gpi-primary-color);
  box-shadow: 0 2px 3px var(--brand-gpi-secondary-color);
}
.row-fluid .sws-gpi-buttons.sws-gpi-buttons-fr .gpi-item.side-ad .gpi-side-ad-subtitle p.application-sub-subtitle{
  padding: 0px 60px 0px 0px;
  line-height: normal;
}
/**************************************     ABOUT US     ************************************************/
.gpi-hero-container{
  margin-top: -15px;
  width: 100vw !important;
  position: relative;
  margin-left: -50vw;
  left: 50%;
}
.gpi-about .about-gpi-hero {
  background-image: url(/images/pages/gpi/gpi-background-hero-opt.webp);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  height: 250px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}
.gpi-about .about-gpi-hero .span5{
  width: fit-content;
}
.gpi-about .about-gpi-hero h1 {
  color: var(--white-gpi-color);
  padding: 0.5em;
  font-size: 4rem;
  line-height: 1.2;
  font-family: var(--body-gpi-font);
  font-weight: 700;
  position: relative;
  text-transform: uppercase;
  text-align: center;
  text-shadow: 2px 4px 3px var(--brand-gpi-secondary-color);
  margin-bottom: 0;
}
.row-fluid.about-gpi-main-content h2 {
  color: var(--brand-gpi-secondary-color);
  font-weight: 700;
  text-align: left;
  font-size: 1.5rem;
  line-height: 1.2;
  padding-top: 0;
  margin-bottom: 5px;
  margin-top: 0.65em;
  font-family: var(--body-gpi-font);
  display: block;
}
.gpi-about .row-fluid p {
  text-align: left;
  font-size: 0.9rem;
  padding-bottom: 0;
  font-family: var(--p-gpi-font);
  color: var(--brand-gpi-general-color);
  line-height: 1.5;
  margin-bottom: 0;
}
.gpi-about .about-gpi{
  padding: 0 20px;
}
@media (max-width: 1199px) {
/**************************************     HEADER     ************************************************/
.gpi-header > .row-fluid {
  max-width: 914px;
}
/**************************************     NAV     ************************************************/
.gpi-header .row-fluid .navbar .nav-collapse.sws.collapse {
  width: 43rem;
}
.gpi-header .row-fluid .navbar.navbar-inner-gpi-subsite.navbar-inner-gpi-subsite-french .nav-collapse.sws.collapse {
  width: 48rem;
}
/**************************************     SEARCH BAR     ************************************************/
/* Search bar container */
.gpi-search.input-append {
  width: 40%; /* Default width */
}
.navbar.navbar-inner-gpi-subsite.navbar-inner-gpi-subsite-french .gpi-search.input-append {
  width: 39%; /* Default width */
}
/* Search Bar - Expand on Hover/Focus */
.gpi-search.input-append:hover,
.gpi-search.input-append:focus-within {
  width: 42%; /* Expanded width */
}
.navbar.navbar-inner-gpi-subsite.navbar-inner-gpi-subsite-french .gpi-search.input-append:hover,
.navbar.navbar-inner-gpi-subsite.navbar-inner-gpi-subsite-french .gpi-search.input-append:focus-within {
  width: 40.5%; /* Expanded width */
}
/* ********* END NAV ********* */
    
/**************************************     HEROS     ************************************************/
.gpi-sws-store #myCarousel .hero-content {
  grid-template-columns: 1fr 1fr;
  padding: 0px 20px;
}

.gpi-sws-store #myCarousel .text-content {
  padding: 0em 7em 0em 8em;
} 
.gpi-sws-store #myCarousel .text-content.text-content-french{
  max-width: 400px;
  padding: 0em 2em 0em 9em;
}
.carousel-control-new.left {
  left: 0.75rem; /* Position the left arrow */
}
.carousel-control-new.right {
  right: 0.75rem; /* Position the right arrow */
}
/**************************************     BUTTONS     ************************************************/

/**************************************     SIDE AD     ************************************************/

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

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

@media (max-width: 979px) {
  .row-fluid.gpi-sws-store{
    padding-top: 9px;
  }
/**************************************     HEADER     ************************************************/
.navbar-inner.gpi-mobile {
  font-family: var(--body-gpi-font);
  background: #0093D0;
  background-color: var(--brand-gpi-primary-color); 
  padding-top: 7px;
  padding-bottom: 7px;
}
.gpi-mobile .logo-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}
.gpi-mobile .span3 {
  width: 30%;
  float: left;
  margin: 0px;
}
.gpi-mobile img.brand.mobile-logo {
  width: 100%;
  padding: 0px 0px 0px 0px;
  margin: 0 0 0 -2px;
}
.gpi-mobile .span9 {
  margin-left: 0px;
  margin-top: 0;
  width: 60%;
}
/**************************************     SEARCH BAR     ************************************************/
.gpi-mobile .mobile-search {
  width: 100%;
  margin-top: 0;
  padding: 0 2px 0;
}
.gpi-mobile .mobile-search .input-append {
  padding: 0px !important;
  background-color: var(--white-gpi-color);
  height: 33px;
  border-radius: 4px;
  border: 1px solid var(--white-gpi-color);
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.gpi-mobile .input-append input {
  background: transparent;
  padding: 6px 10px 7px;
  border-radius: 4px 0px 0px 4px;
  border: none;
  font-size: 14px !important;
  width: 100% !important;
  box-shadow: none;
  font-family: "Source Sans Pro", Arial, "Roboto", sans-serif !important;
}

.gpi-mobile .input-append .btn {
  padding: 6px;
  background-color: var(--brand-gpi-third-color);
  height: 33px;
  border-radius: 0px 4px 4px 0px;
  width: 36px;
  transform: translateY(0%);
  margin-left: 0px;
  margin-top: 0px;
  float: right;
  border: none;
}
.gpi-mobile .input-append input.refine-search:focus:invalid:focus {
  color: var(--brand-gpi-secondary-color);
  outline: 0;
  outline: thin dotted \9;
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
  box-shadow: none !important;
}
.gpi-mobile .input-append input[type="text"]:focus{
  box-shadow: none !important;
  color: var(--brand-gpi-third-color);
}

.gpi-mobile .input-append input.refine-search.appendInputButton::-webkit-input-placeholder {
  /* Chrome, Opera, Safari */
  color: var(--brand-gpi-dkgrey-color);
}
.gpi-mobile .input-append input.refine-search.appendInputButton:-moz-placeholder {
  /* Firefox 4-18 */
  color: var(--brand-gpi-dkgrey-color);
}
.gpi-mobile .input-append input.refine-search.appendInputButton::-moz-placeholder {
  /* Firefox 19+ */
  color: var(--brand-gpi-dkgrey-color);
}
.gpi-mobile .input-append input.refine-search.appendInputButton:-ms-input-placeholder {
  /* IE 10-11 */
  color: var(--brand-gpi-dkgrey-color);
}
.gpi-mobile .input-append input.refine-search.appendInputButton::-ms-input-placeholder {
  /* MS Edge */
  color: var(--brand-gpi-dkgrey-color);
}
.gpi-mobile .input-append input.refine-search.appendInputButton::placeholder {
  /* your styles */
  color: var(--brand-gpi-dkgrey-color);
}
/**************************************     NAV     ************************************************/
/* Main nav wrapper */
.gpi-mobile .sws-mobile-header-nav .navbar-gpi-subsite-mobile {
  width: 100%;
  margin: 0 !important;
  border-radius: 0;
}
/* Main nav container full width */
.gpi-mobile #SWS-mobile-nav-button-adjust {
  display: flex;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  background-color: var(--brand-gpi-primary-color);
  border: 1px solid #fff;
  position: relative; /* important: allows submenu absolute positioning */
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
}
/* All nav items reset */
.gpi-mobile #SWS-mobile-nav-button-adjust > li {
  margin: 0;
  padding: 0;
  text-align: center;
  position: relative; /* so dropdown attaches to Products li */
}
.gpi-mobile #SWS-mobile-nav-button-adjust > li.nav-item.gpi-home {
  flex: 0 0 60px; /* fixed width for icon */
  background-color: var(--brand-gpi-primary-color);
}
/* Products & About equal size */
.gpi-mobile #SWS-mobile-nav-button-adjust > li.nav-item.gpi-products,
.gpi-mobile #SWS-mobile-nav-button-adjust > li.nav-item.gpi-about {
  flex: 1; /* equal space */
  background-color: var(--brand-gpi-primary-color);
}
/* Divider between items */
.gpi-mobile #SWS-mobile-nav-button-adjust > li + li:not(.collapse) {
  border-left: 1px solid #fff;
}
/* Links inside nav items */
.gpi-mobile #SWS-mobile-nav-button-adjust > li > a, 
.gpi-mobile #SWS-mobile-nav-button-adjust > li > .nav-home-icon {
  display: flex;
  width: 100%;
  padding: 4px 0px;
  color: #fff;
  text-decoration: none;
  align-items: center;
  justify-content: space-around;
  text-transform: uppercase;
  font-weight: 700;
  text-shadow: 0 2px 3px var(--brand-gpi-secondary-color);
  font-size: 1rem;
}
.gpi-mobile .gpi-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 {
  width: 100%;
}
/* Submenu items */
.gpi-mobile .gpi-mobile-sub-nav.collapse ul {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid white;
}
.gpi-mobile .gpi-mobile-sub-nav.collapse li a {
  display: block;
  padding: 8px 12px;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  text-transform: uppercase;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0;
}
/* Remove border-bottom for the last link */
.gpi-mobile .gpi-mobile-sub-nav.collapse li:last-child a {
  border-bottom: none;
  margin: 0;
}
.gpi-mobile .gpi-mobile-sub-nav.collapse li a:hover,
.gpi-mobile .sws-mobile-header-nav .nav > li > a:active, 
.gpi-mobile .sws-mobile-header-nav .nav > li > a:focus{
  background-color: rgba(0, 0, 0, 0.2);
  margin: 0;
  border-radius: 0;
}
/* SUB menu STYLES */

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

/**************************************     HEROS     ************************************************/
.carousel-top.gpi-sws-store {
  margin-top: 0px;
  width: 100vw !important;
  position: relative;
  margin-left: -50vw;
  left: 50%;
}
.row-fluid.gpi-sws-store {
  padding-top: 0px;
  padding-bottom: 0;
  margin-bottom: 0;
  margin-top: -4px;
}
.gpi-sws-store #myCarousel .carousel-inner.hero-section, 
.gpi-sws-store #myCarousel .carousel-inner.hero-section-french {
  display: flex;  
  align-items: flex-start;
  height: 320px;
}
.gpi-sws-store #myCarousel .hero-content {
  grid-template-columns: 1fr 1fr;
  height: 100%;
  display: grid;
  max-width: 979px;
} 
.gpi-sws-store #myCarousel .text-content {
  padding: 0em 6em 0em 7em;
  text-align: left;
  max-width: 400px;
}
.gpi-sws-store #myCarousel .text-content.text-content-french {
  padding: 0em 0em 0em 7em;
  max-width: 380px;
}
.gpi-sws-store #myCarousel .image-content{
  max-width: 400px;
}
.gpi-sws-store #myCarousel h1 {
  font-size: 1.3rem;
}
.gpi-sws-store #myCarousel .carousel-inner.hero-section-french h1 {
  font-size: 1.3rem;
}
.gpi-sws-store #myCarousel h2 {
  font-size: 1.75rem;
}
.gpi-sws-store #myCarousel p{
    font-size: 1rem;
}
.gpi-sws-store #myCarousel .carousel-btn {
  font-size: 0.9rem;
}

.gpi-sws-store #myCarousel .image-content img {
  object-fit: contain;
  height: auto;
  max-height: 300px;
}
/**************************************     BUTTONS     ************************************************/
.gpi-item:not(.side-ad) {
  height: 8em;
}
.gpi-application-img {
  height: 112px;
}
.gpi-application-title .application-title {
  font-size: 1.1rem;
  width: 10em;
}
.sws-gpi-buttons.sws-gpi-buttons-fr .gpi-application-title .application-title {
  font-size: 1rem;
}

/**************************************     SIDE AD     ************************************************/
.gpi-item.side-ad {
  max-height: 370px;
  gap: 0px;
}
.sws-gpi-buttons .side-ad-btn {
  font-size: 0.9rem;
  padding: 4px 24px;
}
 .gpi-item.side-ad .gpi-side-ad-title p.application-title {
  font-size: 1rem;
  padding: 0 10px;
}
.gpi-item.side-ad .gpi-side-ad-subtitle p.application-subtitle {
  font-size: 0.9rem;
} 
.sws-gpi-buttons-fr .gpi-item.side-ad .gpi-side-ad-title p.application-title{
    font-size: 1rem;
    padding: 0 10px;
}
.sws-gpi-buttons-fr .gpi-item.side-ad .gpi-side-ad-subtitle p.application-subtitle {
  font-size: 0.9rem;
}
.gpi-item.side-ad .gpi-side-ad-img a img {
  margin: 15px 0;
}
/* End Side Ad*/
/* ********* END BUTTONS ********* */


/**************************************     ABOUT PAGE     ************************************************/
.gpi-hero-container {
  margin-top: 0px;
}
.gpi-about .about-gpi-hero {
  background-position: bottom;
}
}
@media (min-width: 768px) and (max-width: 979px) {
  .gpi-about.span12{
    margin-top: -21px !important;
  }
  .gpi-about .row-fluid {
      padding-top: 0px !important;
  }
}
@media (max-width: 767px) {
  .row-fluid.gpi-sws-store {
    padding-top: 0px;
}
/**************************************     HEADER     ************************************************/
.navbar-inner.gpi-mobile {
  margin-left: -20px;
  margin-right: -20px;
}
.gpi-mobile .span3 {
  width: 45%;
}
.gpi-mobile .span9 {
  margin-bottom: 0;
}
/**************************************     HEROS     ************************************************/
.row-fluid.gpi-sws-store {
  padding-bottom: 0;
}
.gpi-sws-store #myCarousel .carousel-inner.hero-section, 
.gpi-sws-store #myCarousel .carousel-inner.hero-section-french {
  height: 320px;
  margin-top: 0px;
  box-shadow: none;
}
.gpi-sws-store #myCarousel .hero-content {
  max-width: 768px;
  padding: 20px;
}
.gpi-sws-store #myCarousel .text-content {
  padding: 0em 4em 0 3em;
}
.gpi-sws-store #myCarousel .text-content.text-content-french {
  padding: 0em 0em 0em 1em;
  max-width: 380px;
}
.gpi-sws-store #myCarousel h1 {
  font-size: 1.1rem;
}
.gpi-sws-store #myCarousel h2 {
  font-size: 1.5rem;
}
.gpi-sws-store #myCarousel .image-content {
  max-width: 350px;
}
.gpi-sws-store #myCarousel .hero-content .image-content img {
  box-shadow: none;
  max-height: 255px;
}
.carousel-indicators {
  margin-bottom: 10px;
}
/**************************************     BUTTONS     ************************************************/
.gpi-item.side-ad{
  display: none;
  visibility: hidden;
}
.gpi-item:not(.side-ad) {
  height: 8em;
}
.sws-gpi-buttons .gpi-grid-container {
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8em;
  margin-bottom: 2%;
}
/* ********* END BUTTONS ********* */
/**************************************     ABOUT PAGE     ************************************************/
.gpi-about.gpi-about-french .about-gpi-hero h1 {
  font-size: 3.5rem;
}
}

@media (max-width: 600px) {
/**************************************     HEADER     ************************************************/
.gpi-mobile .span3 {
  width: 60%;
}
/**************************************     HERO     ************************************************/
.row-fluid.gpi-sws-store {
  padding-top: 4px;
}
.gpi-sws-store #myCarousel .carousel-inner.hero-section, 
.gpi-sws-store #myCarousel .carousel-inner.hero-section-french {
  height: 350px;
  margin-top: 0px;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.gpi-sws-store #myCarousel .hero-section, 
.gpi-sws-store #myCarousel .image-content {
  order: -1;
  padding: 0em;
  background-position: 55%;
}
.gpi-sws-store #myCarousel .hero-content {
  max-width: 600px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  justify-items: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  padding: 0;
}
.gpi-sws-store #myCarousel .text-content {
  padding: 0;
  width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  max-width: 480px;
  max-height: 300px;
  height: auto;
}
.gpi-sws-store #myCarousel .text-content.text-content-french {
  padding: 0em 1em;
  max-width: 480px;
}
.gpi-sws-store #myCarousel h1 {
  text-align: center;
  font-size: 1rem;
}
.gpi-sws-store #myCarousel h2 {
  font-size: 1.3rem;
  text-align: center;
}
.gpi-sws-store #myCarousel h2 br {
  display: none;
}
.gpi-sws-store #myCarousel .carousel-inner.hero-section-french h2 br{
  display: block;
}
.gpi-sws-store #myCarousel p {
  font-size: 0.8rem;
  text-align: center;
}
.gpi-sws-store #myCarousel .image-content {
  max-width: 200px;
}
.gpi-sws-store #myCarousel .hero-section.hero-section-french .image-content{
  max-width: 180px;
}
.gpi-sws-store #myCarousel .hero-content .image-content img {
  box-shadow: none;
  max-height: 200px;
  width: 100%;
  height: 100%;
}
/********/  

/**************************************     BUTTONS     ************************************************/
.sws-gpi-buttons.sws-gpi-buttons-fr .gpi-application-title .application-title {
  width: 11em;
} 
.gpi-item:not(.side-ad) {
  height: 8em;
}
.gpi-application-title .application-title {
  width: 6em;
}
/* ********* END BUTTONS ********* */
/**************************************     ABOUT PAGE     ************************************************/
.gpi-about.gpi-about-french .about-gpi-hero h1 {
  font-size: 3rem;
}

}

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

.gpi-mobile .mobile-search .input-append {
  height: 30px;
}
.gpi-mobile .input-append input {
  padding: 4px 10px;
  font-size: 12px !important;
}
.gpi-mobile .input-append .btn {
  height: 30px;
}
/**************************************     NAV     ************************************************/

/**************************************     HERO     ************************************************/
.carousel-top.gpi-sws-store {
  padding-bottom: 0em;
}
.gpi-sws-store #myCarousel .hero-content {
  max-width: 480px;
}
.gpi-sws-store #myCarousel h1 {
  font-size: 0.9rem;
}
.gpi-sws-store #myCarousel h2 {
  font-size: 1rem;
}
.gpi-sws-store #myCarousel p{
  font-size: 0.9rem;
}
.gpi-sws-store #myCarousel .text-content,
.gpi-sws-store #myCarousel .text-content.text-content-french {
  max-width: 400px;
}
/**************************************     BUTTONS     ************************************************/
.sws-gpi-buttons.sws-gpi-buttons-fr .gpi-application-title .application-title {
  width: 10em;
} 
.gpi-item:not(.side-ad) {
  height: 7em;
}
.sws-gpi-buttons .gpi-item {
  grid-template-columns: repeat(1, 1fr);
  align-content: center;
  justify-items: center;
}


/* ********* END BUTTONS ********* */
/**************************************     ABOUT PAGE     ************************************************/
.gpi-about .about-gpi-hero h1 {
  padding: 0.3em;
  font-size: 2.7rem;
}
.gpi-about.gpi-about-french .about-gpi-hero h1 {
  font-size: 2rem;
}

}

@media (max-width: 399px) {
/**************************************     HEADER     ************************************************/
.gpi-mobile .logo-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 8px;
  align-items: center;
}
.gpi-mobile .span3 {
  width: 100%;
}
.gpi-mobile img.brand.mobile-logo {
  width: 60%;
}
.gpi-mobile .span9 {
  margin-bottom: 10px;
  width: 100%;
}

/**************************************     NAV     ************************************************/
.gpi-mobile #SWS-mobile-nav-button-adjust > li.nav-item.gpi-home {
  flex: 0 0 40px;
}
.gpi-mobile #SWS-mobile-nav-button-adjust > li > a, 
.gpi-mobile #SWS-mobile-nav-button-adjust > li > .nav-home-icon {
  font-size: 0.9rem;
}
.nav-home-icon-svg {
  width: auto;
  height: 15px;
}
/**************************************     HERO     ************************************************/
.gpi-sws-store #myCarousel h2,
.gpi-sws-store #myCarousel p {
  padding: 0 10px;
}
.gpi-sws-store #myCarousel .image-content {
  max-width: 180px;
}
/**************************************     BUTTONS     ************************************************/
.sws-gpi-buttons .gpi-grid-container {
  grid-template-columns: repeat(1, 1fr);
}
.gpi-application-title .application-title {
  font-size: 1rem;
  width: 10em;
}
.sws-gpi-buttons.sws-gpi-buttons-fr .gpi-application-title .application-title {
  width: 11em;
}
/* ********* END BUTTONS ********* */
/**************************************     ABOUT PAGE     ************************************************/
.gpi-about .about-gpi-hero {
  height: 150px;
}
.gpi-about .row-fluid p {
  font-size: 0.8rem;
}
}
@media (max-width: 329px) {
/**************************************     HEADER     ************************************************/
.navbar-inner.gpi-mobile {
  padding-bottom: 0px;
}
.gpi-mobile img.brand.mobile-logo {
  width: 65%;
}
.gpi-mobile .span9 {
  margin-bottom: 5px;
}
.gpi-mobile .sws-mobile-header-nav .nav > li > a {
  font-size: 0.8em;
}
/**************************************     SEARCH BAR     ************************************************/
.gpi-mobile .mobile-search .input-append {
  height: 25px;
}
.gpi-mobile .input-append input {
  padding: 2px 10px;
}
.gpi-mobile .input-append .btn {
  height: 25px;
  padding: 0px;
}
/**************************************     HERO     ************************************************/
.gpi-sws-store #myCarousel .carousel-inner.hero-section-french h2 br{
  display: none;
}
/**************************************     BUTTONS     ************************************************/

.sws-gpi-buttons .gpi-grid-container {
  grid-template-columns: repeat(1, 1fr);
}
/* ********* END BUTTONS ********* */
/**************************************     ABOUT PAGE     ************************************************/
.gpi-about .about-gpi-hero h1 {
  font-size: 1.7rem;
}
.row-fluid.about-gpi-main-content h2 {
  font-size: 1.3rem;
}

}