:root {
  --brand-oakton-primary-color: #007AC2; /* primary blue color */
  --brand-oakton-secondary-color: #163963; /* secondary dark blue color */
  --brand-oakton-third-color: #DAECF6; /* third bright blue color */
  --white-oakton-color: #FFFFFF; /* white */ 
  --body-oakton-font: "OpenSans", "Roboto", Arial, Verdana, sans-serif;
  --body-hero-title-oakton-font: "Montserrat", "Open Sans", "Roboto", sans-serif;/* header and title font family */
}
html {
  font-size: 16px; /* Base size */
}
html {
  -webkit-font-smoothing: antialiased; /* For WebKit-based browsers */
  -moz-osx-font-smoothing: grayscale; /* For Firefox on macOS */
}
@font-face {
  font-family: "Montserrat";
  src: url('fonts/Montserrat-Regular.woff2') format('woff2'),
       url('fonts/Montserrat-Regular.woff') format('woff');
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src: url('fonts/OpenSans-Regular.woff2') format('woff2'),
       url('fonts/OpenSans-Regular.woff') format('woff');
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url('fonts/Roboto-Regular.woff2') format('woff2'),
       url('fonts/Roboto-Regular.woff') format('woff');
  font-display: swap;
}
/**************************************     HEADER     ************************************************/

.oakton-header {
  width: 100vw !important;
  position: relative;
  margin-left: -50vw;
  left: 50%;
  box-sizing: border-box;
  padding: 1.5em 0;
  background-image: linear-gradient(
    to bottom, var(--white-oakton-color) 0%, /* Start with black */ 
    var(--white-oakton-color) 96%, /* Black ends at 96% */ 
    var(--white-oakton-color) 96%, /* Yellow starts at 96% */ 
    var(--white-oakton-color) 100% /* Red ends at 100% */);
    border-bottom: 4px solid;
    border-image: linear-gradient(to right, var(--brand-oakton-primary-color), var(--brand-oakton-secondary-color)) 1;
}
.oakton-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;
}
.oakton-header .span3.logo-oakton-sws img.brandlogo{
  width: 100%;
  margin-left: 0px;
}
.oakton-header .row-fluid .navbar.navbar-inner-oakton-subsite {
  float: right;
}
.oakton-header .subheading-nav {
  float: right;
  margin-top: 10px;
}
.oakton-header .row-fluid .navbar .nav-collapse.sws.collapse {
  margin-top: 5px !important;
  width: 53rem;
}

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

