/*Base*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

:focus {
  outline: 0;
}

ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

:focus {
  outline: 0;
}

ins {
  text-decoration: none;
}

del {
  text-decoration: line-through;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  cursor: pointer;
}
a:hover {
  text-decoration: none;
}

/*Bootsrap Reset*/
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

b,
strong {
  font-weight: bold;
}

img {
  border: 0;
}

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

input[type=checkbox],
input[type=radio] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

input[type=search] {
  -webkit-appearance: textfield;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

/* Mixins should not have CSS properties ex: .class {..} */
/* Add below your website's variable */
/** Add here any useful class that can be used in any website **/
/* Visability and Display */
.no-scroll {
  overflow: hidden !important;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.no-selection {
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -moz-user-select: none; /* Old versions of Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none;
}

.display-block {
  display: block;
}

.display-none {
  display: none;
}

.display-none-important {
  display: none !important;
}

.display-flexbox {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.display-grid {
  display: -moz-grid;
  display: -ms-grid;
  display: grid;
}

/* Image and Background */
.background-contain {
  -webkit-backgroundisplay-size: contain;
  -moz-backgroundisplay-size: contain;
  -o-backgroundisplay-size: contain;
  backgroundisplay-size: contain;
}

.background-cover {
  -webkit-backgroundisplay-size: cover;
  -moz-backgroundisplay-size: cover;
  -o-backgroundisplay-size: cover;
  backgroundisplay-size: cover;
}

.image-cover {
  position: absolute;
  top: -9999px;
  right: -9999px;
  bottom: -9999px;
  left: -9999px;
  margin: auto;
  min-width: 100%;
  min-height: 100%;
}
.header-dropdown {
  color: #3c3d46;
  text-transform: capitalize;
  font-weight: bold;
  font-size: 14px;
  text-decoration: none;
  color: #293684;
  cursor: pointer;
}
.header-dropdown:hover {
  color: #111;
}

/* Position */
.y-centering {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.x-centering {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}

.xy-centering {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

.y-centering2 {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

/*Fonts*/
.font-italic {
  font-style: italic;
}

.font-bold {
  font-weight: bold;
}

.overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.overlay.black {
  background-color: #000;
}
.overlay.white {
  background-color: #FFF;
}

.arrow {
  border: solid red;
  display: inline-block;
  padding: 3px;
  z-index: 2;
  cursor: pointer;
}
.arrow:hover {
  border-color: blue;
}
.arrow.right {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.arrow.left {
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
}
.arrow.up {
  -webkit-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
.arrow.down {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.arrow.lg {
  height: 50px;
  width: 50px;
  border-width: 0 5px 5px 0;
}
.arrow.lg.semi-bold {
  border-width: 0 7.5px 7.5px 0;
}
.arrow.lg.bold {
  border-width: 0 10px 10px 0;
}
.arrow.md {
  height: 40px;
  width: 40px;
  border-width: 0 4px 4px 0;
}
.arrow.md.semi-bold {
  border-width: 0 6px 6px 0;
}
.arrow.md.bold {
  border-width: 0 8px 8px 0;
}
.arrow.sm {
  height: 30px;
  width: 30px;
  border-width: 0 3px 3px 0;
}
.arrow.sm.semi-bold {
  border-width: 0 4.5px 4.5px 0;
}
.arrow.sm.bold {
  border-width: 0 6px 6px 0;
}
.arrow.xs {
  height: 20px;
  width: 20px;
  border-width: 0 2px 2px 0;
}
.arrow.xs.semi-bold {
  border-width: 0 3px 3px 0;
}
.arrow.xs.bold {
  border-width: 0 4px 4px 0;
}
.arrow.xxs {
  height: 10px;
  width: 10px;
  border-width: 0 2px 2px 0;
}
.arrow.xxs.semi-bold {
  border-width: 0 3px 3px 0;
}
.arrow.xxs.bold {
  border-width: 0 4px 4px 0;
}

/** Is 991px **/
.is-tablet-wide {
  display: none;
  height: 0;
  width: 0;
  visibility: hidden;
}
@media (max-width: 991px) {
  .is-tablet-wide {
    display: block;
  }
}

/* Reset Css */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

body {
  line-height: 1;
}

ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

.border-blue {
  border: 1px solid #293684 !important;
}

.indecator-index {
  z-index: 1;
}
.indecator-index li.active {
  background-color: #293684;
}

/* remember to define focus styles! */
:focus {
  outline: 0;
}

/* remember to highlight inserts somehow! */
ins {
  text-decoration: none;
}

del {
  text-decoration: line-through;
}

/* tables still need 'cellspacing="0"' in the markup */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Reset Css */
body {
  /*
     background: url(../images/background.jpg) no-repeat center center fixed;
     -webkit-background-size: cover;
     -moz-background-size: cover;
     -o-background-size: cover;
     background-size: cover;  */
  font-family: "Quicksand", sans-serif;
  overflow-x: hidden;
}

html, body {
  height: 100%;
}

/* Start your Code*/
/*My Classes*/
/** English Fonts **/
/*
@font-face 
{
  font-family: 'lightFont';
  src:  url('../fonts/MyriadPro-Light.woff2') format('woff2'),
        url('../fonts/MyriadPro-Light.woff') format('woff');
}

@font-face {
  font-family: 'normalFont';
  src:  url('../fonts/MyriadPro-Regular_0.woff2') format('woff2'),
        url('../fonts/MyriadPro-Regular_0.woff') format('woff');
}

@font-face {
  font-family: 'boldFont';
  src:  url('../fonts/MyriadPro-Bold_0.woff2') format('woff2'),
        url('../fonts/MyriadPro-Bold_0.woff') format('woff');
}

*/
.tooltip {
  z-index: 1000;
  position: absolute;
}

.table > .thead > tr > th {
  vertical-align: middle;
  font-size: 14px;
}
.table td {
  text-align: center;
}
.table .remove-icon {
  padding: 16px !important;
}

.select2-container--default .select2-selection--single {
  height: 35px !important;
  border: 2px solid #ececec !important;
}

.common-arrow {
  border: solid #293684;
  display: inline-block;
  padding: 3px;
  position: absolute;
  z-index: 2;
  cursor: pointer;
}
.common-arrow:hover {
  border-color: #ffdc00;
}
.common-arrow.right {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.common-arrow.left {
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}
.common-arrow.up {
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
}
.common-arrow.down {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
.common-arrow.lg {
  height: 50px;
  width: 50px;
  border-width: 0 5px 5px 0;
}
.common-arrow.md {
  height: 40px;
  width: 40px;
  border-width: 0 4px 4px 0;
}
.common-arrow.sm {
  height: 30px;
  width: 30px;
  border-width: 0 3px 3px 0;
}
.common-arrow.xs {
  height: 20px;
  width: 20px;
  border-width: 0 3px 3px 0;
}
.common-arrow.xxs {
  height: 13px;
  width: 13px;
  border-width: 0 2px 2px 0;
}
.common-arrow.xxxs {
  height: 9px;
  width: 9px;
  border-width: 0 2px 2px 0;
}
@media (max-width: 1199px) {
  .common-arrow.lg, .common-arrow.md {
    height: 30px;
    width: 30px;
    border-width: 0 3px 3px 0;
  }
}
@media (max-width: 767px) {
  .common-arrow.lg, .common-arrow.md {
    height: 20px;
    width: 20px;
    border-width: 0 3px 3px 0;
  }
}

.back-btn {
  padding: 20px 30px;
  display: inline-block;
  font-size: 14px;
  text-decoration: none !important;
  color: #000;
}
.back-btn:hover {
  font-weight: bold;
}
.back-btn i {
  width: 20px;
  height: 20px;
  line-height: 20px;
  border-radius: 50%;
  text-align: center;
  color: #FFF;
  background-color: #293684;
  font-size: 12px;
  margin-right: 6px;
}

.no-scroll {
  overflow: hidden !important;
}

.flexBox, .career-page #careerForm, .contact-page .form-sections, .our-team-page .team-boxes, .tabs-page .tabs-section li, .tabs-page .tabs-section, .home-page .contact-us, .home-page .order-spareparts, .home-page #sliderHome .image-container, .boxes, .lf-rg-sections, footer, header .search, header .rg-part, header {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.backgroundCover, .our-team-page .main-section, .listing-page, .home-page #sliderHome .item {
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.vertical-centering {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.horizantal-centering {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}

.vh-centering {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

.align-left {
  text-align: left !important;
}

.align-right {
  text-align: right;
}

.align-center {
  text-align: center;
}

.is-1199px, .is-991px,
.is-767px, .is-479px {
  display: none;
}

.carousel-fade .carousel-inner .item {
  transition-property: opacity;
}

.carousel-fade .carousel-inner .item,
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
  opacity: 0;
}

.carousel-fade .carousel-inner .active,
.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
  opacity: 1;
}

.carousel-fade .carousel-inner .next,
.carousel-fade .carousel-inner .prev,
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
  left: 0;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

/** End  My Classes**/
.flex-center {
  display: flex;
  justify-content: center;
}

header {
  background-color: #fff;
  box-shadow: -7px -3px 9px;
  position: fixed;
  z-index: 2;
  width: 100%;
  top: 0;
}
header .menu-icon {
  display: none;
}
header .rg-part {
  align-items: center;
  padding-right: 15px;
}
header .rg-part > div {
  padding-left: 5px;
  padding-right: 5px;
}
header .logo {
  flex-basis: 380px;
  padding: 10px;
}
header .logo img {
  width: 100%;
  padding-left: 15px;
}
header .menu {
  z-index: 9;
  flex-grow: 1;
  text-align: center;
  position: relative;
  /*    New  
   width: 451px;
   padding-left: 20px;
   padding-right: 20px;
   margin-left:20px;
   margin-right:20px;
   white-space: nowrap;
   overflow:hidden;

   &:before
   {
       content:"<";
       left:0;
   }
   &:after 
   {
       content:">";
       right:0;
   }
   &:before , &:after 
   {
       color:$blueColor;
       position:absolute;
   }
   & > li 
   {
       width: 137px;
       flex-shrink: 0;
       a 
       {
          white-space: nowrap;
       }
   }
   .menu-cont 
   {
       overflow: hidden;
   }

  */
}
header .menu .about-us-item:hover .sub-menu {
  display: block;
}
header .menu > li {
  display: inline-block;
  padding: 10px 30px;
  position: relative;
  height: 100%;
  padding-top: 30px;
}
header .menu > li a {
  color: #3c3d46;
  text-transform: capitalize;
  font-weight: bold;
  font-size: 14px;
  text-decoration: none;
  color: #293684;
}
header .menu > li a:hover {
  color: #111;
}
header .menu .sub-menu {
  position: absolute;
  z-index: 1;
  top: 100%;
  left: 0;
  transition: all 0.5s ease;
  display: none;
  box-shadow: 1px 3px 5px rgba(0, 0, 0, 0.25);
  width: 200px;
}
header .menu .sub-menu li {
  background-color: #fff;
  padding: 10px;
  text-align: left;
  border-bottom: 1px ridge;
  height: 50px;
  padding-top: 20px;
}
header .menu .sub-menu li a {
  font-size: 13px;
  cursor: pointer;
  text-transform: initial;
  /*color:#3c53dc;*/
  display: block;
}
header .menu .sub-menu li:hover a {
  color: #3c3d46;
}
header .search {
  flex-grow: 1;
  align-items: center;
  position: relative;
  font-size: 13px;
}
header .search i {
  position: absolute;
  left: 10px;
  color: #acacac;
  font-size: 14px;
}
header .search input {
  border: none;
  padding: 5px 0px 5px 20px;
  font-size: 14px;
  border: 2px solid #EEE;
  border-radius: 5px;
  width: 100%;
}
header .search input:focus {
  border-color: rgba(41, 54, 132, 0.4);
}
header .quick-contact {
  color: #293684;
}
header .lang span {
  background-color: #293684;
  border-radius: 50%;
  color: #FFF;
  text-align: center;
  display: block;
  font-weight: bold;
  cursor: pointer;
  height: 30px;
  width: 30px;
  line-height: 30px;
  font-size: 12px;
  display: none;
}
header .lang span:hover {
  background-color: #ffdc00;
  color: #293684;
}
header .lang .ar {
  display: none;
}

footer {
  background-color: #111;
  color: #d8d8d8;
  padding: 10px 20px;
  font-size: 12px;
  align-items: center;
}
footer .menu {
  flex-grow: 1;
  text-align: center;
}
footer .social-links, footer .copy-right {
  flex-basis: 300px;
}
footer .social-links {
  text-align: right;
}
footer .social-links a {
  color: #d8d8d8;
}
footer .social-links i {
  padding-left: 10px;
  padding-right: 10px;
  cursor: pointer;
}
footer .social-links i:hover {
  color: #ffdc00;
}
footer .copy-right {
  line-height: 1.4;
}
footer .copy-right img {
  max-width: 44px;
  margin-left: 6px;
}
footer li {
  display: inline-block;
}
footer li a {
  color: #FFF;
  padding: 10px 20px;
  color: #acacac;
  font-size: 12px;
  text-decoration: none;
}
footer li a:hover {
  color: #FFF;
}

.top-background {
  height: 400px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-color: #FFF;
}

.btn.full {
  width: 200%;
  margin-right: 10px;
}

.btn {
  display: inline-block;
  padding: 5px;
  color: #FFF;
  background-color: #293684;
  font-size: 13px;
  font-weight: bold;
  border: 1px solid #293684;
  transition: all 0.2s ease;
}
.btn:hover {
  background-color: #ffdc00;
  color: #293684;
  border-color: #eee;
}
.btn.lg {
  padding-left: 30px;
  padding-right: 30px;
  font-size: 14px;
}
.btn.lg2x {
  padding-left: 50px;
  padding-right: 50px;
  font-size: 16px;
}

.home-page #cantactForm button {
  padding-left: 35px;
  padding-right: 35px;
  font-size: 14px;
}

.verify-msg {
  color: red;
  padding-top: 10px;
  font-size: 13px;
  font-weight: bold;
  opacity: 0;
  transition: all 0.5s ease;
  opacity: 0;
}

.textual-input {
  padding: 5px;
  font-size: 14px;
  border: 2px solid #EEE;
  border-radius: 5px;
  width: 100%;
  margin-top: 5px;
  background-color: #FFF;
}
.textual-input:hover, .textual-input:focus {
  background-color: #f5f5f5;
  border: 2px solid rgba(41, 54, 132, 0.4);
}

#address {
  width: 203%;
}

textarea {
  resize: none;
}

.modal-header {
  background-color: #293684;
  color: #FFF;
}

.slider-arrows {
  width: 100%;
  z-index: 1;
}
.slider-arrows .left {
  left: 40px;
}
.slider-arrows .right {
  right: 40px;
}

.page-title {
  font-size: 30px;
  text-transform: uppercase;
  text-align: center;
  color: #293684;
  /*
  &::first-letter 
  { 
      font-size: 60px;
      color: $yellowColor;
      text-shadow: 1px -1px 1px #847b7b;
      text-transform: uppercase;
  }
  */
}

.page-brief {
  font-size: 14px;
  font-style: italic;
  font-weight: bold;
  line-height: 1.4;
}

#goToBottom {
  position: absolute;
  bottom: 20px;
  opacity: 0.7;
  cursor: pointer;
}
#goToBottom:hover {
  opacity: 1;
}

.add-more {
  text-align: center;
  margin-bottom: 20px;
}
.add-more i {
  cursor: pointer;
  color: #293684;
  font-size: 20px;
}
.add-more i:hover {
  color: rgba(41, 54, 132, 0.7);
}
.add-more p {
  margin-top: 5px;
  font-size: 14px;
  font-weight: bold;
}

.details-table table .thead {
  background-color: #293684;
  color: #FFF;
}
.details-table table .thead th {
  font-size: 13px;
}
.details-table span {
  cursor: pointer;
  font-size: 17px;
  font-weight: bold;
}

.main-section {
  padding: 30px 30px;
  background: rgb(255, 255, 255);
  background: -moz-linear-gradient(top, rgb(255, 255, 255) 0%, rgb(246, 246, 246) 47%, rgb(237, 237, 237) 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, rgb(255, 255, 255)), color-stop(47%, rgb(246, 246, 246)), color-stop(100%, rgb(237, 237, 237)));
  background: -webkit-linear-gradient(top, rgb(255, 255, 255) 0%, rgb(246, 246, 246) 47%, rgb(237, 237, 237) 100%);
  background: -o-linear-gradient(top, rgb(255, 255, 255) 0%, rgb(246, 246, 246) 47%, rgb(237, 237, 237) 100%);
  background: -ms-linear-gradient(top, rgb(255, 255, 255) 0%, rgb(246, 246, 246) 47%, rgb(237, 237, 237) 100%);
  background: linear-gradient(to bottom, rgb(255, 255, 255) 0%, rgb(246, 246, 246) 47%, rgb(237, 237, 237) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#ededed", GradientType=0 );
}

.lf-rg-sections {
  display: block;
  font-size: 16px;
  line-height: 1.4;
  overflow: hidden;
}
.lf-rg-sections > div {
  flex-shrink: 0;
  padding: 20px;
}
.lf-rg-sections .lf-part {
  flex-basis: 40%;
  flex-grow: 1;
}
.lf-rg-sections .rg-part {
  flex-basis: 60%;
}
.lf-rg-sections .products-slider {
  width: 100%;
}

.boxes {
  flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: center;
}

.box {
  background-color: #FFF;
  padding: 15px;
  margin: 10px;
  border: 2px solid #efefef;
  flex-basis: 23%;
  border-bottom-left-radius: 20px;
  border-top-right-radius: 20px;
  flex-grow: 1;
}
.box:hover {
  border-color: rgba(255, 220, 0, 0.6);
}
.box .box-image {
  height: 150px;
  max-width: 100%;
  margin: auto;
}
.box .box-image img {
  width: auto;
  margin: auto;
  max-width: 100%;
  max-height: 100%;
}
.box .box-title {
  max-width: 200px;
  margin: auto;
  margin-bottom: 25px;
  font-weight: bold;
  text-transform: uppercase;
  color: #293684;
  text-align: center;
}
.box .box-brief {
  padding: 10px 0;
  font-size: 14px;
  line-height: 1.4;
}
.box .box-more .btn {
  background-color: #293684;
}
.box .box-more .btn:hover {
  background-color: #111;
  color: #FFF;
}

.home-page .window-wrapper {
  position: relative;
  height: 600px;
}
.home-page #sliderHome, .home-page #sliderHome .item,
.home-page #sliderHome .carousel-inner {
  height: 100%;
}
.home-page #sliderHome .image-container {
  position: relative;
  height: 100%;
  text-align: center;
}
.home-page #sliderHome .image-container img {
  max-height: 100%;
  margin: auto;
}
.home-page #sliderHome .item {
  background-repeat: no-repeat;
  background-position: center;
}
.home-page .padding {
  padding: 40px;
}
.home-page .aside-margin {
  margin-left: 285px;
  margin-right: 285px;
}
.home-page .section-title {
  font-size: 30px;
  text-transform: uppercase;
  color: #283583;
  font-weight: bold;
}
.home-page .texts {
  text-align: center;
  margin-bottom: 20px;
}
.home-page .texts a {
  font-weight: bold;
  color: #293684;
  font-size: 13px;
}
.home-page .owl-carousel .owl-nav button.owl-next,
.home-page .owl-carousel .owl-nav button.owl-prev {
  color: #293684 !important;
  height: 30px;
}
.home-page .owl-dots button {
  border: 1px #bdb7b7 solid !important;
}
.home-page .section {
  background: rgb(255, 255, 255);
  background: -moz-linear-gradient(top, rgb(255, 255, 255) 0%, rgb(246, 246, 246) 47%, rgb(237, 237, 237) 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, rgb(255, 255, 255)), color-stop(47%, rgb(246, 246, 246)), color-stop(100%, rgb(237, 237, 237)));
  background: -webkit-linear-gradient(top, rgb(255, 255, 255) 0%, rgb(246, 246, 246) 47%, rgb(237, 237, 237) 100%);
  background: -o-linear-gradient(top, rgb(255, 255, 255) 0%, rgb(246, 246, 246) 47%, rgb(237, 237, 237) 100%);
  background: -ms-linear-gradient(top, rgb(255, 255, 255) 0%, rgb(246, 246, 246) 47%, rgb(237, 237, 237) 100%);
  background: linear-gradient(to bottom, rgb(255, 255, 255) 0%, rgb(246, 246, 246) 47%, rgb(237, 237, 237) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#ededed", GradientType=0 );
}
.home-page .order-spareparts {
  background-color: #f2f2f2;
  flex-wrap: wrap;
}
.home-page .order-spareparts form {
  padding-right: 50px;
  display: flex;
  flex-wrap: wrap;
  margin: 0 50px;
}
.home-page .order-spareparts .lf-part {
  flex-grow: 1;
  flex-basis: 50%;
}
.home-page .order-spareparts .rg-part {
  flex-shrink: 0;
  min-height: 300px;
  flex-grow: 1;
  flex-basis: 30%;
}
.home-page .order-spareparts .lf-part {
  padding: 30px;
}
.home-page .order-spareparts .input-field {
  margin-bottom: 15px;
  padding-right: 10px;
  width: 50%;
}
.home-page .order-spareparts .input-field label {
  margin-bottom: 5px;
  color: #293684;
}
.home-page .order-spareparts :last-child {
  padding-right: 0;
}
.home-page .contact-us {
  padding-top: 50px;
  padding-bottom: 40px;
}
.home-page .contact-us .rg-part .section-title {
  display: none;
}
.home-page .contact-us .lf-part {
  padding: 0px 40px;
}
.home-page .contact-us > div {
  flex-basis: 50%;
}
.home-page .contact-us .input-field {
  margin-bottom: 10px;
}
.home-page .contact-us label {
  color: #293684;
}

.select2-container {
  width: 100% !important;
}

.owl-carousel .owl-dots.disabled,
.owl-carousel .owl-nav.disabled {
  display: block;
}

.owl-prev, .owl-next {
  font-size: 40px !important;
  color: #FFF !important;
  display: inline-block;
  margin-right: 25px;
  line-height: 10px !important;
}

.owl-dots button {
  color: #FFF !important;
  display: inline-block;
  width: 9px;
  height: 9px;
  border: 1px #eee solid !important;
  margin: 0 5px;
}
.owl-dots button.active {
  background-color: #ffdc00 !important;
  border: 1px #ffdc00 solid !important;
}

.sliders-wrapper {
  width: 100%;
}
.sliders-wrapper .section-title {
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-size: 22px;
  color: #ffffff;
  text-shadow: 2px 2px 8px black;
  /*
  &::first-letter 
  { 
      font-size: 40px;
      color: $yellowColor;
      text-shadow: 1px -1px 1px #847b7b;
      text-decoration:none;
  }*/
}
.sliders-wrapper .section-title a {
  text-decoration: none !important;
}
.sliders-wrapper .section-title a {
  color: #fff;
}

.brands-slider {
  width: 80%;
  margin: auto;
  left: 0;
  right: 0;
  margin-bottom: 40px;
}
.brands-slider .owl-carousel .owl-nav {
  margin-top: 18px;
}
.brands-slider .owl-carousel .owl-dots {
  margin-bottom: 10px;
  margin-top: 10px;
}
.brands-slider .owl-carousel .owl-stage-outer {
  height: 145px;
}
.brands-slider .owl-carousel .owl-item {
  background-color: #FFF;
  padding: 20px;
  border-bottom-left-radius: 20px;
  border-top-right-radius: 20px;
  width: 230px !important;
  height: 135px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brands-slider .owl-carousel .owl-item img {
  max-height: 48px;
  width: auto;
  margin-left: 30px;
  margin-right: 30px;
}

.products-slider {
  width: 80%;
  margin: auto;
  left: 0;
  right: 0;
}
.products-slider .box .box-brief {
  max-width: 200px;
  min-height: 100px;
}
.products-slider .box-name {
  cursor: pointer;
  text-align: center;
  margin-right: 10px;
  padding: 0 10px;
}
.products-slider .box-name a {
  text-decoration: none;
}
.products-slider .owl-carousel .owl-nav {
  margin-top: 10px;
}
.products-slider .owl-carousel .owl-dots {
  margin-bottom: 10px;
  margin-top: 10px;
}
.products-slider .owl-carousel .owl-stage .box:first-child {
  margin-left: 0;
}

/* Others */
.listing-page {
  background-image: url("https://www.ozymes.ca/media/1116/shutterstock_265613744.jpg");
}
.listing-page header {
  box-shadow: -7px -3px 9px;
}
.listing-page .boxes {
  margin-top: 50px;
  justify-content: center;
}

.brands-page .box {
  flex-basis: 400px;
  flex-grow: 0;
}
.brands-page .box .box-image {
  height: 80px;
}
.brands-page .box .box-image img {
  margin-top: 20px;
}

.products-page .box {
  flex-basis: calc(25% - 20px);
  flex-grow: 0;
}
.products-page .box .box-image {
  margin-bottom: 10px;
}

.text-page .section-title {
  font-weight: bold;
  color: black;
  text-transform: uppercase;
}
.text-page .page-title {
  display: block;
  text-align: center;
  background-color: transparent;
  padding: 10px 50px;
  font-size: 24px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.text-page .text {
  margin-top: 20px;
}
.text-page .main-section {
  line-height: 1.4;
}
.text-page .main-section .submit-btn {
  margin-top: 20px;
  margin-left: 10px;
}

.tabs-page .tabs-section {
  margin-bottom: 15px;
}
.tabs-page .tabs-section li {
  background-color: #eee;
  padding: 10px;
  list-style: none;
  flex-basis: 200px;
  text-align: center;
  cursor: pointer;
  color: #000;
  box-shadow: -1px 2px 3px rgba(199, 199, 199, 0.45);
  font-weight: bold;
  justify-content: center;
  align-items: center;
}
.tabs-page .tabs-section li.active {
  background-color: #e2e2e2;
}
.tabs-page .tabs-panes > div {
  display: none;
}
.tabs-page .tabs-panes .active {
  display: block;
}

.brand-page .brand-logo {
  margin-top: 40px;
}
.brand-page .brand-logo img {
  max-width: 200px;
}
.brand-page .lf-rg-sections .products-slider {
  width: 100%;
}

.product-page .page-brief {
  margin-top: 20px;
}
.product-page .lf-rg-sections {
  margin-top: 20px;
}
.product-page .product-images {
  background-color: #FFF;
  padding: 20px;
  display: inline-block;
  margin-top: 10px;
}
.product-page .product-images a {
  display: inline-block;
}
.product-page .product-images a img {
  height: 100%;
  margin: 10px;
  max-width: 200px;
}
.product-page .boxes .box {
  flex-basis: 300px;
  flex-grow: 0;
}
.product-page .boxes .box .box-image {
  height: 50px;
  margin-bottom: 10px;
  margin-top: 10px;
}
.product-page .related-brands h3 {
  font-weight: bold;
}

.our-team-page form .input-field {
  margin-bottom: 10px;
}
.our-team-page .branches {
  margin-top: 30px;
}
.our-team-page .branch {
  margin-bottom: 10px;
  margin-top: 10px;
}
.our-team-page .branch .branch-name {
  background-color: #293684;
  padding: 13px;
  color: #FFF;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: bold;
}
.our-team-page .team-boxes {
  border-bottom: 1px solid #EEE;
  flex-wrap: wrap;
}
.our-team-page .team-box {
  padding: 20px;
  outline: 1px solid #f6f6f6;
  transition: all 0.5s ease;
  flex: 251px;
  background-color: #FFF;
}
.our-team-page .team-box:hover {
  background-color: #FFF;
}
.our-team-page .member-name {
  color: #111;
  margin-bottom: 5px;
  font-size: 14px;
  font-weight: bold;
}
.our-team-page .member-title {
  color: #111;
  font-size: 11px;
}
.our-team-page .member-img {
  height: 140px;
  text-align: center;
  padding-top: 10px;
  padding-bottom: 10px;
}
.our-team-page .member-img img {
  border-radius: 10px;
  height: 100%;
}
.our-team-page .member-contact {
  margin-top: 5px;
  font-size: 13px;
}
.our-team-page .member-contact .line {
  margin-bottom: 7px;
  position: relative;
}
.our-team-page .member-contact .line .anchor-text {
  padding-left: 20px;
}
.our-team-page .member-contact .line a {
  color: #1d1d1b;
}
.our-team-page .member-contact .line span:before {
  font-family: "Font Awesome 5 Free";
  color: #1d1d1b;
  width: 17px;
  height: 17px;
  vertical-align: middle;
  padding-right: 7px;
  font-weight: bold;
  font-size: 13px;
}
.our-team-page .member-contact .line.line-tel span:before {
  font-family: "Font Awesome 5 Free";
  content: "\f095";
}
.our-team-page .member-contact .line.line-email span:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
}
.our-team-page .member-contact .line-email i {
  font-size: 20px;
  color: #293684;
}

.select2-container {
  margin-top: 5px !important;
  display: block;
  width: 100% !important;
}

.contact-page .form-sections {
  margin-top: 40px;
}
.contact-page .form-sections > div {
  padding: 25px 20px;
}
.contact-page .form-sections .left-section {
  flex-basis: 400px;
}
.contact-page .form-sections .right-section {
  flex-grow: 1;
}
.contact-page .form-sections .input-field {
  width: 100%;
  padding: 6px 0px;
}
.contact-page .form-sections .input-title {
  width: 100%;
}

.careers-page .careers-list {
  padding: 30px 50px 0 0;
}
.careers-page .career-item {
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #EEE;
}
.careers-page .career-title {
  font-weight: bold;
  font-size: 17px;
}
.careers-page .career-more a {
  display: inline-block;
}
.careers-page .career-description {
  font-size: 14px;
  padding-top: 10px;
  padding-bottom: 10px;
  width: 80%;
  line-height: 1.4;
}

.career-page .input-field {
  margin-top: 10px;
  margin-bottom: 10px;
  flex-basis: 46%;
  margin: 10px;
  flex-grow: 1;
}
.career-page #careerForm {
  flex-wrap: wrap;
}
.career-page #careerForm textarea {
  min-height: 100px;
}
.career-page .select2-container {
  display: block;
  width: 100% !important;
  margin-top: 3px;
}
.career-page label {
  display: block;
}

.request-quote-page .form-section {
  padding: 30px;
}
.request-quote-page .input-field {
  margin-bottom: 10px;
  margin-top: 10px;
  text-align: left;
}

/* Search Page */
.search-page .search-results {
  padding: 30px;
}
.search-page .search-head {
  margin-bottom: 20px;
}
.search-page .search-head label {
  margin-bottom: 10px;
}
.search-page .search-head input {
  padding: 10px;
  background-color: #f1f1f1;
  width: 500px;
  border: 2px solid #b6ddec;
}
.search-page #results {
  width: 100% !important;
}
.search-page #results thead tr:first-child,
.search-page #results_filter {
  display: none;
}
.search-page #results td {
  display: block;
}
.search-page #results td:first-child a {
  color: #87754d;
  font-size: 18px;
}
.search-page #results td:last-child {
  font-size: 13px;
  margin-top: 3px;
}
.search-page .dataTables_info {
  color: #424141;
  font-size: 13px;
  padding-top: 10px;
}
.search-page #results_paginate {
  padding-top: 5px;
  padding-bottom: 20px;
}
.search-page #results_paginate a {
  display: inline-block;
  margin-left: 5px;
  margin-right: 5px;
  font-size: 13px;
  cursor: pointer;
}
.search-page #results_paginate a:first-child {
  margin-left: 0;
}
.search-page #results tr {
  padding: 20px 0;
  border-bottom: 1px solid #e8e7e4;
}
.search-page #results table {
  color: #FFF;
  margin-top: 40px;
}
.search-page #results_length, .search-page #results_filter,
.search-page #results thead {
  display: none;
}
.search-page #results table, .search-page #results td, .search-page #results tr, .search-page #results tbody {
  display: block;
  width: 100% !important;
  color: #111;
}

