:root {
  --brand-kano-primary-color: #232E4E; /* primary color */
  --brand-kano-secondary-color: #1354A8; /* secondary color */

  --brand-kano-inputgrey-color: #D7D7D7;
  --brand-kano-yellow: #F5EDC6;
  --white-kano-color: #FFFFFF; /* white */ 
  --body-kano-font: Lato, 'Open Sans', sans-serif;
  --p-kano-font: Lato, 'Open Sans', sans-serif;
}

/* Base container */
.kano-header#store-banner {
  font-family: Lato, '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;
}
/* Headings */
.kano-header#store-banner h1 { font-size: 2rem; font-weight: 700; margin-bottom: 1rem; }
.kano-header#store-banner h2 { font-size: 1.75rem; font-weight: 600; margin-bottom: 0.85rem; }
.kano-header#store-banner h3 { font-size: 1.5rem; font-weight: 600; margin-bottom: 0.75rem; }
.kano-header#store-banner h4 { font-size: 1.25rem; font-weight: 600; margin-bottom: 0.6rem; }
.kano-header#store-banner h5 { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.5rem; }
.kano-header.kano-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 */
.kano-header#store-banner small {
  font-size: 0.875rem;
  font-weight: 400;
}

/* Links */
.kano-header#store-banner a {
  font-family: Lato, 'Open Sans', sans-serif;        
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.kano-header#store-banner a:hover, .nav-home-icon-svg:hover {
  color: var(--brand-kano-yellow);
  outline: none;
}

/**************************************     HEADER     ************************************************/
.kano-header {
  width: 100vw !important;
  position: relative;
  margin-left: -50vw;
  left: 50%;
  box-sizing: border-box;
  padding: .7em 0;
  background: linear-gradient(
    to right,
    rgba(27, 58, 91, 1) 0%, 
    rgba(34, 82, 133, 1) 100%  
  );
}
.kano-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;
}
.kano-header .span3.logo-kano-sws img.brandlogo{
  width: 100%;
  margin-left: 0px;
}
.kano-header .row-fluid .navbar.navbar-inner-kano-subsite {
  float: right;
}
.kano-header .span9.subheading-nav {
  float: right;
  margin-top: 9px;
}
.kano-header .row-fluid .navbar .nav-collapse.sws.collapse {
  margin-top: 0px !important;
  width: 52rem;
}

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

.navbar .nav.navbar-kano-subsite {
  margin-right: 0;
  /* width: 90%; */

  /* 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-kano-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 */
}

.navbar .nav.navbar-kano-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 */
  text-align: center;
}

.navbar.navbar-inner-kano-subsite-french .nav.navbar-kano-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 */
  text-align: center;
}

.navbar.navbar-inner-kano-subsite .nav > li > a {
  text-shadow: none;
  color: var(--white-kano-color);
  display: block;
  white-space: nowrap;
}

/* NAV HOVER COLOURS */
.navbar.navbar-inner-kano-subsite .nav > li > a:active,
.navbar.navbar-inner-kano-subsite .nav > li > a:hover,
.navbar .nav.navbar-kano-subsite li.dropdown.open > .dropdown-toggle,
.navbar .nav.navbar-kano-subsite li.dropdown.active > .dropdown-toggle,
.navbar .nav.navbar-kano-subsite li.dropdown.open.active > .dropdown-toggle {
  color: var(--brand-kano-yellow);
  background-color: transparent;
}
.navbar.navbar-inner-kano-subsite .navbar-kano-subsite li {
  line-height: 1.5;
}
/* home button */
.nav-home-icon-svg {
  color: #ffffff;
  width: 18px;
  height: 18px;
  transition: color 0.2s ease;
  display: block;
}
.navbar .nav.navbar-kano-subsite a.nav-home-icon{
  padding: 11px 20px;
}
.navbar.navbar-inner-kano-subsite .nav>li>a {
  padding: 6px 20px;
  font-size: 1.1rem !important;
  font-weight: 600 !important;
}
.navbar.navbar-inner-kano-subsite.navbar-inner-kano-subsite-french.mhide a.nav-home-icon{
  padding: 11px 24px !important;
}
.nav, .navbar {
  margin-bottom: 0px;
}
.navbar .nav.navbar-kano-subsite > li:last-child {
  flex-grow: 2; /* Allow more space for the search bar */
  max-width: 270px; /* Constrain the search bar width */
}