.navbar .nav.navbar-oakton-subsite {
  margin-right: 0;
  width: 95%;
  font-family: var(--body-hero-title-oakton-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: space-between;  /* Distribute items */
  align-items: center;             /* Align vertically */
}

.navbar .nav.navbar-oakton-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-oakton-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-oakton-subsite-french .nav.navbar-oakton-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-oakton-subsite .nav > li > a {
  text-shadow: none;
  color: var(--brand-oakton-primary-color);
  font-weight: 700;
  display: block;
  font-size: 18px;
  white-space: nowrap;
  font-family: var(--body-hero-title-oakton-font);
}
.navbar.navbar-inner-oakton-subsite .nav > li > a:hover {
  color: var(--brand-oakton-secondary-color);
}
/* home button */
.navbar.navbar-inner-oakton-subsite .nav > :first-child > a{
  padding: 15px 20px !important;
}

.navbar.navbar-inner-oakton-subsite .nav > li > a > img{
  width: 17px;
  height: auto;
  margin-bottom: 3px;
}

.navbar .nav.navbar-oakton-subsite > li:last-child {
  flex-grow: 2; /* Allow more space for the search bar */
  max-width: 270px; /* Constrain the search bar width */
}

.navbar.navbar-inner-oakton-subsite-french .nav.navbar-oakton-subsite > li:last-child {
  flex-grow: 1;
  max-width: 255px;
}

.dropdown-menu.oakton-whole-cateogies-list-menu{
  width: 600px;
  left: -90px !important;
  border-radius: 3px;
  background-color: var(--white-oakton-color);
  font-family: var(--body-oakton-font);
  opacity: 1;
  border: 1px solid var(--brand-oakton-primary-color);
}

.navbar.navbar-inner-oakton-subsite.navbar-inner-oakton-subsite-french.mhide .dropdown-menu.oakton-whole-cateogies-list-menu{
  width:600px;
}
.navbar .nav>li>.oakton-whole-cateogies-list-menu.dropdown-menu:before, 
.navbar .nav>li>.oakton-whole-cateogies-list-menu.dropdown-menu:after {
  display: none;
}
.dropdown-menu.oakton-whole-cateogies-list-menu li a {
  white-space: break-spaces;
  padding: 5px 21px !important;
  line-height: 28px;
  font-family: var(--body-oakton-font);
  font-weight: 600;
  font-size: 16px;
  color: var(--brand-oakton-primary-color);
  text-align: left;
  position: relative;
  display: block;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  
}
.dropdown-menu.oakton-whole-cateogies-list-menu .dropdown-header a:hover {
  color: var(--brand-oakton-primary-color) !important;
}

.oakton-whole-cateogies-list-menu ul {
  list-style: none;
  margin-left: 0;
  margin-top: 5px;
  margin-bottom: 5px;
  padding-left: 18px;
  box-sizing: border-box;
  padding-right: 18px;
  width: 50%;
  float: left;
}
.oakton-whole-cateogies-list-menu ul:first-child{
  width: 50%;
}
.oakton-whole-cateogies-list-menu ul:last-child{
  padding-left: 20px;
}
.oakton-whole-cateogies-list-menu ul:nth-child(2) {
  border-left: 1px solid transparent;
  border-image: linear-gradient(180deg, #007AC2, #163963);
  border-image-slice: 1;
  padding: 0px 20px;
  display: inline-block;
}
.oakton-whole-cateogies-list-menu ul:last-child li {
  border-right: none;
}

.navbar-oakton-subsite .dropdown-menu li.dropdown-header>a
{
  font-weight: 700 !important;
  color: var(--brand-oakton-secondary-color);
  text-transform: uppercase;
  margin-top: 5px;
  border-top: 1px solid transparent;
  text-decoration: none;
  border-image: linear-gradient(90deg, #007AC2, #163963);
  border-image-slice: 1;
  padding: 10px 20px;
  display: block;
}
.navbar-oakton-subsite .dropdown-menu li.dropdown-header:first-child, 
.navbar-oakton-subsite .dropdown-menu li.dropdown-header:first-child>a {
  border-top: none;
  margin-top: 5px;
}
ul.dropdown-menu.oakton-whole-cateogies-list-menu:hover{
  background-color: var(--white-oakton-color);
}

/* NAV HOVER COLOURS */
.navbar.navbar-inner-oakton-subsite .nav > li > a:active,
.navbar .nav.navbar-oakton-subsite li.dropdown.open > .dropdown-toggle,
.navbar .nav.navbar-oakton-subsite li.dropdown.active > .dropdown-toggle,
.navbar .nav.navbar-oakton-subsite li.dropdown.open.active > .dropdown-toggle {
  color: var(--brand-oakton-secondary-color);
  background-color: transparent;
}
.navbar-oakton-subsite .hover-underline-animation a {
  padding: 16px 7px 16px !important;
}
.hover-underline-animation {
  display: inline-block;
  position: relative;
  color: var(--brand-oakton-primary-color);
  text-decoration: none;
}
/* Underline Effect */
.hover-underline-animation::before {
  display: block;
  content: ""; /* Add content after the element */
  position: absolute; /* Position absolute for pseudo-element */
  width: 100%;
  transform: scaleX(0);
  height: 4px; /* Height of the underline */
  bottom: 5px;
  left: 0;
  background: linear-gradient(to right, #007AC2, #163963); /* Gradient Underline */
  transform-origin: left; /* Expands from left to right */
  transition: transform 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}
.active,
.hover-underline-animation:hover::before {
  transform: scaleX(1); /* Scale the underline on hover */
  visibility: visible;
}
.active,
.hover-underline-animation {
  position: relative;
}
/*dropdown*/
.navbar-oakton-subsite .dropdown-menu li > a:hover,
.navbar-oakton-subsite .dropdown-menu li > a:focus,
.navbar-oakton-subsite .dropdown-submenu:hover > a,
.navbar-oakton-subsite .dropdown-submenu:focus > a,
.navbar-oakton-subsite .dropdown-menu li > a:active,
.navbar-oakton-subsite .dropdown-submenu:active > a{
  background-color:var(--white-oakton-color) !important;
  text-decoration: none;
  background-image: none;
  background: linear-gradient(90deg, #007AC2, #163963);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/**************************************     SEARCH BAR     ************************************************/
.oakton-search form#ProductDisplayForm button.btn.btn-default i.icon-search,
.oakton-mobile .mobile-search button .icon-search {
  margin-top: 1px !important;
  background-image: url(/images/pages/oakton/oakton-search-btn.svg);
}
.oakton-search .btn{
  padding: 6px 6px;
}
/* Style for the circular button */
.oakton-search form#ProductDisplayForm button.btn.btn-default {
  background-color: var(--brand-oakton-primary-color);
  border-radius: 50%;
  border: none;
  width: 36px;
  height: 36px !important;
  position: absolute; /* Anchor the button */
  right: 2px; /* 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 */
.oakton-search.input-append {
  margin-left: auto;
  margin-right: 0;
  position: absolute;
  right: 0;
  transform: translate(0, -50%);
  background: white;
  height: 40px;
  border-radius: 40px;
  padding: 0;
  width: 35%; /* Default width */
  transform-origin: right;
  transition: width 0.4s ease, background-color 0.4s ease, right 0.4s ease;
  border: 1.5px solid var(--brand-oakton-primary-color);
}
/* Search Bar - Expand on Hover/Focus */
.oakton-search.input-append:hover,
.oakton-search.input-append:focus-within {
  width: 38%; /* Expanded width */
  background-color: var(--white-oakton-color);
}
/* Input field styling */
.oakton-search input#ProductSearch.appendInputButton {
  border-radius: 40px;
  color: var(--brand-oakton-primary-color);
  border: none;
  background-color: transparent;
  padding: 7px 32px 8px 12px;
  width: 100% !important;
  margin-right: 0px; /* Leave space for the button */
  margin-left: 0px;
  font-weight: 500;
}
/* Change Button Color & Move Left when Hovering */
.oakton-search.input-append:hover form#ProductDisplayForm button.btn.btn-default,
.oakton-search.input-append:focus-within form#ProductDisplayForm button.btn.btn-default {
  background-color: #163963; /* Darker blue */
}

/* Input Field */
.oakton-search input#ProductSearch.appendInputButton {
  border-radius: 40px;
  color: var(--brand-oakton-secondary-color);
  border: none;
  background-color: transparent;
  padding: 7px 32px 8px 12px;
  width: 100% !important;
  margin-right: 0px;
  margin-left: 0px;
  font-weight: 500;
}
/* Input focus styling */
.oakton-search input.refine-search.appendInputButton:focus {
  color: var(--brand-oakton-primary-color);
  box-shadow: none;
  border-color: var(--brand-oakton-primary-color);
}
.oakton-search input.refine-search.appendInputButton::-webkit-input-placeholder {
  /* Chrome, Opera, Safari */
  color: var(--brand-oakton-primary-color);
}
.oakton-search input.refine-search.appendInputButton:-moz-placeholder {
  /* Firefox 4-18 */
  color: var(--brand-oakton-primary-color);
}
.oakton-search input.refine-search.appendInputButton::-moz-placeholder {
  /* Firefox 19+ */
  color: var(--brand-oakton-primary-color);
}
.oakton-search input.refine-search.appendInputButton:-ms-input-placeholder {
  /* IE 10-11 */
  color: var(--brand-oakton-primary-color);
}
.oakton-search input.refine-search.appendInputButton::-ms-input-placeholder {
  /* MS Edge */
  color: var(--brand-oakton-primary-color);
}
.oakton-search input.refine-search.appendInputButton::placeholder {
  /* your styles */
  color: var(--brand-oakton-primary-color);
}

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


/**************************************     HEROS     ************************************************/
.carousel-top.oakton-sws-store {
  margin-top: 0px;
  width: 100vw !important;
  position: relative;
  margin-left: -50vw;
  left: 50%;
  padding-bottom: 2em;
}
.oakton-sws-store #myCarousel .hero-section {
  width: 100%;
  background-image: url(/images/pages/oakton/oakton-background-opt.webp);
  background-size: cover;
  background-position:  center;
  position: relative;
  display: flex;
  justify-content: center;
  padding-bottom: 2em;
}
/* Set a fixed height for the carousel inner to prevent jumping */
.oakton-sws-store #myCarousel .carousel-inner.hero-section,
.oakton-sws-store #myCarousel .carousel-inner.hero-section-french{
  height: 400px;
  margin-top: -15px;
}
.oakton-sws-store #myCarousel .hero-content {
  max-width: 1100px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  padding: 15px 20px;
  height: 100%;
  margin: 0 auto;
}
.oakton-sws-store #myCarousel .text-content {
  padding: 60px 10px 60px 20px;
  width: 100%;
}
.oakton-sws-store #myCarousel .image-content{
  width: 100%;
  text-align: center;
}
.oakton-sws-store #myCarousel .image-content img {
  object-fit: contain;
  height: auto;
  max-width: 100%;
  max-height: 400px;
}
.oakton-sws-store #myCarousel .hero-content.oakton-slide1 .image-content img {
  padding-top: 1em;
}
.carousel-control-new {
  color: white;
  background-color: var(--brand-oakton-primary-color);
  border: 1px solid var(--brand-oakton-primary-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 */
  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-oakton-secondary-color);
}