.brand-page .main-section .owl-stage-outer {
  display: flex !important;
  justify-content: center !important;
}

/*Media Queries*/
@media (max-width: 1600px) {
  .home-page .aside-margin {
    margin-left: 140px;
    margin-right: 140px;
  }
}
@media (max-width: 1400px) {
  .is-1199px {
    display: block;
  }
  header .menu > li {
    padding: 10px 5px;
  }
  header .menu > li a {
    font-size: 14px;
  }
  header .rg-part {
    flex-basis: 300px;
    flex-wrap: wrap;
    padding: 10px 0;
  }
  header .search {
    margin-bottom: 10px;
  }
  .home-page .aside-margin {
    margin-left: 100px;
    margin-right: 100px;
  }
  .home-page .select2-container {
    width: 100% !important;
  }
  .home-page .order-spareparts {
    flex-wrap: wrap;
  }
  .home-page .order-spareparts form {
    padding-right: 0;
  }
  .home-page .order-spareparts .lf-part {
    width: 100%;
  }
  .details-table {
    overflow-x: auto;
  }
  .details-table .table {
    overflow: hidden;
  }
}
@media (max-width: 1199px) {
  .is-1199px {
    display: block;
  }
  header {
    justify-content: space-between;
  }
  header .menu-icon {
    display: block;
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
    z-index: 10;
    color: #111;
  }
  header .menu-icon span {
    width: 30px;
    height: 2px;
    display: block;
    background-color: #000;
    margin: 5px;
  }
  header .menu-icon .close-menu {
    display: none;
    font-size: 25px;
  }
  header .menu-icon .open-menu {
    display: block;
  }
  header .menu-icon.active .close-menu {
    display: block;
  }
  header .menu-icon.active .open-menu {
    display: none;
  }
  header .logo {
    flex-basis: 360px;
  }
  header .logo img {
    width: 100%;
  }
  header .menu {
    position: fixed;
    order: 3;
    cursor: pointer;
    cursor: auto;
    flex-grow: 1;
    text-align: center;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgb(255, 255, 255);
    color: #000;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    display: none;
  }
  header .menu > li {
    display: none;
    height: auto;
  }
  header .menu.active {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  }
  header .menu.active > span {
    display: none;
  }
  header .menu.active > li {
    flex-shrink: 0;
    position: relative;
    flex-wrap: wrap;
    display: block;
  }
  header .menu .sub-menu {
    position: relative;
    top: auto;
    display: block !important;
    left: calc(50% - 95px);
    box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
  }
  header .menu .sub-menu li {
    text-align: center;
  }
  header .rg-part {
    margin-right: 40px;
  }
  footer li a {
    padding: 10px 5px;
  }
  .home-page .order-spareparts .rg-part {
    min-height: 200px;
  }
  .home-page .aside-margin {
    margin-left: 40px;
    margin-right: 40px;
  }
}
@media (max-width: 991px) {
  .is-991px {
    display: block;
  }
  footer {
    flex-wrap: wrap;
    justify-content: center;
  }
  footer .copy-right {
    order: 3;
  }
  footer .social-links {
    margin-bottom: 7px;
    margin-top: 7px;
  }
  footer .copy-right, footer .social-links, footer .menu {
    text-align: center;
    flex-basis: 100%;
  }
  .home-page .section-title {
    font-size: 15px;
  }
  .home-page .window-wrapper {
    height: 300px;
    min-height: 300px;
  }
  .home-page #sliderHome {
    position: absolute;
    width: 100%;
  }
  .home-page .brands-slider, .home-page .products-slider {
    width: 100%;
  }
  .home-page .brands-slider .owl-carousel .owl-item {
    padding: 10px;
    width: 158px !important;
  }
  .home-page .brands-slider .owl-carousel .owl-item img {
    max-height: 40px;
  }
  .home-page .sliders-wrapper {
    position: relative;
    top: auto;
    transform: none;
    padding: 26px;
  }
  .home-page .box .box-title {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .home-page .box .box-image {
    height: 100px;
  }
  .home-page .box .box-brief {
    font-size: 12px;
  }
  .home-page .contact-us {
    flex-wrap: wrap;
  }
  .home-page .contact-us .lf-part, .home-page .contact-us .rg-part {
    padding: 0px 30px;
    flex-basis: 100%;
  }
  .home-page .contact-us .lf-part {
    order: 2;
  }
  .home-page .contact-us .lf-part .section-title {
    display: none;
  }
  .home-page .contact-us .rg-part {
    height: auto;
    order: 1;
  }
  .home-page .contact-us .rg-part .section-title {
    display: block;
  }
  .home-page .contact-us .rg-part #map {
    height: 300px !important;
  }
  .lf-rg-sections {
    flex-wrap: wrap;
  }
  .lf-rg-sections .lf-part {
    flex-basis: 100%;
    margin-bottom: 20px;
  }
  .lf-rg-sections > div {
    padding: 0;
  }
  .contact-page .left-section, .contact-page .right-section {
    flex-basis: 100%;
  }
  .contact-page .form-sections {
    flex-wrap: wrap;
    margin-top: 40px;
  }
  .contact-page .form-sections > div {
    padding: 0;
  }
  .search-page .search-results {
    padding: 20px 0;
  }
  .careers-page .careers-list {
    padding-right: 0;
  }
  .careers-page .career-description {
    width: 100%;
  }
  .request-quote-page .form-section {
    padding: 20px 0;
  }
  .brands-slider .owl-carousel .owl-stage-outer {
    height: 145px;
  }
}
@media (max-width: 767px) {
  .top-background {
    height: 184px;
  }
  .is-767px {
    display: block;
  }
  header {
    flex-wrap: wrap;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  header .rg-part > div {
    margin-top: 5px;
  }
  header .search {
    margin-bottom: 0;
  }
  header .rg-part {
    margin-top: 8px;
    flex-basis: 100%;
    margin-right: 0;
    padding: 0;
  }
  header .menu-icon {
    right: 28px;
    top: 20px;
  }
  .text-page .page-title {
    font-size: 20px;
    padding: 4px 30px;
  }
  .text-page .text {
    margin-top: 30px;
    font-size: 15px;
  }
  .listing-page .boxes {
    margin-top: 20px;
  }
  .listing-page .box {
    flex-basis: 100%;
  }
  .products-page .box .box-image {
    height: auto;
  }
  .products-page .box .box-image img {
    height: auto;
    width: 100%;
  }
  .brands-page .box-image {
    height: auto;
  }
  .brands-page .box-image img {
    max-width: 100%;
    max-height: 50px;
  }
  .tabs-page .tabs-section {
    flex-wrap: wrap;
  }
  .tabs-page .tabs-section li {
    flex-basis: 100%;
  }
  .tabs-page .tabs-section li:not(:last-child) {
    border-bottom: 1px solid #dedede;
  }
  .home-page .aside-margin {
    margin-left: 0;
    margin-right: 0;
  }
  .home-page .order-spareparts .rg-part {
    flex-basis: 100%;
  }
  .home-page .order-spareparts :last-child {
    margin: 0;
    display: block;
  }
  .home-page .order-spareparts .next {
    width: 100%;
    margin-left: -4px;
  }
  .home-page .order-spareparts .input-field {
    width: 100%;
  }
  .home-page .order-spareparts #address {
    width: 100%;
  }
}
@media (max-width: 479px) {
  .home-page #cantactForm button {
    padding-left: 25px;
    padding-right: 25px;
    font-size: 12px;
  }
  header .logo {
    flex-basis: 270px;
  }
  header .logo img {
    width: 100%;
  }
  .is-479px {
    display: block;
  }
  footer li {
    margin: 3px;
  }
  .page-title {
    font-size: 20px;
  }
  .home-page #sliderHome .image-container img {
    width: 100%;
  }
  .search-page .search-head input {
    width: 100%;
    padding: 5px;
  }
}
/** Components */
/** Partials **/
/** Pages **/
