:root {
  --brand-armada-primary-color: #000000; /* primary armada color */
  --brand-armada-secondary-yellow-color: #F8C712; /* secondary armada color */
  --brand-armada-third-gray-color: #707070; /* third armada color */
  --brand-armada-light-gray-color: #C9C9C9; /* light gray */
  --brand-header-armada-font: "Montserrat", "Open Sans", "Roboto", sans-serif; /* header and title font family */
  --body-armada-font: "OpenSans", "Roboto", Arial, Verdana, sans-serif;
  --body-hero-title-armada-font: "Montserrat", "Open Sans", "Roboto", sans-serif;
}
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     ************************************************/

.armada-header {
  width: 100vw !important;
  position: relative;
  margin-left: -50vw;
  left: 50%;
  box-sizing: border-box;
  padding: 0.2em 0;
  background-image: linear-gradient(
    to bottom, var(--brand-armada-primary-color) 0%, /* Start with black */ 
    var(--brand-armada-primary-color) 96%, /* Black ends at 96% */ 
    var(--brand-armada-secondary-yellow-color) 96%, /* Yellow starts at 96% */ 
    var(--brand-armada-secondary-yellow-color) 100% /* Red ends at 100% */);
}
.armada-header > .row-fluid {
  max-width: 1140px;
  margin: 0 auto;
  padding: 7px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-around;
}
.armada-header .span2.logo-armada-sws img.brandlogo{
  width: 76%;
  margin-left: 0px;
}
.armada-header .row-fluid .navbar.navbar-inner-armada-subsite {
  float: right;
}
.armada-header .subheading-nav {
  float: right;
  margin-top: 30px;
}
.armada-header .row-fluid .navbar .nav-collapse.sws.collapse {
  margin-top: 20px !important;
  width: 53rem;
}

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

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

.navbar.navbar-inner-armada-subsite .nav > li > a > img{
  width: 20px;
  height: auto;
}

.navbar .nav.navbar-armada-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-armada-subsite-french .nav.navbar-armada-subsite > li:last-child {
  flex-grow: 1;
  max-width: 255px;
}

.dropdown-menu.armada-whole-cateogies-list-menu{
  width: 300px;
  left: 0 !important;
  border-radius: 3px;
  background-color: var(--brand-armada-secondary-yellow-color);
  font-family: var(--body-armada-font);
  opacity: 0.9;
  border: 2px solid;
  padding: 0px;
  top: 45px;
}

.navbar.navbar-inner-armada-subsite.navbar-inner-armada-subsite-french.mhide .dropdown-menu.armada-whole-cateogies-list-menu{
  width:360px;
}
.navbar .nav>li>.armada-whole-cateogies-list-menu.dropdown-menu:before, 
.navbar .nav>li>.armada-whole-cateogies-list-menu.dropdown-menu:after {
  display: none;
}
.dropdown-menu.armada-whole-cateogies-list-menu li a {
  white-space: break-spaces;
  padding: 5px 16px !important;
  line-height: 30px;
  font-weight: 600;
  font-size: 16px;
  color: var(--brand-armada-primary-color);
  text-align: left;
  font-family: var(--body-armada-font);
}
.armada-whole-cateogies-list-menu ul {
  box-sizing: border-box;
  float: left;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  align-items: center;
  justify-items: stretch;
  display: grid;
  grid-template-rows: repeat(7, 1fr);
  list-style: none;
  margin: 5px 10px;
}

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

/* NAV HOVER COLOURS */
.navbar.navbar-inner-armada-subsite .nav > li > a:active,
.navbar .nav.navbar-armada-subsite li.dropdown.open > .dropdown-toggle,
.navbar .nav.navbar-armada-subsite li.dropdown.active > .dropdown-toggle,
.navbar .nav.navbar-armada-subsite li.dropdown.open.active > .dropdown-toggle {
  color: var(--brand-armada-secondary-yellow-color);
  background-color: transparent;
}
.hover-underline-animation {
  display: inline-block;
  position: relative;
  color: var(--brand-armada-secondary-yellow-color);
}
.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-color: var(--brand-armada-secondary-yellow-color); /* Background color of the underline */
  transition: transform 0.3s ease-out; /* Transition effect for the underline */
  transition: all 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;
}
.active,
.hover-underline-animation::after {
  background-color: rgb(var(--brand-armada-secondary-yellow-color), 20%);
  transition: all 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;
}
/*dropdown*/
.navbar-armada-subsite .dropdown-menu li > a:hover,
.navbar-armada-subsite .dropdown-menu li > a:focus,
.navbar-armada-subsite .dropdown-menu li > a:active{
  background-color: black !important;
  text-decoration: none;
  background-image: none;
  color: var(--brand-armada-yellow-color) !important;
}