/* DROPDOWN MENU STYLES */
/* Style the nested dropdown */
ul.dropdown-menu.kano-whole-cateogies-list-menu .dropdown-submenu {
  position: relative;
}
ul.dropdown-menu.kano-whole-cateogies-list-menu .dropdown-submenu > .dropdown-menu {
  top: 0;
  left: 100%; /* Opens to the right */
  margin-top: -1px;
}
.navbar .pull-right>li>.dropdown-menu.kano-whole-cateogies-list-menu .dropdown-menu{
  border-radius: 0;
}
/* hide Bootstrap arrow */
.navbar .nav > li > .kano-whole-cateogies-list-menu.dropdown-menu:before,
.navbar .nav > li > .kano-whole-cateogies-list-menu.dropdown-menu:after {
  display: none;
}
/* base (hidden) */
.navbar .nav > li > .kano-whole-cateogies-list-menu.dropdown-menu {
  display: block !important;
  width: 274px;
  left: 0 !important;
  top: 4.05rem;
  border-radius: 0;
  background-color: var(--white-kano-color);
  box-shadow: none;
  margin: 0;
  border-top: 6px solid #00A0E8;
  opacity: 0;
  transform: translateY(5px);
  pointer-events: none;
  transition: opacity .25s ease, transform .5s ease;
  padding: 0;
}
.navbar.navbar-inner-kano-subsite.navbar-inner-kano-subsite-french.mhide .dropdown-menu.kano-whole-cateogies-list-menu{
  width:308px;
}
/* show only on click (when .open is applied by Bootstrap JS) */
.navbar .nav > li.open > .kano-whole-cateogies-list-menu.dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
/* ******** */
.dropdown-menu.kano-whole-cateogies-list-menu .kano-flex-dropdown{
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-evenly;
  margin: 0 auto;
  width: fit-content;
}
/* Shared dropdown styles for all items */
.dropdown-menu.kano-whole-cateogies-list-menu li a,
.dropdown-menu.kano-whole-cateogies-list-menu li.dropdown-header-title,
.dropdown-menu.kano-whole-cateogies-list-menu li.dropdown-header a {
  white-space: break-spaces;
  line-height: 1.5;
  font-family: var(--body-kano-font);
  font-size: 16px;
  text-align: left;
  display: block;
  text-decoration: none;
}
/* Regular links */
.dropdown-menu.kano-whole-cateogies-list-menu li a:not(.dropdown-header) {
  font-weight: 600 !important;
  color: #494949;
}
.kano-whole-cateogies-list-menu > li {
    border-bottom: 1px solid #e0e0e0; 
    margin: 0;
    padding: 8px 5px 8px 20px; 
}
.kano-whole-cateogies-list-menu > li:last-child, .dropdown-menu.kano-whole-cateogies-list-menu li.accessory-item {
    border-bottom: none;
}
.accessory-item + .accessory-item{
  padding-left: 2.5rem;
  padding-top: 2px;
  padding-bottom: 2px;
}
 .kano-whole-cateogies-list-menu > li:hover {
  background: #eee !important;
}
.kano-whole-cateogies-list-menu > li:hover > a {
  color: var(--brand-kano-primary-color) !important;
}
.kano-whole-cateogies-list-menu > li > a,
.kano-whole-cateogies-list-menu > li > a:hover,
.kano-whole-cateogies-list-menu > li > a:focus,
.kano-whole-cateogies-list-menu > li > a:active {
  background: transparent !important;
}
.kano-header#store-banner li.accessory-item:last-child {
  padding-bottom: 14px;
}
.navbar.navbar-inner-kano-subsite.navbar-inner-kano-subsite-french.mhide ul.dropdown-menu.kano-whole-cateogies-list-menu.solutions-by-industry,
ul.dropdown-menu.kano-whole-cateogies-list-menu.solutions-by-industry {
  width: fit-content;
  padding: 10px;
}
ul.dropdown-menu.kano-whole-cateogies-list-menu.solutions-by-industry li{
  margin-left: 10px 10px 5px;
}
ul.dropdown-menu.kano-whole-cateogies-list-menu.solutions-by-industry li>a{
  margin-left: 10px 0;
}
/**************************************     SEARCH BAR     ************************************************/
.kano-search form#ProductDisplayForm button.btn.btn-default i.icon-search,
.kano-mobile .mobile-search button .icon-search {
  margin-top: 1px !important;
  background-image: url(/images/pages/kano/kano-search-btn.svg);
}
.kano-search .btn{
  padding: 0px;
}
/* ========== BASE CONTAINER ========== */
.kano-search.input-append {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 35px;
  border-radius: 0;
  overflow: hidden;
}
/* Form layout */
.kano-search form#ProductDisplayForm {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  height: 35px;
  margin: 0;
  position: relative;
  white-space: nowrap; /* prevent wrapping */
}
.input-append.kano-search input#ProductSearch{
  border-radius: 0;
  border: none;
}
.input-append.kano-search .navbar-search input:focus:invalid:focus, .input-append.kano-search input.refine-search:focus:invalid:focus, .input-append.kano-search input[type="text"]{
  color: #fff;
  background-color: #66A3D9;
  height: 26px;
  padding-left: 20px;
}
/* Remove input highlight */
.kano-search input#ProductSearch.appendInputButton:focus {
  outline: none;
  box-shadow: none;
}
/* Placeholder styling */
.kano-search input#ProductSearch.appendInputButton::placeholder {
  color: var(--brand-kano-dkgrey-color);
  opacity: 1;
}
/* Button (magnifying glass) */
.kano-search form#ProductDisplayForm button.btn.btn-default {
  background-color: #66A3D9;
  border: none;
  border-radius: 0;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  cursor: pointer;
  z-index: 2;
}
.navbar-kano-subsite > li:last-child {
  margin-left: 6px;
}
/* Optional tweak for better alignment of the SVG icon */
.kano-search form#ProductDisplayForm button.btn.btn-default img {
  width: 20px;
  height: auto;
  margin: 0;
  display: block;
}

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