/* Other Carousel Styles */
.oakton-sws-store #myCarousel h1 {
  font-size: 39px;
  margin-bottom: 0px;
  color: var(--brand-oakton-primary-color);
  line-height: 1.2;
  letter-spacing: 0.5px;
  font-weight: 700;
  font-family: var(--body-hero-title-oakton-font);
  background: linear-gradient(90deg, #007AC2, #163963);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.oakton-sws-store #myCarousel .carousel-inner.hero-section-french h1{
  font-size: 40px;
}
.oakton-sws-store #myCarousel h2 {
  color: var(--brand-oakton-secondary-color);
  font-weight: 400;
  font-size: 30px;
  font-family: var(--body-oakton-font);
  line-height: 1.2;
}
.oakton-sws-store #myCarousel .carousel-btn {
  color: var(--white-oakton-color);
  background: -moz-linear-gradient(90deg, #007AC2 0%, #163963 100%);
  background: -webkit-linear-gradient(90deg, #007AC2 0%, #163963 100%);
  background: linear-gradient(90deg, #007AC2 0%, #163963 100%);
  border-radius: 8px;
  margin-top: 0px;
  font-size: 18px;
  padding: 14px 48px;
  display: inline-flex;
  font-family: var(--body-hero-title-oakton-font);
  font-weight: 600;
  border: none;
  text-decoration: none;
  transition: background 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  box-shadow: 4px 4px 10px #007AC238; /* shadow */
}

.oakton-sws-store #myCarousel .carousel-btn:hover {
  background: -moz-linear-gradient(90deg,  #163963 0%, #007AC2 100%);
  background: -webkit-linear-gradient(90deg,  #163963 0%, #007AC2 100%);
  background: linear-gradient(90deg,  #163963 0%, #007AC2 100%);
  box-shadow: 6px 6px 10px #16396345; /* shadow on hover */
}


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

/**************************************     BUTTONS     ************************************************/
.sws-oakton-buttons .oakton-flex-container {
  display: flex;
  display: -ms-grid; /* IE10+ Fallback */
  /* Explicit columns for IE */
  -ms-grid-columns: 1fr 1fr 1fr;
}
.sws-oakton-buttons .oakton-grid-container {
  display: grid;
  display: -ms-grid; /* For IE10+ */
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5em 1em;
  margin-bottom: 3%;
  margin-top: -2em;
}

.sws-oakton-buttons .oakton-item {
  position: relative; /* Required for the pseudo-element */
  display: grid;
  display: -ms-grid; /* IE10+ Fallback */
  grid-template-columns: repeat(2, 1fr);
  border-radius: 9px;
  overflow: hidden;
  gap: 5px;
  -ms-grid-columns: 1fr 1fr; /* Explicit columns for IE */
  align-items: center;
  justify-items: start;
  background-image: linear-gradient(90deg, white 0%, white 50%, #007ac22b 50%);
  padding: 8px; /* Add padding to avoid content touching the border */
}

/* Gradient Border */
.sws-oakton-buttons .oakton-item::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: 10px;
  padding: 1px 1px 10px 1px; /* Border thickness */
  background: linear-gradient(90deg, #007AC2, #163963);
  
  /* Mask to keep the inside content intact */
  -webkit-mask: linear-gradient(90deg, #007AC2, #163963) content-box, linear-gradient(90deg, #007AC2, #163963);
  mask: linear-gradient(90deg, #007AC2, #163963) content-box, linear-gradient(90deg, #007AC2, #163963);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  transition: background 0.3s ease-in-out;
}
.sws-oakton-buttons .oakton-item:hover::before {
  background: linear-gradient(90deg, #163963, #007AC2); /* New gradient on hover */
}

.sws-oakton-buttons .oakton-application-title{
    padding: 0px 10px 0px 0px;
}
.sws-oakton-buttons .oakton-application-title .application-title{
  font-family: var(--body-oakton-font);
  font-size: 16px;
  font-weight: 700;
  color: var(--brand-oakton-primary-color);
  text-align: left;
  line-height: 1.2;
  padding-left: 10px;
  padding-right: 0px;
}
.sws-oakton-buttons .oakton-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.oakton-item:not(.side-ad){
    height: 9em;
}

.oakton-item img {
  max-width: 70%; /* Ensure the image fits inside its parent */
  height: auto; /* Maintain the image's aspect ratio */
  padding-left: 0; /* Remove unnecessary padding */
  padding-bottom: 7px; /* Remove unnecessary padding */
  margin: 0 auto;
  text-align: center;
  overflow: hidden; 
  width: 100%;
  height: auto;
  display: flex;
}
@supports (gap: 1em) {
  .sws-oakton-buttons .oakton-grid-container > * {
    margin: 0; /* Reset when gap is supported */
  }
}

/**************************************     SIDE AD     ************************************************/
.oakton-item.side-ad{
  background-image: linear-gradient(#007ac200, #007ac22b), url(/images/pages/oakton/oakton-background-opt.webp);
  grid-column-start: 3;
  grid-column-end: 4;
  grid-row-start: 1;
  grid-row-end: 3;
  padding: 5px 0px 0px;
  place-items: center;
  text-align: center;
  max-height: 300px;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  flex-direction: column;
  flex-wrap: nowrap;
}
/* Gradient Border */
.oakton-item.side-ad::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 10px;
  padding: 0px;  
  /* Mask to keep the inside content intact */
  -webkit-mask: linear-gradient(white, white) content-box, linear-gradient(white, white);
  mask: linear-gradient(white, white) content-box, linear-gradient(white, white);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
.oakton-item.side-ad .oakton-side-ad-title p.application-title{
  line-height: 1.2;
    color: var(--brand-oakton-secondary-color);
    font-size: 22px;
    font-weight: 700;
    margin-top: 9px;
    font-family: var(--body-hero-title-oakton-font);
    padding: 0px 5px;
}
.oakton-item.side-ad .oakton-side-ad-subtitle p.application-subtitle {
  font-size: 20px;
  font-weight: 600;
  color: var(--brand-oakton-secondary-color);
  line-height: 1.2;
  font-family: var(--body-oakton-font);
  padding: 0 16px;
}
.sws-oakton-buttons-fr .oakton-item.side-ad .oakton-side-ad-title p.application-title{
  line-height: 1.2;
    color: var(--brand-oakton-secondary-color);
    font-size: 20px;
    font-weight: 700;
    margin-top: 9px;
    font-family: var(--body-hero-title-oakton-font);
}
.sws-oakton-buttons-fr .oakton-item.side-ad .oakton-side-ad-subtitle p.application-subtitle {
  font-size: 18px;
  font-weight: 600;
  color: var(--brand-oakton-secondary-color);
  line-height: 1.2;
  font-family: var(--body-oakton-font);
  padding: 0 16px;
}
.oakton-item.side-ad .oakton-side-ad-img a{
  overflow: hidden; /* Prevents overflow */
  display: inline-block;
}
.oakton-item.side-ad .oakton-side-ad-img a img{
  height: auto;
  display: block;
  width: 100%;
  max-width: 100%;
}
.sws-oakton-buttons .side-ad-btn {
  color: var(--white-oakton-color);
  background: -moz-linear-gradient(90deg, #007AC2 0%, #163963 100%);
  background: -webkit-linear-gradient(90deg, #007AC2 0%, #163963 100%);
  background: linear-gradient(90deg, #007AC2 0%, #163963 100%);
  border-radius: 8px;
  margin-top: 0px;
  font-size: 16px;
  padding: 10px 30px;
  display: inline-flex;
  font-family: var(--body-hero-title-oakton-font);
  font-weight: 600;
  border: none;
  text-decoration: none;
  transition: background 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  box-shadow: 4px 4px 10px #007AC238;
}

.sws-oakton-buttons .side-ad-btn:hover {
  background: -moz-linear-gradient(90deg,  #163963 0%, #007AC2 100%);
  background: -webkit-linear-gradient(90deg,  #163963 0%, #007AC2 100%);
  background: linear-gradient(90deg,  #163963 0%, #007AC2 100%);
}

.row-fluid .sws-oakton-buttons.sws-oakton-buttons-fr .oakton-item.side-ad .oakton-side-ad-subtitle p.application-sub-subtitle{
  padding: 0px 60px 0px 0px;
  line-height: normal;
}
.oakton-item:hover:not(.side-ad){
  overflow: hidden;
  transition: background 0.3s ease-in-out, transform 0.15s ease-in-out;
  box-shadow: none; /* Removes the shadow */
}
.oakton-item:hover:not(.side-ad) img {
  transform: scale(1.02); /* Enlarges the image by 2% */
  transition: transform 0.15s ease-in-out;
}

/**************************************     ABOUT US     ************************************************/
.oakton-hero-container{
  margin-top: 0px;
  width: 100vw !important;
  position: relative;
  margin-left: -50vw;
  left: 50%;
}
.oakton-about .about-oakton-hero {
  background-image: url(/images/pages/oakton/oakton-background.webp);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  height: 300px;
  margin-bottom: 0px;
  width: 100%;
  background-position: center;
  display: flex;
  align-items: center;
  margin-top: -15px;
  z-index: 1;
  justify-content: center;
}
.row-fluid.about-oakton-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.5em;
  font-family: var(--body-hero-title-oakton-font);
  background: linear-gradient(90deg, #007AC2, #163963);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}
.about-oakton {
  margin-top: 0px;
  margin-bottom: 10px;
  width: 100vw !important;
  position: relative;
  margin-left: -50vw;
  left: 50%;
  max-height: 300px;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative; /* Ensure the pseudo-element is positioned inside */
  background: linear-gradient(90deg, #007AC2, #163963);
  overflow: hidden; /* Prevents any unwanted overflow */
}
.about-oakton::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url(/images/pages/oakton/about-oakton-bgr-upd.webp) no-repeat center;
  background-size: cover;
  background-position: 50% 10%;
  opacity: 0.3; /* Adjust transparency */
  z-index: 0; /* Keeps it behind the content */
  display: block;
}
/* Ensure content is above the background */
.about-oakton > * {
  position: relative;
  z-index: 1;
}
.row-fluid.about-oakton-container p {
  color: white;
  font-size: 16px;
  line-height: normal;
  font-family: var(--body-oakton-font);
  font-weight: 600;
  margin: 0 auto;
  text-align: center;
  float: none;
  padding: 0 0em;
}
.row-fluid.about-oakton-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-oakton-container {
  margin: 0 auto;
  max-width: 1095px;
  padding: 1rem 0.5rem;
}
.row-fluid.about-oakton-main-content h2 {
  color: var(--brand-oakton-primary-color);
  font-weight: 700;
  text-align: left;
  font-size: 25px;
  line-height: normal;
  padding-top: 0.1em;
  margin-bottom: 5px;
  font-family: var(--body-hero-title-oakton-font);
  background: linear-gradient(90deg, #007AC2, #163963);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}
.row-fluid.about-oakton-main-content .span12 h2 {
margin-top: 0px;
}
.row-fluid.about-oakton-main-content p {
  text-align: left;
  font-size: 16px;
  padding-bottom: 1em;
  font-family: var(--body-oakton-font);
  color: var(--brand-oakton-secondary-color);
}

/* --- FRENCH --- */
.french-about-us .row-fluid.about-oakton-hero h1{
    font-size: 68px;
}

@media (min-width: 1200px) {

  }
@media (max-width: 1199px) {
/**************************************     HEADER     ************************************************/
.oakton-header > .row-fluid {
  max-width: 914px;
  margin: 0 auto;
  padding: 0px;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: space-around;
}
.oakton-header .span9.subheading-nav {
  width: 43rem !important;
  float: right;
  margin-top: 0px;
}
/**************************************     NAV     ************************************************/
.oakton-header .row-fluid .navbar .nav-collapse.sws.collapse {
  margin-top: 10px !important;
  width: 43rem;
}
.navbar .nav.navbar-oakton-subsite {
  width: 100%;
  display: -moz-box;
  display: -ms-flexbox;
}

.navbar-oakton-subsite .hover-underline-animation a {
  padding: 16px 6px 16px !important;
}

.navbar.navbar-inner-oakton-subsite-french .nav.navbar-oakton-subsite > li:last-child {
  flex-grow: 1;
  max-width: 215px;
}
.dropdown-menu.oakton-whole-cateogies-list-menu {
  left: -60px !important;
}
/* ********* END NAV ********* */
    
/**************************************     HEROS     ************************************************/
.oakton-sws-store #myCarousel .hero-content {
  max-width: 1100px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  padding: 0.938em 0em;
  height: 100%;
  margin: 0 auto;
  justify-items: center;
}
.oakton-sws-store #myCarousel .text-content {
  padding: 3.75em 0em 3.75em 9em;
}
.carousel-control-new.left {
  left: 0.75rem; /* Position the left arrow */
}
.carousel-control-new.right {
  right: 0.75rem; /* Position the right arrow */
}
/**************************************     BUTTONS     ************************************************/
.navac-item.side-ad {
  height: 294px;
}
.sws-oakton-buttons .oakton-grid-container {
    gap: 1.5em 1em;
}
.oakton-item img {
  max-width: 80%;
  height: auto;
  padding-left: 0;
  display: block;
  margin: 0 auto;
}
/**************************************     SIDE AD     ************************************************/
.oakton-item.side-ad .oakton-side-ad-title p.application-title {
  font-size: 20px;
}
.oakton-item.side-ad .oakton-side-ad-subtitle p.application-subtitle {
  font-size: 18px;
}
.sws-oakton-buttons-fr .oakton-item.side-ad .oakton-side-ad-title p.application-title{
    font-size: 18px;
}
.sws-oakton-buttons-fr .oakton-item.side-ad .oakton-side-ad-subtitle p.application-subtitle {
  font-size: 16px;
}
/**************************************     ABOUT PAGE     ************************************************/
.row-fluid.about-oakton-container {
    width: 82vw;
}
.row-fluid.about-oakton-container {
  padding: 40px 10px;
}
p.about-us-application-title-p {
    line-height: 26px;
    padding: 5px 28px 12px;
}
.about-third-col p.about-us-application-title-p{
    padding: 5px 34px 12px;
}   
/* ********* END About Page ********* */
  
}

@media (max-width: 979px) {
  .row-fluid.oakton-sws-store{
    padding-top: 9px;
  }
/**************************************     HEADER     ************************************************/
.navbar-inner.oakton-mobile {
  font-family: var(--body-oakton-font);
  background-color: var(--white-oakton-color);
  background: #ffffff;
  padding-top: 7px;
  padding-bottom: 7px;
}
 .oakton-mobile .span3 {
  width: 30%;
  float: left;
  margin-left: 0px;
  margin-bottom: 10px;
}
.navbar .oakton-mobile .span9 {
  width: auto;
  margin-left: 0;
  overflow: hidden;
  float: none;
  margin-top: 0px;
}
/**************************************     SEARCH BAR     ************************************************/
.oakton-mobile .navbar-search {
  padding: 0px !important;
  background-color: white;
  height: 40px;
  border-radius: 40px;
  border: 1.5px solid var(--brand-oakton-primary-color);
  position: relative;
  float: left;
  margin-top: 10px;
  margin-bottom: 0 !important;
  max-width: 100%;
  margin-left: 0;
  padding-left: 0 !important;
  padding-top: 0px !important;
  margin-right: 0;
}
 .oakton-mobile img.brand.mobile-logo {
  width: 100%;
  padding: 0px 0px 0px 0px;
}
.oakton-mobile .input-append input {
  background: transparent;
  padding: 10px 14px;
  width: 94%;
  border-radius: 40px;
  border: 1px solid var(--brand-oakton-primary-color);
  font-size: 14px !important;
}
.oakton-mobile .input-append input.refine-search:focus:invalid:focus {
  color: var(--brand-oakton-primary-color);
  border-color: 1px solid var(--brand-oakton-primary-color) !important;
  outline: 0;
  outline: thin dotted \9;
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
  box-shadow: none !important;
}
.oakton-mobile .input-append input[type="text"]:focus{
  box-shadow: none !important;
}
.oakton-mobile .input-append .btn {
  border: none;
  padding: 6px;
  background-color: var(--brand-oakton-primary-color);
  height: 36px;
  border-radius: 40px;
  width: 36px;
  transform: translateY(0%);
  margin-left: -40px;
  margin-top: 3px;
} 

/**************************************     NAV     ************************************************/
/****** English ******/
li.home-btn.active-animation.dropdown {
  width: 14%;
}
  .oakton-mobile #SWS-mobile-first-nav {
    width: 42%;
    border-left: 1px solid var(--brand-oakton-primary-color);
    border-right: 1px solid var(--brand-oakton-primary-color);
}
  .oakton-mobile #SWS-mobile-third-nav {
    width: 36%;
}
  .oakton-mobile #SWS-mobile-hamburger-nav {
    width: 7.15%;
    border-left: 1px solid var(--brand-oakton-primary-color);
}
  /****** End English ******/

/**************************************     HUMBURGER     ************************************************/
.oakton-mobile .sws-mobile-header-nav .btn-navbar {
  background-color: var( --brand-oakton-primary-color) !important;
  border-image: initial !important;
  outline: none !important;
  margin: 0px;
  padding: 5px 0px;
  width: 100%;
  float: none;
  box-sizing: border-box;
  border-radius: 0;
  border: none;
  border-right: 1px solid var( --brand-oakton-primary-color);
}
.navbar .oakton-mobile .btn-navbar .icon-bar,
.navbar .oakton-mobile .btn-navbar:hover .icon-bar {
  width: 100%;
  max-width: 20px;
  background-color: var(--white-oakton-color)!important;
  box-shadow: none;
  margin: 3px auto 3px;
}
/* END HAMBURGER */

.oakton-mobile-sub-nav#mobile-sws-1{
  border-top: 1px solid var( --brand-oakton-primary-color);
  transition: border-bottom 0.3s ease-in-out; /* Add smooth transition for border-bottom */
}
.oakton-mobile-sub-nav#mobile-sws-1.collapse.in {
  border-bottom: 1px solid var( --brand-oakton-primary-color);
}

.oakton-mobile-sub-nav{
  margin-top: -1px;
}
.accordion-group.navbar-oakton-subsite-mobile{
  background-color: var( --white-oakton-color-color);
}

.oakton-mobile #mobile-sws-1 {
  width: 100%;
} 
.oakton-mobile #mobile-sws-3 {
  top: -27px;
  background: var(--white-oakton-color);
  width: 99.8%; 
  border-left: 1px solid var( --brand-oakton-primary-color);
  border-right: 1px solid var( --brand-oakton-primary-color);
} /** Moves the PRODUCTS section to the TOP and align it with the Hamburger button **/

.oakton-mobile .sws-mobile-header-nav .navbar-oakton-subsite-mobile {
  width: 100%;
  margin-top: 1px !important;
  left: 0px !important;
  border-radius: 0px;
  margin-bottom: 0px;
  margin-right: 0px;
  border-top: 1px solid var( --brand-oakton-primary-color);
}
.oakton-mobile .sws-mobile-header-nav .nav > li > a {
  background: var(--white-oakton-color);
  font-size: 16px;
  color: var(--brand-oakton-primary-color) !important;
  padding: 4px;
  text-align: center;
  text-transform: uppercase;
  border: none;
  font-weight: 700;
  font-family: var(--body-hero-title-oakton-font);
} /* main NAV */

li.home-btn.active-animation.dropdown a{
  padding-bottom: 3.5px;
  border-left: 1px solid var( --brand-oakton-primary-color);
  }
.oakton-mobile .sws-mobile-header-nav .nav > li > a:active{
  background: var(--brand-oakton-third-color);
  color: var(--brand-oakton-primary-color) !important;
} /* main NAV */
.oakton-mobile .sws-mobile-header-nav .nav > li > a:hover + li:last-child.dropdown.dropdown-sup{
  background: var(--white-oakton-color);
  }
.oakton-mobile .oakton-mobile-sub-nav .nav .dropdown-sup a{
  border-radius: 0px;
  text-align: left;
  padding-left: 10px;
}
.oakton-mobile .oakton-mobile-sub-nav .nav .dropdown-sup .dropdown-toggle{
  width: 92%;
  border-radius: 0px;
  text-align: left;
  padding-left: 10px;
  margin-bottom: 0px;
}/** PRODUCTS DROPDOWN in "a" tag **/

.oakton-mobile .oakton-mobile-sub-nav .nav .dropdown.open>.dropdown-toggle{
  background-color: var(--brand-oakton-primary-color) ;
  color: var(--white-oakton-color) !important;
}/* second nav  mobile-sws-3 */

.oakton-mobile .navbar-oakton-subsite-mobile .nav-collapse .dropdown-menu a {
  font-weight: 600;
  color: var(--brand-oakton-primary-color);
  font-size: 14px;
  margin-bottom: 0px;
  padding: 4px 0px 4px 15px !important;
}
.oakton-mobile .navbar-oakton-subsite-mobile .nav-collapse .dropdown-menu a:hover {
  background-color: white !important;
  background: linear-gradient(90deg, #007AC2, #163963);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.oakton-mobile .navbar-oakton-subsite-mobile .nav-collapse .dropdown-menu .dropdown-header a {
  font-weight: 700;
  color: var(--brand-oakton-secondary-color);
  font-size: 16px;
  text-transform: uppercase;
}
  .oakton-mobile .accordion-inner .accordion-inner-sub{
    margin: 0 auto;
    display: grid;
    grid-template-rows: repeat(8, 1fr);
    grid-auto-flow: column;
    gap: 1px;
  }
  .oakton-mobile .accordion-inner .accordion-inner-sub li{
    list-style: none;
  } 
  .oakton-mobile .oakton-mobile-sub-nav .dropdown-sup .dropdown-menu{
    margin-left: 0px;
  }
  .oakton-mobile .oakton-mobile-sub-nav .accordion-inner .mshow .nav{
    margin-bottom: 0px;
  }
  .oakton-mobile .oakton-mobile-sub-nav .nav {
    margin: 0px;
    padding: 0;
  }
  .oakton-mobile #mobile-sws-1.oakton-mobile-sub-nav .nav {
    margin: 0;
    padding: 10px;
    width: 100%;
    float: left;
    box-sizing: border-box;
    background-color: var(--white-oakton-color);
    opacity: 0.98;
    border-left: 1px solid var(--brand-oakton-primary-color);
    border-right: 1px solid var(--brand-oakton-primary-color);
  } /* first subnav  mobile-sws-1 */

  .oakton-mobile .sws-mobile-header-nav li.dropdown.dropdown-sup {
    border: none;
    clear: both;
  }
  .oakton-mobile .sws-mobile-header-nav li:last-child.dropdown.dropdown-sup {
    margin-bottom: 0;
    border-bottom: 1px solid var( --brand-oakton-primary-color);
    border-top: 1px solid var( --brand-oakton-primary-color);
  }
  .oakton-mobile .sws-mobile-header-nav li:last-child.dropdown.dropdown-sup input:checked + .dropdown-menu {
    border-top: 1px solid var(--brand-oakton-primary-color);
}
  .oakton-mobile .sws-mobile-header-nav li:first-child.dropdown.dropdown-sup ul.dropdown-menu .accordion-inner {
    width: 100%;
    float: left;
    box-sizing: border-box;
    margin-bottom: 5px;
    margin-top: 5px;
    background-color: transparent;
  }
/* ********* END HEADER ********* */

/**************************************     HEROS     ************************************************/
.carousel-top.oakton-sws-store {
  margin-top: 0px;
  width: 100vw !important;
  position: relative;
  margin-left: -50vw;
  left: 50%;
  padding-bottom: 1em;
  margin-top: -0.95em;
}
.oakton-sws-store #myCarousel .carousel-inner.hero-section, 
.oakton-sws-store #myCarousel .carousel-inner.hero-section-french {
  height: 350px;
  margin-top: -15px;
}
.oakton-sws-store #myCarousel .hero-section {
  display: flex;
  justify-content: center;
  padding-bottom: 0em;
  background-position: 50% 75%;
}
.oakton-sws-store #myCarousel .hero-content {
  max-width: 979px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  padding: 0.938em 0em;
  height: 100%;
  margin: 0 auto;
  justify-items: center;
}
.oakton-sws-store #myCarousel .text-content {
  padding: 0.75em 0em 0.75em 8em;
}
.oakton-sws-store #myCarousel h1 {
  font-size: 2.5em;
}
.oakton-sws-store #myCarousel .carousel-inner.hero-section-french h1 {
  font-size: 2em;
}
.oakton-sws-store #myCarousel h2 {
  font-size: 1.75em;
}
.oakton-sws-store #myCarousel .image-content img {
  object-fit: contain;
  height: auto;
  max-width: 100%;
  max-height: 300px;
}
/**************************************     BUTTONS     ************************************************/
.oakton-item:not(.side-ad) {
  height: 9em;
}
 .oakton-item img {
  height: auto;
  padding-left: 0;
  display: block;
  margin: 0 auto;
}

/**************************************     SIDE AD     ************************************************/
.sws-oakton-buttons.sws-oakton-buttons-fr .side-ad-btn {
  font-size: 0.9rem;
}
.oakton-item.side-ad .oakton-side-ad-title p.application-title {
  font-size: 1.1rem;
  margin-bottom: 5px;
}
.oakton-item.side-ad .oakton-side-ad-subtitle p.application-subtitle {
  font-size: 1rem;
  padding: 0 8px
} 
/* End Side Ad*/
/* ********* END BUTTONS ********* */


/**************************************     ABOUT PAGE     ************************************************/
.row-fluid.about-oakton-container {
  width: 95vw;
  padding: 30px 10px 30px 20px;
}
.about-oakton::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url(/images/pages/oakton/about-oakton-bgr-upd.webp) no-repeat center;
  background-size: cover;
  background-position: 2% 10%;
  opacity: 0.3;
  z-index: 0;
  display: block;
}

}
  