/**************************************     SEARCH BAR     ************************************************/
.armada-search form#ProductDisplayForm button.btn.btn-default i.icon-search,
.armada-mobile .mobile-search button .icon-search {
  margin-top: 1px !important;
  background-image: url(/images/pages/armada-technologies/armada-search-btn.svg);
}
.armada-search .btn{
  padding: 6px 6px;
}
/* Style for the circular button */
.armada-search form#ProductDisplayForm button.btn.btn-default {
  background-color: var(--brand-armada-primary-color);
  border-radius: 50%;
  border: 3px solid var(--brand-armada-secondary-yellow-color);
  width: 40px;
  height: 40px !important;
  position: absolute; /* Anchor the button */
  right: 0px; /* Adjust as needed */
  top: 50%; /* Center vertically */
  transform: translateY(-50%); /* Vertical alignment */
  transition: background-color 0.6s ease;
  z-index: 2; /* Ensure it appears above expanding input */
}
/* Search bar container */
.armada-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: 30%; /* Default width */
  transform-origin: right;
  transition: width 0.4s ease, background-color 0.4s ease;
}
/* Expanded state on hover or focus-within */
.armada-search.input-append:hover,
.armada-search.input-append:active,
.armada-search.input-append:focus-within {
  width: 35%; /* Expanded width */
  background-color: beige;
}
/* Input field styling */
.armada-search input#ProductSearch.appendInputButton {
  border-radius: 0;
  color: #687177;
  border: none;
  background-color: transparent;
  padding: 9px 5px 9px 10px;
  width: 97% !important;
  margin-right: 0px; /* Leave space for the button */
}
.armada-search input#ProductSearch.appendInputButton:hover {
  color: #687177;
}
/* Input focus styling */
.armada-search input.refine-search.appendInputButton:focus {
  color: var(--brand-armada-third-gray-color);
  box-shadow: none;
  border-color: #d8d8d8;
}
.armada-search input.refine-search.appendInputButton::-webkit-input-placeholder {
  /* Chrome, Opera, Safari */
  color: var(--brand-armada-third-gray-color);
}
.armada-search input.refine-search.appendInputButton:-moz-placeholder {
  /* Firefox 4-18 */
  color: var(--brand-armada-third-gray-color);
}
.armada-search input.refine-search.appendInputButton::-moz-placeholder {
  /* Firefox 19+ */
  color: var(--brand-armada-third-gray-color);
}
.armada-search input.refine-search.appendInputButton:-ms-input-placeholder {
  /* IE 10-11 */
  color: var(--brand-armada-third-gray-color);
}
.armada-search input.refine-search.appendInputButton::-ms-input-placeholder {
  /* MS Edge */
  color: var(--brand-armada-third-gray-color);
}
.armada-search input.refine-search.appendInputButton::placeholder {
  /* your styles */
  color: var(--brand-armada-third-gray-color);
}

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


/**************************************     HEROS     ************************************************/
.carousel-top.armada-sws-store {
  margin-top: 0px;
  width: 100vw !important;
  position: relative;
  margin-left: -50vw;
  left: 50%;
  padding-bottom: 2em;
}
.armada-sws-store #myCarousel .hero-section {
  width: 100%;
  background-image: url(/images/pages/armada-technologies/armada-home-page-bgr.webp);
  background-size: cover;
  background-position:  center;
  /* background-position:  25% 75%; */
  position: relative;
  display: flex;
  justify-content: center;
  padding-bottom: 2em;
}
/* Set a fixed height for the carousel inner to prevent jumping */
.armada-sws-store #myCarousel .carousel-inner.hero-section,
.armada-sws-store #myCarousel .carousel-inner.hero-section-french{
  height: 400px; /* Adjust this value as needed */
  margin-top: -15px;
}
.armada-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;
}
.armada-sws-store #myCarousel .text-content {
  padding: 60px 10px 60px 20px;
}
.armada-sws-store #myCarousel .image-content img {
  object-fit: contain;
  height: auto;
  max-width: 100%;
  max-height: 400px;
}
.armada-sws-store #myCarousel .hero-content.armada-slide1 .image-content img {
  padding-top: 1em;
}
.carousel-control-new {
  color: white;
  font-size: 30px; /* Adjust the size of the arrow */
  position: absolute; /* Position the arrows */
  top: 50%; /* Position vertically in the middle */
  transform: translateY(-50%); /* Adjust vertical position */
  text-shadow: 1px 0px 2px rgba(0, 0, 0, 1) !important;
}
.carousel-control-new.left {
  left: 10px; /* Position the left arrow */
}
.carousel-control-new.right {
  right: 10px; /* Position the right arrow */
}

/* Other Carousel Styles */
.armada-sws-store #myCarousel h2 {
  font-size: 40px;
  margin-bottom: 14px;
  color: var(--brand-armada-secondary-yellow-color);
  line-height: normal;
  letter-spacing: 0.5px;
  font-weight: 600;
  font-family: var(--body-hero-title-armada-font);
}
.armada-sws-store #myCarousel .carousel-inner.hero-section-french h2{
  font-size: 36px;
}
.armada-sws-store #myCarousel h3 {
  color: white;
  font-weight: 400;
  font-size: 30px;
  font-family: var(--body-armada-font);
  line-height: normal;
}
.armada-sws-store #myCarousel .carousel-btn {
  color: var(--brand-armada-secondary-yellow-color);
  background-color: var(--brand-armada-primary-color);
  border-radius: 8px;
  margin-top: 0px;
  font-size: 18px;
  padding: 14px 48px;
  display: inline-flex;
  font-family: var(--body-armada-font);
  font-weight: 600;
  border: 3px solid var(--brand-armada-secondary-yellow-color);
}
.armada-sws-store #myCarousel .carousel-btn:hover {
  background-color: var(--brand-armada-secondary-yellow-color);
  text-decoration: none;
  transition: 0.3s;
  color: var(--brand-armada-primary-color);
}
/* ********* END Heroes ********* */

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

.sws-armada-buttons .armada-item {
  display: grid;
  display: -ms-grid; /* IE10+ Fallback */
  grid-template-columns: repeat(2, 1fr);
  border: none;
  border-radius: 10px;
  background-color: var(--brand-armada-light-gray-color);
  overflow: hidden;
  gap: 10px;
  /* Explicit columns for IE */
  -ms-grid-columns: 1fr 1fr;
  align-items: center;
  justify-items: start;
}
.sws-armada-buttons .armada-application-title{
    padding: 0px 10px 0px 0px;
}
.sws-armada-buttons .armada-application-title .application-title{
  font-family: var(--body-armada-font);
    font-size: 17px;
    font-weight: 600;
    color: var(--brand-armada-primary-color);
    text-align: left;
    line-height: 26px;
    padding-left: 20px;
    padding-right: 0px;
}
.sws-armada-buttons .armada-item a {
  display: block;
}
.armada-item:not(.side-ad){
    height: 11em;
}
.armada-item.side-ad .armada-side-ad-subtitle p.application-sub-subtitle {
  font-size: 18px;
  font-weight: 600;
  color: var(--brand-armada-secondary-yellow-color);
  text-align: left;
  line-height: 14px;
  padding: 0 0px;
}
.armada-item .armada-application-img {
  overflow: hidden; /* Prevent content overflow in the image container */
  padding-left: 0px;;
}
.armada-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 */
  display: block; /* Avoid inline spacing issues */
  padding-top: 2em;
  margin: 0 auto;
}
 