/**************************************     HEROS     ************************************************/
.carousel-top.kano-sws-store {
  margin-top: 0px;
  width: 100vw !important;
  position: relative;
  margin-left: -50vw;
  left: 50%;
  padding-bottom: 0em;
}
.kano-sws-store #myCarousel {
  margin-bottom: 0;
}
/* Set a fixed height for the carousel inner to prevent jumping */
.kano-sws-store #myCarousel .carousel-inner.hero-section,
.kano-sws-store #myCarousel .carousel-inner.hero-section-french{
  height: 400px;
}
.kano-sws-store #myCarousel .hero-section {
  width: 100%;
  background-image: url(/images/pages/kanomax/kanomax-backgound-image.webp);
  background-size: cover;
  background-position: bottom;
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: 0px;
  overflow: hidden;
  z-index: 1;
}
.kano-sws-store #myCarousel .hero-content {
  max-width: 1100px;
  width: 1100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  padding: 15px 20px;
  height: 340px;
  margin: 1em auto;
}
.kano-sws-store #myCarousel .hero-section::before{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 154px; /* height of the rectangle */
  background: rgba(0, 0, 0, 1); 
  z-index: 0; /* behind content but above background */
}
.kano-sws-store #myCarousel .text-content {
  padding: 0px 40px;
  width: 100%;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.kano-sws-store #myCarousel .image-content{
  margin: auto;
}
.kano-sws-store #myCarousel .image-content img {
  object-fit: contain;
  height: auto;
  max-width: 100%;
  max-height: 320px;
}
.carousel-control-new {
  color: var(--white-kano-color) !important;
  background-color: rgba(35, 46, 78, 0.5);
  border: 2px solid var(--white-kano-color);
  border-radius: 50% !important; 
  width: 40px !important; 
  height: 40px !important; 
  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;
  z-index: 1;
}
.carousel-control-new.left {
  left: 2rem; /* Position the left arrow */
}
.carousel-control-new.right {
  right: 2rem; /* Position the right arrow */
}
.carousel-control-new:hover{
  border: 2px solid var(--white-kano-color);
  color: var(--white-kano-color) !important;
  box-shadow: 0 4px 7px rgba(0, 0, 0, 0.25);
}
/* Other Carousel Styles */
.kano-sws-store #myCarousel h1 {
  font-size: 2rem;
  margin-top: 3rem;
  margin-bottom: 0.5em;
  color: var(--brand-kano-yellow);
  text-align: left;
  letter-spacing: 0.5px;
  font-weight: 700;
  font-family: var(--body-kano-font);
}
.kano-sws-store #myCarousel h2 {
  color: var(--white-kano-color);
  font-size: 1.15rem;
  line-height: 1.5;
  margin-top: 5px;
  font-weight: 200;
  text-align: left;
  font-family: var(--body-kano-font);
}
.kano-sws-store #myCarousel .carousel-btn, .side-ad-btn {
  color: var(--white-kano-color);
  background-color: #275484;
  border-bottom: solid 5px #3A92D0;
  margin-top: 3em;
  font-size: 16px;
  padding: 1em 3em;
  display: inline-flex;
  text-decoration: none;
  transition: 0.3s ease-out;
  box-shadow: none;
  text-transform: uppercase;
  font-family: var(--body-kano-font);
  letter-spacing: 0.05rem;
}
.kano-sws-store #myCarousel .carousel-btn:hover, .side-ad-btn:hover {
  color: var(--white-kano-color);
  background-color: #3A92D0;
  border-bottom: solid 5px #275484;
}
.carousel-btn {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.5rem; /* space between text and arrow */
}
.carousel-btn .arrow-icon {
  display: inline-block;
  vertical-align: middle;
}
/* ********* END Heroes ********* */