@media (max-width: 767px) {
  .row-fluid.oakton-sws-store {
    padding-top: 0px;
}
/**************************************     HEADER     ************************************************/
.navbar-inner.oakton-mobile {
  margin-left: -20px;
  margin-right: -20px;
}
.oakton-mobile .span3 {
  width: 37%;
}
/**************************************     NAV     ************************************************/
/****** English ******/

/**************************************     SEARCH BAR     *******************************************/  
  .oakton-mobile .input-append input {
    padding: 10px 13px;
    width: 92% ! IMPORTANT;
}
/* ********* END HEADER ********* */
/**************************************     HEROS     ************************************************/
.oakton-sws-store #myCarousel h1{
  font-size: 2em;
}
.oakton-sws-store #myCarousel h2{
  font-size: 1.5em;
}
.oakton-sws-store #myCarousel .hero-section, 
.oakton-sws-store #myCarousel .image-content{
    justify-content: start;
}
.oakton-sws-store #myCarousel .carousel-inner.hero-section, 
.oakton-sws-store #myCarousel .carousel-inner.hero-section-french {
  height: 300px;
  margin-top: 10px;
  box-shadow: none;
}
.oakton-sws-store #myCarousel .hero-content {
  max-width: 768px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  padding: 0.5em 2em 0.5em;
  height: 100%;
  margin: 0 auto;
  justify-items: center;
}
.oakton-sws-store #myCarousel .image-content {
  padding-right: 6em;
}
.oakton-sws-store #myCarousel .hero-content .image-content img {
  box-shadow: none;
}
.oakton-sws-store #myCarousel .hero-content.oakton-slide1 .image-content img {
  padding-top: 0em;
  max-height: 270px;
}
.oakton-sws-store #myCarousel .text-content {
  padding: 0.75em 0em 0.75em 0em;
}
.oakton-sws-store #myCarousel .carousel-btn {
  font-size: 1em;
  padding: 0.875em 2em;
  border: 2px solid var(--brand-oakton-secondary-yellow-color);
}
.row-fluid.oakton-sws-store.carousel-top ol.carousel-indicators.mshow.ipad-view-setting{
  margin-top: 0.5em;
  margin-bottom: 0.5em;
} 
.carousel-top.oakton-sws-store {
  padding-bottom: 0em;
}