.armada-item .img-btn-4 img {
  padding-top: 0em;
  margin: 0 auto;
}

.armada-item .img-btn-2 img,
.armada-item .img-btn-6 img{
  transform: rotate(-15deg);
  padding-top: 5em;
  margin-left: 3em;
  margin-right: 0;
  max-width: 55%
}
.armada-item .img-btn-1 img,
.armada-item .img-btn-7 img,
.armada-item .img-btn-8 img{
  padding-top: 0em;
}
.armada-item .img-btn-5 img{
  transform: rotate(-15deg);
  padding-top: 5em;
  margin-left: 4em;
  max-width: 80%;
}

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

/**************************************     SIDE AD     ************************************************/
.armada-item.side-ad{
  background: radial-gradient(circle at top center, #acacac 30%, #c9c9c9 100%) 0 100% / 100% 30% no-repeat, #c9c9c9;
  grid-column-start: 3;
  grid-column-end: 4;
  grid-row-start: 1;
  grid-row-end: 3;
  padding: 1em 1.3em;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, 1fr);
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}
.armada-item.side-ad .armada-side-ad-title p.application-title{
  font-size: 1.5em;
  font-weight: 500;
  color: var(--brand-armada-primary-color);
  text-align: left;
  line-height: normal;
  font-family: var(--body-armada-font);
  margin-bottom: 0;
}
.armada-item.side-ad .armada-side-ad-subtitle p.application-subtitle {
  font-size: 1.3em;
  font-weight: 600;
  color: var(--brand-armada-primary-color);
  text-align: left;
  line-height: normal;
  font-family: var(--body-armada-font);
  /* grid-area: 3 / 1 / 4 / 2; */
}
.armada-side-ad-img{
  grid-area: 1 / 2 / 6 / 3;
}
.armada-side-ad-cta {
  margin: 0px;
  grid-area: 3 / 1 / 3 / 2;
}

.armada-item.side-ad img{
  height: 315px;
  max-width: unset;
  margin-right: -15em;
  margin-top: 5px;
}

.side-ad-btn{
  color: var(--brand-armada-secondary-yellow-color);
  background-color: var(--brand-armada-primary-color);
  border-radius: 8px;
  margin-top: 3em;
  font-size: 18px;
  padding: 10px 30px;
  font-family: var(--body-armada-font);
  font-weight: 600;
  border: 3px solid var(--brand-armada-secondary-yellow-color); 
}
.sws-armada-buttons.sws-armada-buttons-fr .side-ad-btn{
  padding: 10px 20px;
}
.side-ad-btn:hover {
  background-color: var(--brand-armada-secondary-yellow-color);
  color: var(--brand-armada-primary-color);
  text-decoration: none;
  transition: 0.3s;
}
.row-fluid .sws-armada-buttons.sws-armada-buttons-fr .armada-item.side-ad .armada-side-ad-subtitle p.application-sub-subtitle{
  padding: 0px 60px 0px 0px;
  line-height: normal;
}

/*Buttons hover*/
.armada-item:hover .armada-application-title .application-title,
.armada-item:hover .armada-application-img img {
  color: var(--brand-armada-primary-color); 
  transition: 0.15s ease-in-out;
}
.armada-item:hover:not(.side-ad){
  box-shadow: 2px 3px 6px 1px rgba(73, 80, 87, 0.25);
  -webkit-box-shadow: 2px 3px 6px 1px rgba(73, 80, 87, 0.25);
  -moz-box-shadow: 2px 3px 6px 1px rgba(73, 80, 87, 0.25);
  overflow: hidden;
}

.about-armada-item .armada-application-img img{
  width: 60%;
}
.about-armada-item:hover .armada-application-title{
  padding-right: 20px;
}

/**************************************     ABOUT US     ************************************************/
.armada-about .about-armada-hero {
  background-image: url(/images/pages/armada-technologies/armada-home-page-bgr.webp);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  height: 350px;
  margin-bottom: 0px;
  width: 100%;
  background-position: center;
  display: flex;
  align-items: center;
  margin-top: -15px;
}
.armada-hero-container{
    margin-top: 0px;
    width: 100vw !important;
    position: relative;
    margin-left: -50vw;
    left: 50%;
}
.row-fluid.about-armada-hero h1{
  font-size: 60px;
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
  line-height: normal;
  color: var(--brand-armada-secondary-yellow-color);
  font-family: var(--body-hero-title-armada-font);
  margin-bottom: 0px;
  padding: 1.5em;
}
.row-fluid.about-armada-hero .hero-h1 {
  font-size: 64px;
  color: white;
}
.about-armada {
    margin-top: 0px;
    width: 100vw !important;
    position: relative;
    margin-left: -50vw;
    left: 50%;
    background: var(--brand-armada-primary-color);
}
.row-fluid.about-armada-container p {
  color: #f9f9f9;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  font-family: var(--body-armada-font);
}
.row-fluid.about-armada-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-armada-container {
  margin: 0 auto;
  width: 1140px;
  padding: 40px 20px;
}
.row-fluid.point-down {
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 24px 24px 0 24px;
    border-color: var(--brand-armada-primary-color) transparent transparent transparent;
    transform: rotate(0deg);
    margin: 0 auto;
}
.row-fluid.about-armada-main-content h2 {
  color: var(--brand-armada-secondary-yellow-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-armada-font);
}
.row-fluid.about-armada-main-content .span12 h2 {
margin-top: 0px;
}
.row-fluid.about-armada-main-content p {
  text-align: left;
  font-size: 16px;
  padding-bottom: 1em;
  font-family: var(--body-armada-font);
}
.about-us-application-title p {
    text-align: center;
    font-size: 15px;
    padding: 5px 20px 20px;
}
/* --- FRENCH --- */
.french-about-us .row-fluid.about-armada-hero h1{
    font-size: 68px;
}
.french-about-us span.hero-h1 {
    font-size: 80px;
}