/**************************************     BUTTONS     ************************************************/
@supports (gap: 1em) {
  .sws-kano-buttons .kano-grid-container > * {
    margin: 0; /* Reset when gap is supported */
  }
}
.kano-flex-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  width: 100%;
  /*align-items: stretch;  ensures all boxes same height */
  grid-auto-rows: 1fr;
}
.kano-grid-container {
  position: relative;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  height: 100%;
}
.kano-grid-container > a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
}
/* Category box with background image */
.category-blue-box {
  position: relative;
  background-image: url("/images/pages/kanomax/kanomax-btn-background.webp");
  background-size: cover;
  background-position: center;
  padding: 3.5rem 1rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  height: 100%;
  box-sizing: border-box;
}
/* Blue overlay layer */
.category-blue-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #002E60;  /* blue overlay */
  transition: opacity 0.5s ease;
  z-index: 1;
}
/* Hover effect: make blue overlay more transparent */
.category-blue-box:hover::after,
.category-blue-box:focus::after {
  opacity: 0.3;
}
/* Category title */
.category-blue-box .category-title {
  position: relative;
  z-index: 2; /* above overlay */
  color: var(--brand-kano-yellow);
  font-size: 1.2rem;
  letter-spacing: 0.5px;
  line-height: 1.6rem;
}

/**************************************     SIDE AD     ************************************************/
a.kano-item.side-ad {
  position: relative;
  z-index: 0; /* important: creates proper stacking context */
  background-color: #002E60;
  background-image: url("/images/pages/kanomax/kanomax-side-ad-background.webp");
  background-repeat: no-repeat;
  background-size: cover;          
  background-position: bottom;     
  grid-row: span 3;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 1em;
  box-sizing: border-box;
}
/* Product image stays bottom-right */
.kano-side-ad-img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 60%;
  z-index: 1;
}
.kano-side-ad-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.kano-side-ad-title .application-title{
  font-size: 1.2rem;
  text-align: center;
  color: var(--brand-kano-yellow);
  font-weight: 400;
  line-height: 1.7rem;
}
span.application-subtitle {
  font-size: 1rem;
    text-align: center;
    padding-right: 0;
    line-height: 1.45rem;
    color: #FFFFFF;
}
/* Text + Button stay on top */
.kano-side-ad-title,
.kano-side-ad-subtitle {
  position: relative;
  text-align: center;
  z-index: 5; 
  flex-grow: 0;
}
.kano-side-ad-subtitle {
    margin-top: 1rem;
}
.kano-side-ad-title{
  padding-top: 2em;
}
.kano-side-ad-cta {
  position: relative;
  z-index: 5; 
  margin-top: auto;
  align-self: center;
}
/* CTA button itself */
.side-ad-btn {
  display: inline-block;
}

@media (max-width: 600px) {
  .kano-flex-container {
    grid-template-columns: 1fr;
  }

  .side-ad {
    grid-column: span 1;
  }
}

/**************************************     ABOUT US     ************************************************/
.row-fluid.navbar.taxonomy-breadcrumbs.sws-breadcrumbs {
    display: none;
}
.content.mobile-setting {
    padding-top: 0;
}
 .row-fluid.about-kano-hero.about-us-hero{
    width: 100%;
    background-image: url(/images/pages/kanomax/kanomax-backgound-image.webp);
    background-size: cover;
    background-position: top;
    position: relative;
    display: flex;
    justify-content: center;
    height: auto;
}
/* Content stays above background */
.kano-hero-container > * {
  position: relative;
  z-index: 1;
}
/* New wrapper to constrain the text inside full-width background */
.about-hero-content {
  max-width: 980px;
  margin: 0 auto;
  padding: 2em 1em;
  text-align: center;
  color: white;
}
.row-fluid.about-kano-hero.about-us-hero.kano-about-us-content{
  background: linear-gradient(
    to left,
    rgba(34, 82, 133, 0) 0%,    /* fully transparent on the left */
    rgba(102,163,217, 0.11) 100% /* solid color on the right */
  );
  height: auto;
}
.row-fluid.about-kano-main-content {
    padding: 0.5em 0 2em;
}
.row-fluid.about-kano-hero.about-us-hero .span12 .about-hero-content p, .row-fluid.about-kano-main-content p{
  color: #fff;
  font-size: 16px;
  font-family: var(--body-kano-font);
  font-weight: 200;
}
.row-fluid.about-kano-main-content h2, .about-hero-content h2 {
  color: var(--brand-kano-primary-color);
  font-weight: 700;
  text-align: center;
  font-size: 25px;
  line-height: normal;
  padding-top: 0.1em;
  margin-bottom: 5px;
  font-family: var(--body-kano-font);
  display: block;
}
.row-fluid.about-kano-main-content .span12 h2 {
margin-top: 0px;
}
.row-fluid.about-kano-main-content p, .row-fluid.about-kano-hero.about-us-hero.kano-about-us-content .about-hero-content p {
  text-align: center;
  font-size: 16px;
  padding-bottom: 1em;
  font-family: var(--body-kano-font);
  color: #3a414b;
}
.kano-hero-container{
  width: 100vw !important;
  position: relative;
  margin-left: -50vw;
  left: 50%;
  margin-bottom: 2.5em;
}
 .row-fluid.about-kano-hero.about-us-hero .span12{
  display: flex;
  flex-direction: column;
  align-items: center;
}
 .about-kano-hero .span12 h1{
  position: relative;
  z-index: 1;
  font-size: 60px;
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
  line-height: normal;
  margin-bottom: 0px;
  padding: 0.2em 0.5em 0.5em;
  font-family: var(--body-kano-font);
  display: block;
  color: var(--brand-kano-yellow);
}
/* Ensure content is above the background */
.about-kano > * {
  position: relative;
  z-index: 1;
}
.row-fluid.about-kano-container h2{
    color: #fff;
    direction: ltr;
    font-size: 38px;
    font-weight: 700;
    letter-spacing: normal;
    line-height: 120%;
    text-align: center;
    margin-top: 0;
}
.row-fluid.about-kano-container {
  margin: 0 auto;
  max-width: 1095px;
  padding: 0.5rem 0.5rem 1.5rem;
  position: relative;
}
.row-fluid.about-kano-main-content.last-p {
    padding-bottom: 1em;
}