/**************************************     BUTTONS     ************************************************/
.oakton-item img {
  max-width: 75%;
}
.oakton-item.side-ad{
  display: none;
  visibility: hidden;
}
.sws-oakton-buttons .oakton-grid-container{
  grid-template-columns: repeat(2,1fr);
  margin: 0 auto 4em;
}
/* ********* END BUTTONS ********* */
/**************************************     ABOUT PAGE     ************************************************/
.row-fluid.about-oakton-hero h1 {
  font-size: 60px;
  padding: 0.5em;
}
/* .row-fluid.about-oakton-main-content .span12 h2 {
  margin-top: 10px;
}
.row-fluid.about-oakton-main-content p {
  padding-bottom: 0em;
} */
}

@media (max-width: 600px) {
/**************************************     NAV     ************************************************/
.oakton-mobile .sws-mobile-header-nav .nav > li > a,
.oakton-mobile .navbar-oakton-subsite-mobile .nav-collapse .dropdown-menu .dropdown-header a {
  font-size: 1em;
}
.oakton-mobile .accordion-inner .accordion-inner-sub {
  display: grid;
  grid-template-rows: repeat(9, 1fr);
  grid-auto-flow: column;
  gap: 1px;
}
/**************************************     SEARCH BAR     ************************************************/
.oakton-mobile .input-append input {
  width: 90% ! IMPORTANT;
}
/**************************************     HERO     ************************************************/
.oakton-sws-store #myCarousel .carousel-inner.hero-section, 
.oakton-sws-store #myCarousel .carousel-inner.hero-section-french {
  height: 470px;
  margin-top: 10px;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.oakton-sws-store #myCarousel .hero-section, 
.oakton-sws-store #myCarousel .image-content {
  order: -1;
  padding: 0em;
}
.oakton-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.5em 0;
}
.oakton-sws-store #myCarousel .text-content {
  padding: 1em 1em 0.75em 1em;
  width: 95%;
}
.oakton-sws-store #myCarousel .carousel-inner.hero-section-french h1 {
  font-size: 1.75em;
}
.oakton-sws-store #myCarousel .image-content img {
  object-fit: contain;
  height: auto;
  max-width: 100%;
  max-height: 250px;
}
.sws-oakton-buttons .oakton-grid-container {
  gap: 2%;
}
/********/  