@media (min-width: 1200px) {
  .armada-item.side-ad{
    max-height: 290px;
  }
  }
@media (max-width: 1199px) {
/**************************************     HEADER     ************************************************/
.armada-header > .row-fluid {
  max-width: 914px;
  margin: 0 auto;
  padding: 0px;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: space-around;
}
.armada-header .span9.subheading-nav {
  width: 43rem !important;
  float: right;
  margin-top: 0px;
}
/**************************************     NAV     ************************************************/
.navbar.navbar-inner-armada-subsite .nav > li > a{
  font-size: 0.9rem;
}
.armada-header .row-fluid .navbar .nav-collapse.sws.collapse {
  margin-top: 10px !important;
  width: 43rem;
}
.navbar .nav.navbar-armada-subsite {
  display: -moz-box;
  display: -ms-flexbox;
}

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

.navbar.navbar-inner-armada-subsite-french .nav.navbar-armada-subsite > li:last-child {
  flex-grow: 1;
  max-width: 215px;
}
/* ********* END NAV ********* */
    
/**************************************     HEROS     ************************************************/
.armada-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;
}
.armada-sws-store #myCarousel .text-content {
  padding: 3.75em 0em 3.75em 5em;
}
.armada-sws-store #myCarousel .carousel-btn {
  color: var(--brand-armada-secondary-yellow-color);
  background-color: var(--brand-armada-primary-color);
  border-radius: 8px;
  margin-top: 0px;
  font-size: 1.125em;
  padding: 0.875em 3em;
  display: inline-flex;
  font-family: var(--body-armada-font);
  font-weight: 600;
  border: 3px solid var(--brand-armada-secondary-yellow-color);
}
/**************************************     BUTTONS     ************************************************/
.sws-armada-buttons .armada-grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2% 1%;
    margin-bottom: 3%;
    margin-top: -2em;
}
.sws-armada-buttons .armada-application-title {
  padding: 0px 0px 0px 0px;
}
.armada-item img {
  max-width: 80%;
  height: auto;
  padding-left: 0;
  display: block;
  padding-top: 2em;
  margin: 0 auto;
}
.armada-item .img-btn-2 img, 
.armada-item .img-btn-6 img {
  transform: rotate(-15deg);
  padding-top: 5em;
  max-width: 60%;
  margin-left: 2em;
}
.armada-item .img-btn-5 img {
  transform: rotate(-15deg);
  padding-top: 5em;
  margin-left: 3em;
  max-width: 90%;
}
/**************************************     SIDE AD     ************************************************/
.armada-item.side-ad {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(5, 1fr);
  justify-items: start;
  align-items: start;
  max-height: 290px;
}
.armada-item.side-ad .armada-side-ad-title p.application-title {
  font-size: 1.3em;
  font-weight: 500;
  color: var(--brand-armada-primary-color);
  text-align: left;
  line-height: normal;
  font-family: var(--body-armada-font);
  margin-bottom: 0;
}
.armada-item.side-ad .armada-side-ad-subtitle p.application-subtitle {
  font-size: 1.1em;
  font-weight: 700;
  color: var(--brand-armada-primary-color);
  text-align: left;
  line-height: normal;
  font-family: var(--body-armada-font);
}
.armada-item.side-ad img {
  margin-right: -15em;
  margin-top: 5px;
  padding-top: 0;
}
.side-ad-btn {
  margin-top: 5em;
  font-size: 1.2em;
  padding: 6px 10px;
}
.sws-armada-buttons.sws-armada-buttons-fr .side-ad-btn {
  padding: 6px 6px;
  margin-top: 3em;
}
/**************************************     ABOUT PAGE     ************************************************/
.row-fluid.about-armada-container {
    width: 82vw;
}
.row-fluid.about-armada-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) {
/**************************************     HEADER     ************************************************/
 .navbar-inner.armada-mobile {
  font-family: var(--body-armada-font);
  background-color: var(--brand-armada-primary-color);
  background: #000000;
  padding-top: 7px;
  padding-bottom: 7px;
}
 .armada-mobile .span3 {
  width: 177px;
  float: left;
  margin-left: 0px;
}
.navbar .armada-mobile .span9 {
  width: auto;
  margin-left: 0;
  overflow: hidden;
  float: none;
  margin-top: 0px;
}
/**************************************     SEARCH BAR     ************************************************/
.armada-mobile .navbar-search {
  padding: 0px !important;
  background-color: white;
  height: 40px;
  border-radius: 40px;
  position: relative;
  float: left;
  margin-top: 40px;
  margin-bottom: 0 !important;
  max-width: 100%;
  margin-left: 0;
  padding-left: 0 !important;
  padding-top: 0px !important;
  margin-right: 0;
}
.armada-mobile img.brand.mobile-logo {
  width: 100%;
  padding: 0px 0px 0px 0px;
}
.armada-mobile .input-append input {
border-radius: 0px;
background: transparent;
border: none;
padding: 9px 7px;
}
.armada-header-nav .mobile-search .input-append input{
font-size: 11px !important;
height: 30px;
width: 76%;
background: transparent;
border: none;
}
.armada-mobile .mobile-search{
margin-top: 0px;
}
.armada-mobile .input-append .btn {
  border: 3px solid var(--brand-armada-secondary-yellow-color);
  padding: 6px;
  background-color: var(--brand-armada-primary-color);
  height: 40px;
  border-radius: 40px;
  width: 40px;
  transform: translateY(0%);
  margin-left: -4px;
}

/**************************************     NAV     ************************************************/
/****** English ******/
li.home-btn.active-animation.dropdown {
  width: 7%;
  margin-right: 0.2%;
}
  .armada-mobile #SWS-mobile-first-nav {
    width: 43.7%;
    margin-right: 0.2%;
}
  .armada-mobile #SWS-mobile-third-nav {
    width: 41.7%;
    margin-right: 0.2%;
}
  .armada-mobile #SWS-mobile-hamburger-nav {
    width: 6.5%;
    padding-left: 0px;
    border: 1px solid var(--brand-armada-secondary-yellow-color);
}
  /****** End English ******/