@media (min-width: 1199px) {
.kano-sws-store.gts-carousel #myCarousel h1{
  padding: 0 4px;
}
}
@media (max-width: 1199px) {
/**************************************     HEADER     ************************************************/
.kano-header > .row-fluid {
  max-width: 914px;
}
/**************************************     NAV     ************************************************/
.kano-header .row-fluid .navbar .nav-collapse.sws.collapse {
  width: 43rem;
}
.kano-header .row-fluid .navbar.navbar-inner-kano-subsite.navbar-inner-kano-subsite-french .nav-collapse.sws.collapse {
  width: 48rem;
}
/**************************************     SEARCH BAR     ************************************************/
.navbar .nav > li > .kano-whole-cateogies-list-menu.dropdown-menu{
  top: 3.65rem;
}
/* ********* END NAV ********* */
    
/**************************************     HEROS     ************************************************/
.kano-sws-store #myCarousel .hero-content {
  grid-template-columns: 1fr 1fr;
  width: 880px;
}
.kano-sws-store #myCarousel .text-content {
  padding: 0em 0em 0em 2em;
  width: 520px;
} 
.kano-sws-store #myCarousel .image-content{
  width: 300px;
}
.carousel-control-new.left {
  left: 0.75rem; /* Position the left arrow */
}
.carousel-control-new.right {
  right: 0.75rem; /* Position the right arrow */
}

/**************************************     BUTTONS     ************************************************/
.category-blue-box {
  padding: 3rem 1rem;
}
/**************************************     SIDE AD     ************************************************/
.kano-side-ad-img {
    width: 80%;
}
/**************************************     ABOUT PAGE     ************************************************/

/* ********* END About Page ********* */
  
}
@media (max-width: 1199px) and (min-width:980px) {
.kano-search.input-append:hover, .kano-search.input-append:focus-within{
  width: 176px;
}
.navbar.navbar-inner-kano-subsite .nav>li>a{
  padding: 6px 10px;
}
}
@media (max-width: 979px) {
  .row-fluid.kano-sws-store{
    padding-top: 9px;
  }
/**************************************     HEADER     ************************************************/
.navbar-inner.kano-mobile {
  font-family: var(--body-kano-font);
  background: linear-gradient(
    to right,
    rgba(27, 58, 91, 1) 0%, 
    rgba(34, 82, 133, 1) 100%  
  ); 
  padding-top: 7px;
  padding-bottom: 7px;
}
.kano-mobile .logo-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}
.kano-mobile .span3 {
  width: 30%;
  float: left;
  margin: 0px;
}
.kano-mobile img.brand.mobile-logo {
  width: 100%;
  padding: 0px 0px 0px 0px;
  margin: 0 0 0 -2px;
}
.kano-mobile .span9 {
  margin-left: 0px;
  margin-top: 0;
  width: 60%;
}
/**************************************     SEARCH BAR     ************************************************/
.kano-mobile .mobile-search {
  width: 100%;
  margin-top: 0;
  padding: 0 2px 0;
}
.kano-mobile .mobile-search .input-append {
  padding: 0px !important;
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.kano-mobile .input-append input#ProductSearch {
  background: #66A3D9;
  padding: 6px 10px 7px;
  border-radius: 0;
  border: none;
  font-size: 14px !important;
  width: 100% !important;
  box-shadow: none;
}
.mobile-search .input-append input[type="text"]{
  color: #fff;
}
.kano-mobile .input-append .btn {
  padding: 6px;
  background-color: #66A3D9;
  height: 33px;
  border-radius:0;
  width: 36px;
  transform: translateY(0%);
  margin-left: 0px;
  margin-top: 0px;
  float: right;
  border: none;
}
.kano-mobile .input-append input.refine-search:focus:invalid:focus {
  color: var(--brand-kano-secondary-color);
  outline: 0;
  outline: thin dotted \9;
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
  box-shadow: none !important;
}
.kano-mobile .input-append input[type="text"]:focus{
  box-shadow: none !important;
  color: var(--brand-kano-third-color);
}

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