/**************************************     BUTTONS     ************************************************/
.oakton-item:not(.side-ad) {
  height: 6rem;
}
.sws-oakton-buttons .oakton-application-title .application-title {
  padding-left: 0px;
  padding-right: 0px;
}
/* ********* END BUTTONS ********* */
/**************************************     ABOUT PAGE     ************************************************/
.row-fluid.about-oakton-container {
  width: 94vw;
  padding: 15px 0px;
}
.row-fluid.about-oakton-hero .span12 h1 {
  font-size: 48px;
  padding: 0.5em;
} 
}

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

.oakton-mobile .input-append input {
  padding: 7px 9px;
  width: 90% ! IMPORTANT;
  font-size: 12px !important;
}
.oakton-mobile .input-append .btn {
  height: 30px;
  width: 30px;
  margin-left: -33px;
} 
/**************************************     NAV     ************************************************/
.oakton-mobile #mobile-sws-3 {
  width: 99.4%;
}
.oakton-mobile .accordion-inner .accordion-inner-sub {
  display: grid;
  grid-template-rows: repeat(16, 1fr);
  grid-auto-flow: column;
  gap: 1px;
}
/*******************************************     HUMBURGER     *******************************************/
.navbar .oakton-mobile .btn-navbar .icon-bar, .navbar .oakton-mobile .btn-navbar:hover .icon-bar {
  max-width: 15px;
}
/**************************************     HERO     ************************************************/
.carousel-top.oakton-sws-store {
  padding-bottom: 0em;
}
.oakton-sws-store #myCarousel .hero-content {
  max-width: 480px;
}
.oakton-sws-store #myCarousel h1 {
  font-size: 1.8em;
}
.oakton-sws-store #myCarousel .carousel-inner.hero-section-french h1 {
  font-size: 1.5em;
}
.oakton-sws-store #myCarousel h2 {
  font-size: 1.3em;
}
.oakton-sws-store #myCarousel .hero-content.oakton-slide1 .image-content img,
.oakton-sws-store #myCarousel .hero-content .image-content img {
  max-height: 260px;
}
/**************************************     BUTTONS     ************************************************/
.sws-oakton-buttons .oakton-grid-container {
  grid-template-columns: repeat(1, 1fr);
  gap: 1%;
  margin-bottom: 7rem;
}
.oakton-item img {
  max-width: 50%;
}
.sws-oakton-buttons .oakton-application-title {
  padding: 0px 10px 0px 10px;
}
/* ********* END BUTTONS ********* */
/**************************************     ABOUT PAGE     ************************************************/
.row-fluid.about-oakton-container {
  width: 91vw;
  padding: 15px 0px;
}
.row-fluid.about-oakton-hero .span12 h1 {
  font-size: 3em;
}

}