/**************************************     HUMBURGER     ************************************************/
.armada-mobile .sws-mobile-header-nav .btn-navbar {
  background-color: var(--brand-armada-primary-color);
  border-image: initial;
  outline: none ;
  margin: 0px;
  padding: 4px 0px;
  width: 100%;
  float: none;
  box-sizing: border-box;
  border-radius: 0;
  border: none;
  margin-block: 0px;
  height: auto;
  margin-top: 0px;
}
.navbar .armada-mobile .btn-navbar .icon-bar,
.navbar .armada-mobile .btn-navbar:hover .icon-bar {
  width: 100%;
  max-width: 20px;
  background-color: var(--brand-armada-secondary-yellow-color)!important;
  box-shadow: none;
  margin: 3px auto 3px;
}
/* END HAMBURGER */

.armada-mobile #mobile-sws-1 {
  width: 100%;
} 
.armada-mobile #mobile-sws-3 {
  top: -28px;
  background: var(--brand-armada-primary-color);
  width: 100%;
} /** Moves the PRODUCTS section to the TOP and align it with the Hamburger button **/

.armada-mobile .sws-mobile-header-nav .navbar-armada-subsite-mobile {
  background: transparent !important;
  width: 100%;
  margin-top: 5px !important;
  left: 0px !important;
  border-radius: 0px;
  margin-bottom: 0px;
  margin-right: 0px;
}
.armada-mobile .sws-mobile-header-nav .nav > li > a {
  background: var(--brand-armada-primary-color);
  font-size: 15px;
  color: var(--brand-armada-secondary-yellow-color) !important;
  padding: 3px 4px;
  text-align: center;
  text-transform: uppercase;
  border: 1px solid var(--brand-armada-secondary-yellow-color);
  font-weight: 600;
  font-family: var(--brand-header-armada-font);
}
.armada-mobile .armada-mobile-sub-nav .nav .dropdown-sup a{
  border-radius: 0px;
  text-align: left;
  padding-left: 10px;
}
.armada-mobile .armada-mobile-sub-nav .nav .dropdown-sup .dropdown-toggle{
  border-radius: 0px;
  text-align: left;
  padding-left: 10px;
}/** PRODUCTS DROPDOWN in "a" tag **/
.armada-mobile .armada-mobile-sub-nav .nav .dropdown-sup .dropdown-toggle:hover {
  background: var(--brand-armada-primary-color);
}
.armada-mobile .armada-mobile-sub-nav .nav .dropdown.open>.dropdown-toggle{
  background-color: var(--brand-armada-primary-color) !important;
  color: var(--brand-armada-secondary-yellow-color) !important;
}

.navbar-armada-subsite-mobile .nav-collapse .open > .dropdown-menu li > a,
.navbar-armada-subsite-mobile .nav-collapse .open > .dropdown-menu li > strong > a,
.armada-mobile-sub-nav .accordion-inner .accordion-inner-sub.dropdown-menu li > a
{
    font-size: 16px;
    line-height: 22px;
    background-color: transparent !important;
    padding: 5px 0px 5px 10px !important;
    color: #d3d3d3 !important;
    background-image: none !important;
    margin-bottom: 2px;
    border: none;
    white-space: break-spaces;
}
.armada-mobile-french.armada-mobile .navbar-armada-subsite-mobile .nav-collapse .open > .dropdown-menu li > a,
.armada-mobile-french.armada-mobile .navbar-armada-subsite-mobile .nav-collapse .open > .dropdown-menu li > strong > a,
.armada-mobile-french.armada-mobile .armada-mobile-sub-nav .accordion-inner .accordion-inner-sub.dropdown-menu li > a
{
    font-size: 15px;
    line-height: 26px;
    background-color: transparent !important;
    padding: 5px 0px 5px 10px !important;
    color: var(--brand-armada-secondary-yellow-color) !important;
    background-image: none !important;
    margin-bottom: 2px;
    border: none;
    white-space: break-spaces;
}
.armada-mobile .dropdown-menu li.dropdown-header>a{
  font-weight: 700 !important;
  color: var(--brand-armada-secondary-yellow-color);
  text-transform: uppercase;
}
.armada-mobile .dropdown-menu li.dropdown-sub-category>a{
  font-weight: 700 !important;
  color: var(--brand-armada-secondary-yellow-color);
  text-transform: uppercase;
}
.armada-mobile .accordion-inner .accordion-inner-sub{
  display: block;
  margin: 0 auto;
}
.armada-mobile .accordion-inner .accordion-inner-sub li{
  list-style: none;
  font-size: 16px;
  color: var(--brand-armada-secondary-yellow-color) !important;
  font-weight: 600 !important;
  }