/* ******Search bar********** */
.kanomax-search-icon {
    width: 18px;
    height: auto;
    margin: -2px -1px 0 0;
    display: inline-block;
}

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

/**************************************     HEROS     ************************************************/
.kano-sws-store #myCarousel .hero-content{
  width: 90vw;
}
.kano-sws-store #myCarousel .hero-section::before {
  height: 100px;
 }
 .kano-sws-store #myCarousel .carousel-btn{
  padding: 0.9em 3em;
 }
.row-fluid.kano-sws-store {
  padding-top: 0px;
  padding-bottom: 0;
  margin-bottom: 0;
  margin-top: -4px;
}
.kano-sws-store #myCarousel .carousel-inner.hero-section, 
.kano-sws-store #myCarousel .carousel-inner.hero-section-french {
  height: 330px;
}
.kano-sws-store #myCarousel .hero-content {
  max-width: 979px;
  height: 272px;
} 
.kano-sws-store #myCarousel .text-content {
  padding: 0;
}
.kano-sws-store #myCarousel .text-content.text-content-french {
  padding: 0;
  max-width: 380px;
}
.kano-sws-store #myCarousel .image-content{
  max-width: 240px;
}
.kano-sws-store #myCarousel .carousel-btn {
  font-size: 0.9rem;
}
.kano-sws-store #myCarousel .image-content img {
  object-fit: contain;
  height: auto;
  max-height: 300px;
}
.kano-sws-store #myCarousel .carousel-inner.hero-section.hero-section-french h1 {
  font-size: 1.7rem;
  line-height: 1.15em;
}
.kano-sws-store #myCarousel .carousel-inner.hero-section.hero-section-french h2 {
  font-size: 1.1rem;
  line-height: 1.05em;
}
.kano-sws-store #myCarousel .carousel-inner.hero-section, .kano-sws-store #myCarousel .carousel-inner.hero-section-french {
  height: 330px;
}
/**************************************     BUTTONS     ************************************************/
.kano-application-title .application-title {
  font-size: 1.1rem;
  width: 10em;
}
.sws-kano-buttons.sws-kano-buttons-fr .kano-application-title .application-title {
  font-size: 1rem;
}

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

/* End Side Ad*/
/* ********* END BUTTONS ********* */


.kano-hero-container {
  margin-top: 0px;
}
.kano-about .about-kano-hero {
  background-position: bottom;
}

/**************************************     ABOUT PAGE     ************************************************/
.row-fluid.about-kano-hero.about-us-hero {
    background-image: url(/images/pages/kanomax/kanomax-backgound-mobile.webp);
}
.about-hero-content{
  max-width: 90%;
}
/**************   End of ABOUT PAGE   ************************/
}

@media (max-width: 850px) {
.side-ad-btn{
  padding: 1em 2.2em;
}
  }
@media (max-width: 805px) {  
.kano-side-ad-img {
        width: 95%;
  }  
}
@media (max-width: 767px) {
  .row-fluid.kano-sws-store {
    padding-top: 0px;
}

/**************************************     HEADER     ************************************************/
.navbar-inner.kano-mobile {
  margin-left: -20px;
  margin-right: -20px;
}
.kano-mobile .span3 {
  width: 45%;
}
.kano-mobile .span9 {
  margin-bottom: 0;
}
/**************************************     HEROS     ************************************************/
.row-fluid.kano-sws-store {
  padding-bottom: 0;
}
.kano-sws-store #myCarousel .carousel-inner.hero-section, 
.kano-sws-store #myCarousel .carousel-inner.hero-section-french {
  height: 340px;
  box-shadow: none;
}
.kano-sws-store #myCarousel .hero-content {
  max-width: 768px;
  padding: 20px;
}
.kano-sws-store #myCarousel .text-content{
  width: 372px;
}
.kano-sws-store #myCarousel .hero-section::before{
  display: none;
}
.kano-sws-store #myCarousel .hero-section {
  background-image: url(/images/pages/kanomax/kanomax-backgound-mobile.webp);
}
.kano-sws-store #myCarousel .text-content.text-content-french {
  padding: 0em 0em 0em 1em;
  max-width: 380px;
}
.kano-sws-store #myCarousel h1 {
  font-size: 1.7rem;
  line-height: 32px;
}
.kano-sws-store #myCarousel .carousel-inner.hero-section.hero-section-french h1 {
  font-size: 1.4rem;
  line-height: 30px;
}
.kano-sws-store #myCarousel h2 {
  font-size: 1.1rem;
}
.kano-sws-store #myCarousel .carousel-inner.hero-section.hero-section-french h2 {
  font-size: 1rem;
  line-height: normal;
}
.kano-sws-store #myCarousel .image-content {
  max-width: 350px;
}
.kano-sws-store #myCarousel .hero-content .image-content img {
  box-shadow: none;
  max-height: 255px;
}
.carousel-indicators {
  margin-bottom: 10px;
}
.text-content.text-content-french .kano-sws-store #myCarousel .carousel-btn{
padding: 0.7em 2em;
}
.kano-sws-store #myCarousel h1{
  margin-top: 0;
}
.kano-sws-store #myCarousel .image-content{
  margin: 0;
}
/**************************************     BUTTONS     ************************************************/
.kano-flex-container .kano-item.side-ad{
  display: none;
  visibility: hidden;
}
.kano-item:not(.side-ad) {
  height: 8em;
}
.kano-flex-container {
  grid-template-columns: repeat(2, 1fr);
}