@media (max-width: 399px) {
  /**************************************     HEADER     ************************************************/
  .oakton-mobile .input-append input {
    padding: 4px 6px;
    width: 89% ! IMPORTANT;
    font-size: 10px !important;
  }
  .oakton-mobile .input-append .btn {
    height: 24px;
    width: 24px;
    margin-left: -27px;
    margin-top: 3px;
  }
  .oakton-mobile .input-append .btn img{
    margin: -9px -1px 0 0 !important;
  }
  /**************************************     NAV     ************************************************/

li.home-btn.active-animation.dropdown {
  width: 11%;
}
.oakton-mobile #SWS-mobile-first-nav {
  width: 41%;
}
.oakton-mobile #SWS-mobile-third-nav {
  width: 38.5%;
}
.oakton-mobile #SWS-mobile-hamburger-nav {
  width: 8%;
}
.oakton-mobile .sws-mobile-header-nav .nav > li > a, 
.oakton-mobile .navbar-oakton-subsite-mobile .nav-collapse .dropdown-menu .dropdown-header a {
  font-size: 0.75em;
}
.oakton-mobile .navbar-oakton-subsite-mobile .nav-collapse .dropdown-menu a {
  font-size: 0.75em;
  padding: 1px 10px !important;
}
/**************************************     HERO     ************************************************/
.oakton-sws-store #myCarousel .text-content {
  padding: 1.75em 1em 0.75em 1em;
}
.oakton-sws-store #myCarousel h1,
.oakton-sws-store #myCarousel .carousel-inner.hero-section-french h1 {
  font-size: 1.55em;
}
.oakton-sws-store #myCarousel h2 {
  font-size: 1.25em;
}
.row-fluid.oakton-sws-store.carousel-top ol.carousel-indicators.mshow.ipad-view-setting {
  margin-top: 0.5em;
  margin-bottom: 0em;
}
/**************************************     BUTTONS     ************************************************/

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