.armada-mobile .armada-mobile-sub-nav .dropdown-sup .dropdown-menu{
  margin-left: 0px;
}
.armada-mobile .armada-mobile-sub-nav .accordion-inner .mshow .nav{
  margin-bottom: 0px;
}
.armada-mobile .armada-mobile-sub-nav .nav {
  margin: 0;
  padding: 0;
  background-color:  #232323 !important;
}
.armada-mobile #mobile-sws-1.armada-mobile-sub-nav .nav,
.armada-mobile #mobile-sws-2.armada-mobile-sub-nav .nav {
  margin: 0px;
  padding: 10px;
  width: 100%;
  float: left;
  box-sizing: border-box;
  background-color: black;
  border: none;
}
.armada-mobile .sws-mobile-header-nav li.dropdown.dropdown-sup {
  border: none;
  clear: both;
  border-bottom: 0px solid white;
}
.armada-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: 15px;
  margin-top: 5px;
  background-color: transparent;
} 
/* ********* END HEADER ********* */
/**************************************     HEROS     ************************************************/
.carousel-top.armada-sws-store {
  margin-top: 0px;
  width: 100vw !important;
  position: relative;
  margin-left: -50vw;
  left: 50%;
  padding-bottom: 1em;
  margin-top: -0.95em;
}
.armada-sws-store #myCarousel .carousel-inner.hero-section, 
.armada-sws-store #myCarousel .carousel-inner.hero-section-french {
  height: 350px;
  margin-top: -15px;
}
.armada-sws-store #myCarousel .hero-section {
  display: flex;
  justify-content: center;
  padding-bottom: 0em;
  background-position: 50% 75%;
}
.armada-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;
}
.armada-sws-store #myCarousel .text-content {
  padding: 0.75em 0em 0.75em 5em;
}
.armada-sws-store #myCarousel h2 {
  font-size: 2.5em;
  margin-bottom: 14px;
  color: var(--brand-armada-secondary-yellow-color);
  line-height: normal;
  letter-spacing: 0.5px;
  font-weight: 600;
  font-family: var(--body-hero-title-armada-font);
}
.armada-sws-store #myCarousel .carousel-inner.hero-section-french h2 {
  font-size: 2em;
}
.armada-sws-store #myCarousel h3 {
  color: white;
  font-weight: 400;
  font-size: 1.75em;
  font-family: var(--body-armada-font);
  line-height: normal;
}
.armada-sws-store #myCarousel .image-content img {
  object-fit: contain;
  height: auto;
  max-width: 100%;
  max-height: 300px;
}
/**************************************     BUTTONS     ************************************************/
.armada-item:not(.side-ad) {
  height: 9em;
}
 .armada-item img {
  max-width: 74%;
  height: auto;
  padding-left: 0;
  display: block;
  padding-top: 2em;
  margin: 0 auto;
}
.armada-item .img-btn-2 img, .armada-item .img-btn-6 img {
  transform: rotate(-15deg);
  padding-top: 4em;
  max-width: 50%;
}
.armada-item .img-btn-5 img {
  transform: rotate(-15deg);
  padding-top: 4em;
  margin-left: 2em;
  max-width: 80%;
}
.armada-item .img-btn-1 img, 
.armada-item .img-btn-4 img, 
.armada-item .img-btn-7 img, 
.armada-item .img-btn-8 img {
    padding-top: 0em;
    margin-right: 1em;
}
.sws-armada-buttons .armada-application-title .application-title {
  font-family: var(--body-armada-font);
  font-size: 1rem;
  line-height: normal;
}
/**************************************     SIDE AD     ************************************************/
.armada-item.side-ad {
  max-height: 232px;
  grid-template-rows: repeat(3, 1fr);
  padding: 1em 1em;
}
.armada-item.side-ad img {
  margin-right: -11em;
  margin-top: 0px;
  padding-top: 0;
  height: 260px;
}
.sws-armada-buttons.sws-armada-buttons-fr .armada-item.side-ad img {
  margin-right: -12em;
}
.side-ad-btn {
  margin-top: 0.9em;
  font-size: 1em;
  padding: 7px 6px;
}
.sws-armada-buttons.sws-armada-buttons-fr .side-ad-btn {
  padding: 6px 2px;
  margin-top: 2em;
  font-size: 0.9em;
}
.armada-item.side-ad .armada-side-ad-title p.application-title {
  font-size: 1.1em;
}
.armada-item.side-ad .armada-side-ad-subtitle p.application-subtitle {
  font-size: 1em;
}
/* End Side Ad*/
  
/* ********* END BUTTONS ********* */
/**************************************     ABOUT PAGE     ************************************************/
.row-fluid.about-armada-container {
  width: 95vw;
  padding: 30px 10px 30px 20px;
}
.row-fluid.about-armada-container p {
  text-align: left;
}
.armada-about .about-armada-hero {
  margin-top: -33px;
}
.armada-about .about-armada-hero-fr {
  margin-top: -33px;
}


}
  
@media (max-width: 767px) {
/**************************************     HEADER     ************************************************/
.navbar-inner.armada-mobile {
  margin-left: -20px;
  margin-right: -20px;
}
/**************************************     NAV     ************************************************/
/****** English ******/
li.home-btn.active-animation.dropdown {
  width: 13%;
  margin-right: 0.5%;
}
.armada-mobile #SWS-mobile-first-nav {
  width: 34%;
  margin-left: 0em;
  margin-right: 0.5%;
}
.armada-mobile #SWS-mobile-third-nav {
  width: 44%;
  margin-left: 0em;
  margin-right: 0.5%;
}
.armada-mobile #SWS-mobile-hamburger-nav {
  width: 7%;
  margin-left: 0em;
  padding: 0 0%;
  border: 1px solid var(--brand-armada-secondary-yellow-color);
}
.armada-mobile .sws-mobile-header-nav .navbar-armada-subsite-mobile {
    margin-top: 8px !important;
    z-index: 9;
  }
  