/* ********* END BUTTONS ********* */
/**************************************     ABOUT PAGE     ************************************************/
.row-fluid.about-kano-container h2 {
    text-align: left;
}
.kano-about .about-kano-hero h1{
  font-size: 3rem;
}
}
@media (min-width: 601px) and (max-width:650px) {
.kano-sws-store #myCarousel .image-content{
width: 240px;
}
}
@media (min-width: 481px) and (max-width: 676px) {
.category-blue-box{
  padding: 2rem 1rem;
}
}
@media (max-width: 600px) {
/**************************************     HEADER     ************************************************/
.kano-mobile .span3 {
  width: 60%;
}
.kano-mobile .input-append input{
  font-size: 12px !important;
}
.kano-mobile .mobile-search .input-append, .kano-mobile .input-append .btn{
  height: 30px;
}
.kano-mobile .input-append input#ProductSearch {
  padding: 3px 10px 7px;
}
.kanomax-search-icon {
  margin: -4px 1px 0 0;
}    
/**************************************     HERO     ************************************************/
.row-fluid.kano-sws-store {
  padding-top: 4px;
}
.kano-sws-store #myCarousel .carousel-inner.hero-section, 
.kano-sws-store #myCarousel .carousel-inner.hero-section-french {
  height: 448px;
  margin-top: 0px;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.kano-sws-store #myCarousel .hero-section, 
.kano-sws-store #myCarousel .image-content {
  order: -1;
  padding: 0em;
}
.kano-sws-store #myCarousel .hero-content {
  max-width: 600px;
  width: 95vw;
  height: 378px;
  margin: 10px auto;
  justify-items: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  padding: 0;
}
.kano-sws-store #myCarousel .text-content {
  padding: 0 1em;
  width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  max-width: 480px;
  margin-bottom: 1em;
  height: auto;
}
.kano-sws-store #myCarousel h1 {
  font-size: 1.4rem;
  line-height: 26px;
  margin-top: 1rem;
  text-align: center;
}
.kano-sws-store #myCarousel h2 {
    text-align: center;
}
.kano-sws-store #myCarousel .carousel-btn{
  margin-top: 1.5em;
}
.kano-sws-store #myCarousel .hero-section.hero-section-french .image-content{
  max-width: 276px;
}
.kano-sws-store #myCarousel .hero-content .image-content img {
  box-shadow: none;
  max-height: 200px;
  width: 100%;
  height: 100%;
}
.kano-sws-store #myCarousel .carousel-btn {
  margin-bottom: inherit;
}

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

}