.row-fluid.about-oakton-hero h1 {
  font-size: 2.3em;
}
.row-fluid.about-oakton-hero .hero-h1 {
  font-size: 1.05em;
}
.about-oakton {
  max-height: 300px;
  height: 300px;
}
.about-oakton::before {
  background-position: 12% 10%;
}
}
@media (max-width: 329px) {
/**************************************     HEADER     ************************************************/
.oakton-mobile .span3 {
  margin-top: 5px;
}
/**************************************     HERO     ************************************************/
.oakton-sws-store #myCarousel h1 {
  font-size: 1.35em;
}
.oakton-sws-store #myCarousel .carousel-inner.hero-section-french h1 {
  font-size: 1.3em;
}
.oakton-sws-store #myCarousel .carousel-inner.hero-section-french h2 {
  font-size: 1.2em;
}
/**************************************     BUTTONS     ************************************************/
.sws-oakton-buttons .oakton-application-title .application-title {
  font-size: 14px;
} 

/* ********* END BUTTONS ********* */
/**************************************     ABOUT PAGE     ************************************************/
.row-fluid.about-oakton-hero h1 {
  font-size: 2em;
}
.about-oakton {
  max-height: 400px;
  height: 350px;
}
.about-oakton::before {
  background-position: 20% 10%;
}
}