/* ********* END HEADER ********* */
/**************************************     HEROS     ************************************************/
.armada-sws-store #myCarousel h2{
  font-size: 2em;
}
.armada-sws-store #myCarousel h3{
  font-size: 1.5em;
}
.armada-sws-store #myCarousel .hero-section, 
.armada-sws-store #myCarousel .image-content{
    justify-content: start;
}
.armada-sws-store #myCarousel .carousel-inner.hero-section, 
.armada-sws-store #myCarousel .carousel-inner.hero-section-french {
  height: 300px;
  margin-top: 10px;
  box-shadow: none;
}
.armada-sws-store #myCarousel .hero-content {
  max-width: 768px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  padding: 1.5em 2em 0em;
  height: 90%;
  margin: 0 auto;
  justify-items: center;
}
.armada-sws-store #myCarousel .image-content {
  padding-right: 2em;
}
.armada-sws-store #myCarousel .hero-content .image-content img {
  box-shadow: none;
}
.armada-sws-store #myCarousel .hero-content.armada-slide1 .image-content img {
  padding-top: 0em;
}
.armada-sws-store #myCarousel .text-content {
  padding: 0em 0em 0.75em 0em;
}
.armada-sws-store #myCarousel .carousel-btn {
  font-size: 1em;
  padding: 0.875em 2em;
  border: 2px solid var(--brand-armada-secondary-yellow-color);
}
.row-fluid.armada-sws-store.carousel-top ol.carousel-indicators.mshow.ipad-view-setting{
  margin-top: 0.5em;
  margin-bottom: 0.5em;
} 
.carousel-top.armada-sws-store {
  padding-bottom: 0em;
}

/**************************************     BUTTONS     ************************************************/

.armada-item.side-ad{
  display: none;
  visibility: hidden;
}
.sws-armada-buttons .armada-grid-container{
  grid-template-columns: repeat(2,1fr);
  margin: 0 auto 4em;
}
.sws-armada-buttons .armada-item {
  grid-template-columns: repeat(2, 1fr);
  border: none;
  border-radius: 10px;
  background-color: var(--brand-armada-light-gray-color);
  align-items: center;
  overflow: hidden;
  gap: 10px;
  justify-items: stretch;
}


.armada-item img {
  max-width: 60%;
  height: auto;
  padding-left: 0;
  display: block;
  padding-top: 2em;
  margin: 0 auto;
}
.armada-item .img-btn-2 img, .armada-item .img-btn-6 img {
  transform: rotate(-15deg);
  padding-top: 4em;
  max-width: 40%;
  margin-left: 3em;
}
.armada-item .img-btn-1 img, 
.armada-item .img-btn-4 img, 
.armada-item .img-btn-7 img, 
.armada-item .img-btn-8 img {
  padding-top: 0em;
  margin: 0 auto;
}
.armada-item .img-btn-5 img {
  transform: rotate(-15deg);
  padding-top: 3em;
  margin-left: 4em;
  max-width: 65%;
}
/* ********* END BUTTONS ********* */
/**************************************     ABOUT PAGE     ************************************************/
.row-fluid.about-armada-hero h1 {
  font-size: 60px;
  padding: 0.5em;
}
.row-fluid.about-armada-hero .hero-h1 {
  font-size: 62px;
}
.row-fluid.about-armada-main-content .span12 h2 {
  margin-top: 10px;
}
.row-fluid.about-armada-main-content p {
  padding-bottom: 0em;
}
}

@media (max-width: 600px) {
/**************************************     NAV     ************************************************/
li.home-btn.active-animation.dropdown {
  margin-left: 0em;
  margin-right: 0.5%;
}
.armada-mobile #SWS-mobile-first-nav {
  width: 34%;
  margin-left: 0em;
  margin-right: 0.5%;
}
.armada-mobile #SWS-mobile-third-nav {
  width: 44%;
  margin-left: 0em;
  margin-right: 0.5%;
}
.armada-mobile #SWS-mobile-hamburger-nav {
  width: 7%;
  margin-left: 0em;
  padding: 0;
}
.armada-mobile .sws-mobile-header-nav .nav > li > a{
  font-size: 0.9em;
}

/**************************************     HERO     ************************************************/
.armada-sws-store #myCarousel .carousel-inner.hero-section, 
.armada-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;
}
.armada-sws-store #myCarousel .hero-section, 
.armada-sws-store #myCarousel .image-content {
  order: -1;
  padding: 0em;
}
.armada-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;
}
.armada-sws-store #myCarousel .text-content {
  padding: 1em 1em 0.75em 1em;
}
.armada-sws-store #myCarousel .image-content img {
  object-fit: contain;
  height: auto;
  max-width: 100%;
  max-height: 250px;
}
.sws-armada-buttons .armada-grid-container {
  gap: 2%;
}
/********/  

/**************************************     BUTTONS     ************************************************/
.armada-item img {
  max-width: 65%;
  height: auto;
  padding-left: 0;
  display: block;
  padding-top: 0em;
  margin: 0 auto;
}
.armada-item .img-btn-2 img, 
.armada-item .img-btn-6 img {
  transform: rotate(-15deg);
  padding-top: 3em;
  max-width: 50%;
  margin-left: 2em;
}
.armada-item .img-btn-5 img {
  transform: rotate(-15deg);
  padding-top: 2.5em;
  margin-left: 3em;
  max-width: 75%;
}
.sws-armada-buttons .armada-application-title .application-title {
  padding-left: 0.75em;
}
.sws-armada-buttons .armada-application-title .application-title {
  font-family: var(--body-armada-font);
  font-size: 0.8rem;
  line-height: normal;
}
/* ********* END BUTTONS ********* */
/**************************************     ABOUT PAGE     ************************************************/
.row-fluid.about-armada-container {
  width: 94vw;
  padding: 15px 0px;
}
.row-fluid.about-armada-hero h1 {
  font-size: 48px;
  padding: 0.5em;
}
.row-fluid.about-armada-hero .hero-h1 {
  font-size: 52px;
}  
}