@media (max-width: 480px) {
/**************************************     HEADER     ************************************************/
.kano-mobile .logo-wrapper{
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 0.8em;
}
.kano-mobile .span3 {
  width: 60%;
  margin-top: 0.5em;
}
.kano-mobile .span9 {
  width: 100%;
}
/**************************************     SEARCH BAR     ************************************************/

.kano-mobile .mobile-search .input-append {
  height: 30px;
}
.kano-mobile .input-append input#ProductSearch {
  padding: 4px 10px;
  font-size: 12px !important;
}
.kano-mobile .input-append .btn {
  height: 28px;
}
/**************************************     NAV     ************************************************/
.kano-mobile #SWS-mobile-nav-button-adjust > li > a{
  font-weight: 600;
}
.kano-mobile #SWS-mobile-nav-button-adjust > li.nav-item.kano-products, .kano-mobile #SWS-mobile-nav-button-adjust > li.nav-item.kano-about {
  flex: auto;
}
.kano-mobile #SWS-mobile-nav-button-adjust > li.nav-item.kano-home {
  flex: 0 0 44px;
}
.kanomax-search-icon {
  margin: -6px 3px 0 0;
}
/**************************************     HERO     ************************************************/
.carousel-top.kano-sws-store {
  padding-bottom: 0em;
}
.kano-sws-store #myCarousel .hero-content {
  max-width: 480px;
}
.kano-sws-store #myCarousel h1 {
  font-size: 1.1rem;
  padding-left: 10px;
  padding-right: 10px;
  line-height: 22px;
}
.kano-sws-store #myCarousel h2 {
  font-size: 0.9rem;
  padding: 0 1em;
}
.kano-sws-store #myCarousel .text-content,
.kano-sws-store #myCarousel .text-content.text-content-french {
  max-width: 400px;
}
.kano-sws-store #myCarousel .image-content {
    margin: 15px auto;
}
/**************************************     BUTTONS     ************************************************/
.kano-flex-container {
  grid-template-columns: repeat(1, 1fr);
}

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

}
@media (min-width:400px) and (max-width: 480px) {
.kano-sws-store #myCarousel .carousel-inner.hero-section-french {
    height: 474px;
  }
}
@media (max-width: 399px) {
/**************************************     HEADER     ************************************************/
.kano-mobile .logo-wrapper {
  gap: 8px;
  margin-bottom: 0;
}
.kano-mobile img.brand.mobile-logo {
  width: 60%;
}
.kano-mobile .span9 {
  margin-bottom: 10px;
  width: 100%;
}
.kano-mobile .span3 {
  width: 100%;
}
/**************************************     NAV     ************************************************/
.kano-mobile #SWS-mobile-nav-button-adjust > li.nav-item.kano-home {
  flex: 0 0 40px;
}
.kano-mobile #SWS-mobile-nav-button-adjust > li > a, 
.kano-mobile #SWS-mobile-nav-button-adjust > li > .nav-home-icon {
  font-size: 0.85rem;
}
.nav-home-icon-svg {
  width: auto;
  height: 15px;
}
/**************************************     HERO     ************************************************/
.kano-sws-store #myCarousel h2,
.kano-sws-store #myCarousel p {
  padding: 0 10px;
}
.kano-sws-store #myCarousel .image-content {
  max-width: 270px;
}
/**************************************     BUTTONS     ************************************************/
.sws-kano-buttons .kano-grid-container {
  grid-template-columns: repeat(1, 1fr);
}
.kano-application-title .application-title {
  font-size: 1rem;
  width: 10em;
}
.sws-kano-buttons.sws-kano-buttons-fr .kano-application-title .application-title {
  width: 11em;
}
.kano-sws-store #myCarousel .carousel-inner.hero-section.hero-section-french h1 {
  font-size: 1.1rem;
  line-height: 24px;
}
.kano-sws-store #myCarousel .text-content.text-content-french{
  padding: 0;
}
.kano-sws-store #myCarousel .image-content.image-content-french {
  margin: 10px auto;
}
/* ********* END BUTTONS ********* */
/**************************************     ABOUT PAGE     ************************************************/
.kano-about .about-kano-hero {
  height: 150px;
}
.kano-about .row-fluid p, .row-fluid.about-kano-main-content p, .row-fluid.about-kano-hero.about-us-hero.kano-about-us-content .about-hero-content p {
  font-size: 0.95rem;
}
}
@media (max-width: 350px) {
.kano-sws-store #myCarousel .carousel-inner.hero-section, .kano-sws-store #myCarousel .carousel-inner.hero-section-french{
height: 470px;
}
}
@media (max-width: 329px) {
/**************************************     HEADER     ************************************************/
.navbar-inner.kano-mobile {
  padding-bottom: 0px;
}
.kano-mobile img.brand.mobile-logo {
  width: 65%;
}
.kano-mobile .span9 {
  margin-bottom: 5px;
}
.kano-mobile .sws-mobile-header-nav .nav > li > a, li.accordion-inner.kano-mobile-first-dropdown.nav.mshow.open ul.dropdown-menu a{
  font-size: 0.8em;
}
/**************************************     SEARCH BAR     ************************************************/
.kano-mobile .mobile-search .input-append {
  height: 25px;
}
.kano-mobile .input-append input#ProductSearch {
  padding: 2.5px 10px;
}
.kano-mobile .input-append .btn {
  height: 25px;
  padding: 0px;
}
.kanomax-search-icon {
  margin: -2px 3px 0 0;
}
/**************************************     HERO     ************************************************/
.kano-sws-store #myCarousel .carousel-inner.hero-section-french h2 br{
  display: none;
}
/**************************************     BUTTONS     ************************************************/

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

}