@media (max-width: 480px) {
/**************************************     HEADER     ************************************************/
.armada-mobile .span3 {
  width: 135px;
  margin-top: 13px;
}
.navbar .armada-mobile .span9 {
  width: auto;
  margin-left: 0;
  overflow: hidden;
  float: none;
  margin-top: -6px;
}
/**************************************     NAV     ************************************************/
.armada-mobile #SWS-mobile-third-nav {
  width: 42%;
}
.armada-mobile #SWS-mobile-hamburger-nav {
  width: 8%;
  margin-left: 0em;
  padding: 0 0.3%;
}
/**************************************     HERO     ************************************************/
.carousel-top.armada-sws-store {
  padding-bottom: 0em;
}
.armada-sws-store #myCarousel .hero-content {
  max-width: 480px;
}
/**************************************     BUTTONS     ************************************************/
.sws-armada-buttons .armada-grid-container {
  grid-template-columns: repeat(1, 1fr);
  gap: 1%;
  margin-bottom: 4em;
}
.armada-item img {
   max-width: 42%;
   height: auto;
   padding-left: 0;
   display: block;
   padding-top: 2em;
   margin: 0 auto;
}
.armada-item .img-btn-2 img, 
.armada-item .img-btn-6 img {
  transform: rotate(-15deg);
  padding-top: 3em;
  max-width: 28%;
  margin-left: 5em;
}
.armada-item .img-btn-5 img {
  transform: rotate(-15deg);
  padding-top: 5em;
  margin-left: 5em;
  max-width: 55%;
}
.armada-item:not(.side-ad) {
  height: 7.5em;
} 
.sws-armada-buttons .armada-application-title .application-title {
  font-family: var(--body-armada-font);
  font-size: 1rem;
  line-height: normal;
}
/* ********* END BUTTONS ********* */
/**************************************     ABOUT PAGE     ************************************************/
.row-fluid.about-armada-container {
  width: 91vw;
  padding: 15px 0px;
}
.armada-about .about-armada-hero {
  height: 300px;
}
.row-fluid.about-armada-hero h1 {
  font-size: 3em;
}
.row-fluid.about-armada-hero .hero-h1 {
  font-size: 1.1em;
}

}

@media (max-width: 399px) {
  /**************************************     NAV     ************************************************/

.armada-mobile .sws-mobile-header-nav .nav > li > a {
  font-size: 0.7em;
}
.armada-mobile .input-append input {
  font-size: 0.7rem;
}

/**************************************     HERO     ************************************************/
.armada-sws-store #myCarousel .text-content {
  padding: 1.75em 1em 0.75em 1em;
}
.armada-sws-store #myCarousel h2,
.armada-sws-store #myCarousel .carousel-inner.hero-section-french h2 {
  font-size: 1.75em;
}
.armada-sws-store #myCarousel h3 {
  font-size: 1.25em;
}
.row-fluid.armada-sws-store.carousel-top ol.carousel-indicators.mshow.ipad-view-setting {
  margin-top: 0.5em;
  margin-bottom: 0em;
}
/**************************************     BUTTONS     ************************************************/
.armada-item:not(.side-ad) {
  height: 6.5em;
}
.armada-item img {
  max-width: 45%;
  height: auto;
  padding-left: 0;
  display: block;
  padding-top: 2em;
  margin: 0 auto;
}
.armada-item .img-btn-2 img, 
.armada-item .img-btn-6 img {
  margin-left: 4em;
}
.armada-item .img-btn-5 img {
  transform: rotate(-15deg);
  padding-top: 4em;
  margin-left: 4em;
  max-width: 55%;
}
.sws-armada-buttons .armada-application-title .application-title {
  font-family: var(--body-armada-font);
  font-size: 0.8rem;
  line-height: normal;
}
/* ********* END BUTTONS ********* */
/**************************************     ABOUT PAGE     ************************************************/
.armada-about .about-armada-hero {
  height: 230px;
}
.row-fluid.about-armada-hero h1 {
  font-size: 2.3em;
}
.row-fluid.about-armada-hero .hero-h1 {
  font-size: 1.05em;
}
}
@media (max-width: 329px) {
/**************************************     HEADER     ************************************************/
  .armada-mobile .span3 {
    width: 120px;
    margin-top: 13px;
}
/**************************************     NAV     ************************************************/
.navbar .armada-mobile .btn-navbar .icon-bar, .navbar .armada-mobile .btn-navbar:hover .icon-bar {
  max-width: 16px;
}
/**************************************     BUTTONS     ************************************************/
.armada-item img {
  max-width: 45%;
  height: auto;
  padding-left: 0;
  display: block;
  padding-top: 0em;
  margin: 0 auto;
}
.armada-item .img-btn-2 img, 
.armada-item .img-btn-6 img {
  margin-left: 3em;
}
.armada-item .img-btn-5 img {
  transform: rotate(-15deg);
  padding-top: 4em;
  margin-left: 3em;
  max-width: 55%;
}
.sws-armada-buttons .armada-application-title .application-title {
  font-family: var(--body-armada-font);
  font-size: 0.7rem;
  line-height: normal;
}
/* ********* END BUTTONS ********* */
/**************************************     ABOUT PAGE     ************************************************/
.row-fluid.about-armada-hero h1 {
  font-size: 2em;
}
.row-fluid.about-armada-hero .hero-h1 {
  font-size: 1.1em;
}

}

