@import url('animations.css');
@import url('media.css');

/*
   ---------
  | BEM CSS |
   ---------
*/

* {
    font-family: Montserrat,sans-serif;
}

.glide-full { width: 100%; height: 100%; position: relative; }
.glide-full .glide__slides { width: 100%; height: 100%; }
.glide-full .glide__slides .glide__slide { position: relative; width: 100%; height: 100%; }
.glide-hero .glide__arrows .glide__arrow { position: absolute; display: flex; width: 50px; height: 50px; justify-content: center; align-items: center; color: #fff; border-radius: 50%; top: 50%; transform: translate3d(0, -50%, 0) }
.glide-hero .glide__arrows .glide__arrow {
  -webkit-transition: .15s background-color ease, .15s color ease;
  -moz-transition: .15s background-color ease, .15s color ease;
  -o-transition: .15s background-color ease, .15s color ease;
  transition: .15s background-color ease, .15s color ease;
}
.glide-hero .glide__arrows .glide__arrow:hover { color: var(--primary); background-color: #fff; }
.glide-hero .glide__arrows .glide__arrow .feather { width: 2rem; height: 2rem; }
.glide-hero .glide__arrows .glide__arrow.glide__arrow--right { right: 20px }
.glide-hero .glide__arrows .glide__arrow.glide__arrow--left { left: 20px }
.glide-hero .glide__bullets { position: absolute; bottom: 20px; left: 50%; transform: translate3d(-50%, 0, 0) }
.glide-hero .glide__bullets .glide__bullet { width: 12px; height: 12px; border-radius: 50%; background-color: var(--dark-100); margin: 0 4px }
.glide-hero .glide__bullets .glide__bullet:first-child { margin-left: 0 }
.glide-hero .glide__bullets .glide__bullet:last-child { margin-right: 0 }
.glide-hero .glide__bullets .glide__bullet.glide__bullet--active { background-color: var(--pure-white) }
.glide__track { height: 100%; cursor: grab } .glide__track:active { cursor: grabbing }

.glide-default .glide__arrows {
  position: relative;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  padding-top: 2rem;
}
.glide-default .glide__arrows .glide__arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 .5rem;
  width: 2.75rem; height: 2.75rem;
  border-radius: 50%;
  background-color: var(--light-100);
  -webkit-transition: .15s background-color ease;
  -moz-transition: .15s background-color ease;
  -o-transition: .15s background-color ease;
  transition: .15s background-nercolor ease;
}
.glide-default .glide__arrows .glide__arrow:hover { background-color: var(--light-300) }

.hero-banner-slider-init { width: 100% }
.swiper-slide {
  overflow: hidden;
}
.hero-banner-slider-init .swiper-button { 
  position: absolute; 
  display: flex; 
  width: 50px; height: 50px; 
  justify-content: center; align-items: center; 
  color: #fff; 
  border-radius: 50%; 
  top: 50%;
  opacity: 0;
  transform: translate3d(0, -50%, 0);
}
.hero-banner-slider-init:hover .swiper-button { opacity: 1; }
.hero-banner-slider-init .swiper-button {
  -webkit-transition: .15s background-color ease, .15s color ease, .15s opacity ease;
  -moz-transition: .15s background-color ease, .15s color ease, .15s opacity ease;
  -o-transition: .15s background-color ease, .15s color ease, .15s opacity ease;
  transition: .15s background-color ease, .15s color ease, .15s opacity ease;
}
.hero-banner-slider-init .swiper-button:hover { color: var(--primary); background-color: #fff; }
.hero-banner-slider-init .swiper-button .feather { width: 2rem; height: 2rem; }
.hero-banner-slider-init .swiper-button-next { right: 20px; z-index: 1; }
.hero-banner-slider-init .swiper-button-prev { left: 20px; z-index: 1; }
.swiper-button-next, .swiper-container-rtl .swiper-button-prev {background: none }
.swiper-button-prev, .swiper-container-rtl .swiper-button-next { background: none }
.hero-banner-slider-init .swiper-pagination { z-index: 5; }
.hero-banner-slider-init .swiper-pagination-bullet {
  width: 1.5rem;
  height: .375rem;
  background-color: #fff;
  border-radius: 0;
  cursor: pointer;
}
.hero-banner-slider-init .swiper-pagination-bullet-active { background-color: var(--primary); }

/* FLEX */
.flex-wrapper {display: flex;flex: 1;}
.fw-row { flex-direction: row } .fw-column { flex-direction: column }
.fw-wrap { flex-wrap: wrap } .fw-n-wrap { flex-wrap: nowrap }
.fw-j-sb { justify-content: space-between } .fw-j-start { justify-content: start } .fw-j-center { justify-content: center } .fw-j-end { justify-content: flex-end }
.fw-a-start { align-items: flex-start } .fw-a-center { align-items: center } .fw-a-end { align-items: flex-end }
.fw-a-self-start { align-self: flex-start } .fw-a-self-center { align-self: center } .fw-a-self-end { align-self: end }
.fw-fl-g-1 { flex-grow: 1 } .fw-fl-g-2 { flex-grow: 2 } .fw-fl-g-3 { flex-grow: 3 }

/* POSITION */
.p-a { position: absolute } .p-r { position: relative } .p-f { position: fixed } .p-s { position: sticky }

/* DISPLAY */
.d-f { display: flex } .d-if { display: inline-flex } .d-b { display: block } .d-ib { display: inline-block } .d-n { display: none }
.ml-n { margin-left: 0 } .mr-n { margin-right: 0 } .mt-n { margin-top: 0 } .mb-n { margin-bottom: 0 }
.ml-auto { margin-left: auto } .mr-auto { margin-right: auto } .mt-auto { margin-top: auto } .mb-auto { margin-bottom: auto }

.w-fill { width: 100% } .h-fill { height: 100% }

/* TYPOGRAPHY */
.lbl-c-white { color: var(--pure-white) } .lbl-c-dark { color: var(--pure-black) } .lbl-c-ptag { color: var(--dark-700) } 
.lbl-fs-heading { font-size: 36px } .lbl-fs-title-big { font-size: 28px } .lbl-fs-title { font-size: 24px } .lbl-fs-sub-title { font-size: 20px } .lbl-fs-sub { font-size: 14px }
.lbl-fw-300 { font-weight: 300 } .lbl-fw-400 { font-weight: 400 } .lbl-fw-500 { font-weight: 500 } .lbl-fw-600 { font-weight: 600 } .lbl-fw-700 { font-weight: 700 } .lbl-fw-800 { font-weight: 800 }
.lbl-tf-uc { text-transform: uppercase } .lbl-tf-lc { text-transform: lowercase } .lbl-tf-cap { text-transform: capitalize }
.lbl-ls-xs { letter-spacing: .25px } .lbl-ls-sm { letter-spacing: .5px } .lbl-ls-md { letter-spacing: .75px } .lbl-ls-lg { letter-spacing: 1px } .lbl-ls-xl { letter-spacing: 2px }
.lbl-ta-center { text-align: center } .lbl-ta-left { text-align: left } .lbl-ta-right { text-align: right }

span.wow {
  display: flex;
  flex-direction: column;
}
.overflow-hidden {width: fit-content;}

.parallaxImage {
  -webkit-transform: scale(1.3);
  -moz-transform: scale(1.3);
  -o-transform: scale(1.3);
  transform: scale(1.3);
}
.parallaxImage, .parallaxText {
  -webkit-transition: .1s transform ease;
  -moz-transition: .1s transform ease;
  -o-transition: .1s transform ease;
  transition: .1s transform ease;
}

.form-label {
  font-weight: 500;
  font-size: 14px;
}
.form-control {
  appearance: auto;
}

.blank_space {
  background-color: transparent;
  height: 5rem;
  display: flex;
}

.table-responsive {
  width: 100%;
}

.table table {
  width: 100%;
}

.table table strong {
  font-weight: bold;
}

.table table td {
  padding: 10px;
  border: 1px solid #ccc;
}

.table table th {
  background-color: #f2f4f6;
  box-shadow: none;
  font-weight: bold !important;
  border: 1px solid #bbb9b9;
  padding: 10px
}

.table table b {
  font-weight: bold;
}

.breadcrumb {
  position: relative;
  display: flex;
  background-color: rgb(52,73,94);
  height: 50px;
  margin-bottom: 0;
}
.breadcrumb .breadcrumb-main {
  position: relative;
  display: flex; flex: 1;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
  width: 100%; height: 100%;
}
.breadcrumb .breadcrumb-contact-info {
  display: flex;
  flex-flow: row nowrap;
}
.breadcrumb .breadcrumb-contact-info .phone-number {
  font-family: 'Open Sans', sans-serif;
  letter-spacing: .0125rem;
  font-size: 14px;
  color: #dfdfdf;
}
.breadcrumb .breadcrumb-contact-info .phone-number:hover { color: #fff; }
.breadcrumb .breadcrumb-contact-info .phone-number:hover .feather {
  animation-name: phoneRing;
  animation-duration: .75s;
  animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  animation-fill-mode: both;
}
.breadcrumb .breadcrumb-contact-info .phone-number .feather {
  stroke-width: 0;
  fill: #dfdfdf;
  width: 1.25rem; height: 1.25rem;
  margin-right: .375rem;
}
.breadcrumb .breadcrumb-contact-info .social-media-icons {
  margin-left: 4rem;
  display: flex;
  flex-flow: row nowrap;
}
.breadcrumb .breadcrumb-contact-info .social-media-icons li:not(:last-child) { 
  margin-right: .5rem;
}
.breadcrumb .breadcrumb-contact-info .social-media-icons li {
  display: flex;
  align-items: center;
}
.breadcrumb .breadcrumb-contact-info .social-media-icons li a {
  display: flex;
  width: 20px; height: 20px;
}
.breadcrumb .breadcrumb-contact-info .social-media-icons img {
  opacity: .8;
  -webkit-filter: brightness(0) invert(1);
  -moz-filter: brightness(0) invert(1);
  -o-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
  -webkit-transition: .15s transform ease, .15s opacity ease;
  -moz-transition: .15s transform ease, .15s opacity ease;
  -o-transition: .15s transform ease, .15s opacity ease;
  transition: .15s transform ease, .15s opacity ease;
}
.breadcrumb .breadcrumb-contact-info .social-media-icons li a:hover img {
  opacity: 1;
  -webkit-transform: translateY(-4px);
  -moz-transform: translateY(-4px);
  -o-transform: translateY(-4px);
  transform: translateY(-4px);
}
.breadcrumb .navigation {
  position: relative;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
}
.breadcrumb .navigation li {
  position: relative;
  display: flex;
  flex-flow: row nowrap;
  /* align-items: center; */
  /* max-width: 200px; */
  /* overflow: hidden; */
  /* white-space: nowrap; */
  /* text-overflow: ellipsis; */
}
.breadcrumb .navigation li:not(:last-child) { margin-right: .5rem; }
.breadcrumb .navigation li:not(:last-child)::after {
  content: url('../icons/chevron-right.svg');
  display: flex;
  width: 1rem;
  height: 1rem;
  margin-left: .5rem;
  /* align-items: center; */
}
.breadcrumb .navigation li a {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  letter-spacing: .0125rem;
  color: #fff;
  /* max-width: 250px; */
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  align-items: center;
}

/* width */
.dropdown-full ::-webkit-scrollbar {
  width: 16px;
}

/* Track */
.dropdown-full ::-webkit-scrollbar-track {
  background: #fff; 
}
 
/* Handle */
.dropdown-full ::-webkit-scrollbar-thumb {
  background: #b4b4b4;
  border: 6px solid #fff;
  border-radius: 16px;
}

/* Handle on hover */
.dropdown-full ::-webkit-scrollbar-thumb:hover {
  background: #a3a3a3; 
}

.dropdown-full {
  position: absolute;
  top: 60px; left: 0; right: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  user-select: none;
  z-index: 11;
  -webkit-transition: .8s opacity ease, .8s visibility ease, .3s top ease;
  -moz-transition: .8s opacity ease, .8s visibility ease, .3s top ease;
  -o-transition: .8s opacity ease, .8s visibility ease, .3s top ease;
  transition: .8s opacity ease, .8s visibility ease, .3s top ease;
}
.page-header.stick-up .dropdown-full { top: 40px }
.dropdown-full.visible { 
  opacity: 1; 
  visibility: visible; 
  pointer-events: all; 
  user-select: auto;
  z-index: 12;
}
.dropdown-full .dropdown-selectable-area {
  position: relative;
  display: flex;
  width: 100%; height: 32px;
  background-color: transparent;
}
.dropdown-full .dropdown-header {
  padding: .875rem 0;
  background-color: var(--primary);
}
.dropdown-full .dropdown-header .close-dropdown {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.75rem; height: 1.75rem;
  margin-right: .625rem;
  border-radius: 50%;
  background-color: #fff;
  color: var(--primary);
  opacity: .8;
  -webkit-transition: .15s opacity ease;
  -moz-transition: .15s opacity ease;
  -o-transition: .15s opacity ease;
  transition: .15s opacity ease;
}
.dropdown-full .dropdown-header .close-dropdown .feather { width: 1.25rem; height: 1.25rem }
.dropdown-full .dropdown-header .close-dropdown:hover { opacity: 1; }
.dropdown-full .dropdown-body {
  background-color: #fff;
  max-height: calc(100vh - 56px - 72px);
  overflow-y: auto;
  -webkit-box-shadow: 0px -3px 30px 0px #7d7d7d;
  box-shadow: 0px -3px 30px 0px #7d7d7d;
}
.dropdown-full .header-wrapper {
  position: relative;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
  color: #fff;
}
.dropdown-full .dropdown-title {
  font-weight: 500;
  text-transform: uppercase;
}
.dropdown-full .tab-navigation {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
}
.dropdown-full .tab-navigation li:not(:last-child) {
  margin-right: .5rem;
}
.dropdown-full .tab-navigation .tab-nav {
  position: relative;
  display: flex;
  padding: 0 1.25rem;
  font-family: 'Open Sans', sans-serif;
  text-transform: uppercase;
  color: #fff;
}
.dropdown-full .tab-navigation .tab-nav.nav-active { color: var(--primary); z-index: 1; }
.dropdown-full .tab-navigation .tab-nav::after {
  content: '';
  position: absolute;
  left: 0; bottom: -.5rem; right: 0;
  width: 100%; height: calc(100% + .9rem);
  background-color: #fff;
  border-radius: 6px;
  opacity: 0;
  z-index: -1;
  overflow: hidden;
  -webkit-transition: .15s opacity ease;
  -moz-transition: .15s opacity ease;
  -o-transition: .15s opacity ease;
  transition: .15s opacity ease;
}
.dropdown-full .tab-navigation .tab-nav.nav-active::after { opacity: 1 }
.dropdown-full .dropdown-contact-info {
  display: flex;
  flex-flow: row nowrap;
}
.dropdown-full .dropdown-contact-info .phone-number {
  font-family: 'Open Sans', sans-serif;
  letter-spacing: .0125rem;
  color: #dfdfdf;
}
.dropdown-full .dropdown-contact-info .phone-number:hover { color: #fff; }
.dropdown-full .dropdown-contact-info .phone-number:hover .feather {
  animation-name: phoneRing;
  animation-duration: .75s;
  animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  animation-fill-mode: both;
}
.dropdown-full .dropdown-contact-info .phone-number .feather {
  stroke-width: 0;
  fill: #dfdfdf;
  width: 1.25rem; height: 1.25rem;
  margin-right: .375rem;
}
.dropdown-full .dropdown-contact-info .social-media-icons {
  margin-left: 4rem;
  display: flex;
  flex-flow: row nowrap;
}
.dropdown-full .dropdown-contact-info .social-media-icons li:not(:last-child) { 
  margin-right: .5rem;
}
.dropdown-full .dropdown-contact-info .social-media-icons li {
  display: flex;
  align-items: center;
}
.dropdown-full .dropdown-contact-info .social-media-icons li a {
  display: flex;
  width: 20px; height: 20px;
}
.dropdown-full .dropdown-contact-info .social-media-icons img {
  opacity: .8;
  -webkit-filter: brightness(0) invert(1);
  -moz-filter: brightness(0) invert(1);
  -o-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
  -webkit-transition: .15s transform ease, .15s opacity ease;
  -moz-transition: .15s transform ease, .15s opacity ease;
  -o-transition: .15s transform ease, .15s opacity ease;
  transition: .15s transform ease, .15s opacity ease;
}
.dropdown-full .dropdown-contact-info .social-media-icons li a:hover img {
  opacity: 1;
  -webkit-transform: translateY(-4px);
  -moz-transform: translateY(-4px);
  -o-transform: translateY(-4px);
  transform: translateY(-4px);
}
.dropdown-full .body-wrapper {
  position: relative;
  display: flex;
  flex: 1;
  flex-flow: row nowrap;
  height: 100%;
  padding: 1.5rem 0;
  flex-direction: row;
}
.dropdown-full .dropdown-nav-block {
  display: flex;
  flex-direction: column;
}
.dropdown-full .dropdown-nav-block .nav-title {
  font-family: 'Open Sans', sans-serif;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: .0125rem;
  margin-bottom: 1rem;
  line-height: 1;
}
/*.dropdown-full.visible .dropdown-nav-block li {
  overflow: hidden;
}*/
.dropdown-full .dropdown-nav-block a {
  display: flex;
  font-family: 'Open Sans', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .0125rem;
  margin-bottom: .375rem;
  color: var(--dark-700);
  word-break: break-word;
}
.dropdown-full .dropdown-nav-block a:hover { color: var(--light-500) }
.dropdown-full .dropdown-nav-block .sub-product-group a { margin-left: .5rem }

.dropdown-full .blog {
  position: relative;
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem !important;
}
.dropdown-full .blog .blog-image {
  width: 240px;
  height: 140px;
  border-radius: 8px;
  overflow: hidden;
}
.dropdown-full .blog .blog-image img {
  -webkit-transition: .25s transform ease;
  -moz-transition: .25s transform ease;
  -o-transition: .25s transform ease;
  transition: .25s transform ease;
}
.dropdown-full .blog .blog-image:hover img {
  -webkit-transform: scale(1.08);
  -moz-transform: scale(1.08);
  -o-transform: scale(1.08);
  transform: scale(1.08);
}
.dropdown-full .blog .blog-title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  max-width: 240px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 500;
  font-size: 14px !important;
  text-transform: capitalize;
  letter-spacing: .0125rem;
  color: var(--primary);
  margin-top: .375rem;
}

.dropdown-full .tab .brand {
  display: flex;
  height: 4rem;
  margin-bottom: 0.5rem;
  padding: .5rem 1rem;
}
.dropdown-full .tab .product-groups {
  position: relative;
  display: flex;
  flex-flow: row wrap;
  width: 100%;
  font-size: 11px;
  /* max-width: 163px; */
}
.dropdown-full .tab .product-groups .flex-wrapper:not(:last-child) .product-group {/* min-width: 120px; *//* margin-right: 1.5rem; *//* margin-bottom: 1rem; */}
.dropdown-full .tab .product-groups .product-group .group-title,
.dropdown-full .tab .product-groups .product-group .group-title a {
  font-family: 'Open Sans', sans-serif;
  color: var(--primary);
  margin-bottom: .625rem;
  font-size: 13px;
}
.dropdown-full .tab .product-groups .sub-product-group .group-title,
.dropdown-full .tab .product-groups .sub-product-group .group-title a { font-size: 11px !important; margin-bottom: .5rem !important }
.dropdown-full .tab .product-groups .product-group {
  max-width: 163px;
}
.dropdown-full .tab .product-groups .sub-product-group { margin-left: .5rem }
.dropdown-full .tab .product-groups .product-group .product-route {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.dropdown-full .tab .column:not(:last-child) { border-right: 1px solid var(--border-lighter); }

.tabs {
  position: relative;
  display: flex; flex: 1;
  width: 100%; height: 100%;
}
.tab {
  position: relative;
  display: none; flex: 1;
  width: 100%; height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
}
.tab-active {display: flex;flex-direction: column;}

.mobile-drawer {
  position: fixed;
  top: 0; bottom: 0; right: 0; left: 0;
  width: 100vw; height: 100vh;
  background-color: var(--primary);
  -webkit-transition: .75s transform cubic-bezier(0.23, 1, 0.32, 1);
  -moz-transition: .75s transform cubic-bezier(0.23, 1, 0.32, 1);
  -o-transition: .75s transform cubic-bezier(0.23, 1, 0.32, 1);
  transition: .75s transform cubic-bezier(0.23, 1, 0.32, 1);
  -webkit-transform: translate3d(0, -100%, 0);
  -moz-transform: translate3d(0, -100%, 0);
  -o-transform: translate3d(0, -100%, 0);
  transform: translate3d(0, -100%, 0);
  overflow: hidden;
  z-index: 99;
}
.mobile-drawer.visible {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.mobile-drawer .mobile-drawer-main {
  position: absolute;
  top: 0; right: 0; left: 0; bottom: 1.56vw;
  display: flex; flex: 1;
  flex-direction: column;
  background-color: var(--primary-darker);
  padding: 1.5rem;
  overflow-y: auto;
  -webkit-transition: 1s transform cubic-bezier(0.23, 1, 0.32, 1);
  -moz-transition: 1s transform cubic-bezier(0.23, 1, 0.32, 1);
  -o-transition: 1s transform cubic-bezier(0.23, 1, 0.32, 1);
  transition: 1s transform cubic-bezier(0.23, 1, 0.32, 1);
  transition-delay: .05s;
  -webkit-transform: translate3d(0, -100%, 0);
  -moz-transform: translate3d(0, -100%, 0);
  -o-transform: translate3d(0, -100%, 0);
  transform: translate3d(0, -100%, 0);
}
.mobile-drawer.visible .mobile-drawer-main {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.mobile-drawer.visible .mobile-drawer-main .drawer-header { 
  padding-bottom: 1.5rem; 
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(244, 234, 239, .15);
}
.mobile-drawer .mobile-drawer-main .drawer-header .drawer-title {
  font-size: 1.625rem;
  font-weight: 500;
  color: var(--white-secondary);
}
.mobile-drawer .mobile-drawer-main .drawer-header .btn-mobile-drawer-close {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3rem; height: 3rem;
  border-radius: 50%;
  border: 1px solid var(--dark-700);
  font-size: 1.625rem;
  color: var(--light-300);
  -webkit-transition: .15s background-color ease, .15s color ease;
  -moz-transition: .15s background-color ease, .15s color ease;
  -o-transition: .15s background-color ease, .15s color ease;
  transition: .15s background-color ease, .15s color ease;
}
.mobile-drawer .mobile-drawer-main .drawer-header .btn-mobile-drawer-close:hover { background-color: var(--white-secondary); color: var(--tertiary) }
.mobile-drawer .mobile-drawer-main .drawer-body .routes .route {
  padding: 1rem .625rem;
  border-bottom: 1px solid rgba(244, 234, 239, .09);
  color: var(--white-secondary);
  background-color: transparent;
}
.mobile-drawer .mobile-drawer-main .drawer-body .routes .route.active {
  background-color: var(--primary-dark);
  color: var(--white-secondary);
  font-weight: 500;
}
.mobile-drawer .mobile-drawer-main .drawer-body .routes .route a {
  display: flex;
  /*justify-content: space-between;*/
  align-items: center;
}
.mobile-drawer .mobile-drawer-main .drawer-body .routes .collapse-route a { font-size: 14px }
.mobile-drawer .mobile-drawer-main .drawer-body .routes .route a .collapse-arrow {
  -webkit-transition: .15s transform ease;
  -moz-transition: .15s transform ease;
  -o-transition: .15s transform ease;
  transition: .15s transform ease;
}
.mobile-drawer .mobile-drawer-main .drawer-body .routes .route a[aria-expanded="true"] .collapse-arrow {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
.mobile-drawer .mobile-drawer-main .drawer-body .routes .route .collapse-menu {
  margin-top: 1rem;
  background-color: var(--primary-dark);
}
.mobile-drawer .mobile-drawer-main .drawer-body .routes .route .collapse .route:last-child { border-bottom: 0; }
.mobile-drawer .mobile-drawer-main .drawer-body .mobile-search {
  position: relative;
  display: flex;
  width: 100%;
  margin-bottom: 1rem;
}
.mobile-drawer .mobile-drawer-main .drawer-body .mobile-search .mobile-search-input {
  display: flex;
  padding: .875rem 4rem .875rem 1rem;
  width: 100%;
  background-color: rgba(255, 255, 255, .07);
  color: #fff;
}
.mobile-drawer .mobile-drawer-main .drawer-body .mobile-search .mobile-search-submit {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 60px;
  background-color: rgba(255, 255, 255, .09);
  color: #fff;
  -webkit-appearance: none;
} 

.drawer-fadeIn {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: .9s opacity ease, .9s visibility ease;
  -moz-transition: .9s opacity ease, .9s visibility ease;
  -o-transition: .9s opacity ease, .9s visibility ease;
  transition: .9s opacity ease, .9s visibility ease;
  transition-delay: .75s;
}
.drawer.visible .drawer-fadeIn { opacity: 1; visibility: visible }

.section-content ul li:not(.glide__slide)::before {
  content: "\2022";
  color: var(--primary);
  font-weight: bold;
  display: inline-flex;
  font-size: 1.5rem;
  width: 1rem;
}
.section-content ul li:not(.glide__slide) {
  padding-inline-start: 1rem;
}

.section-content ol li {
  list-style-type: disc;
  margin-inline-start: 1.25rem;
  margin-bottom: .5rem;
}
.section-content ol li::marker {
  color: var(--primary);
}


.horizontal-timeline .events {
  height: 1px;
  background-color: var(--dark-700);
}
.horizontal-timeline .filling-line { display: none }
.horizontal-timeline .events a {
  font-family: 'Open Sans', sans-serif;
  font-weight: 800;
  color: var(--dark-700);
}
.horizontal-timeline .events a.selected { color: var(--primary) }

.horizontal-timeline .events a::after {
  bottom: -5px;
  background-color: #fff;
  border: 1px solid var(--dark-700);
}
.horizontal-timeline .events a.selected::after { background-color: var(--primary); border-color: var(--primary); }
.horizontal-timeline .events a.older-event::after { background-color: #fff; }
/* --------------------- BLOCK ELEMENT MODIFIER END */

/*
   ---------
  | APP CSS |
   ---------
*/
#app, #app .page {
  display: block;
  min-height: 100%;
}

/* HEADER */
.page-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 1rem 0;
  background-color: #fff;
  box-shadow: 0 3px 9px rgba(14, 14, 14, .11);
  font-family: 'Open Sans', sans-serif;
  z-index: 10;
  -webkit-transition: .25s padding ease;
  -moz-transition: .25s padding ease;
  -o-transition: .25s padding ease;
  transition: .25s padding ease;
}
.page-header.stick-up { padding: .375rem 0; }
.header-main {
  display: flex; flex: 1;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.header-main .app-logo {
  display: flex;
  /*height: 60px*/
  height: 100px;
}
.header-main .app-nav {
  display: flex;
  align-items: center;
  height: 60px;
}
.header-main .app-nav > ul {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  height: 100%;
}
.header-main .app-nav > ul > li {
  display: flex;
}
.header-main .app-nav > ul > li > a {
  position: relative;
  display: flex;
  height: 100%;
  align-items: center;
  padding: .125rem 1rem;
  font-size: 16px;
  font-weight: 700;
  color: rgb(0,71,171);
  text-transform: uppercase;
  letter-spacing: .0125rem;
  -webkit-transition: .15s color ease;
  -moz-transition: .15s color ease;
  -o-transition: .15s color ease;
  transition: .15s color ease;
}
.header-main .app-nav > ul > li:first-child > a { padding: .125rem 0 }
.header-main .app-nav > ul > li:first-child + li > a {/* padding: .125rem 1.825rem .125rem 3.65rem */}
.header-main .app-nav > ul > li > a:hover { color: #5A5B5E }
.header-main .app-nav > ul > li > a.active { color: #5A5B5E }
.header-main .app-nav > ul > .dropdown-toggler.active > a { color: #5A5B5E }

.header-main .header-actions {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
}
.header-main .search { position: relative }
.header-main .search .app-searchbar {
  position: relative;
  width: 230px;
  padding: .375rem 3.375rem .375rem 1rem;
  font-size: 14px;
  font-family: 'Open Sans', sans-serif;
  color: var(--dark-300);
  border: 1px solid var(--sky-blue);
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(14, 14, 14, .1);
  -webkit-transition: .25s width ease;
  -moz-transition: .25s width ease;
  -o-transition: .25s width ease;
  transition: .25s width ease;
}
.header-main .search .app-searchbar:focus {
  width: 260px;
}
.header-main .search .app-searchbarSubmit {
  position: absolute;
  display: flex;
  align-items: center;
  right: .375rem; top: 50%;
  padding: .125rem .875rem;
  border-left: 1px solid var(--border-lighter);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.header-main .search .app-searchbarSubmit .feather { width: 1.125rem; height: 1.125rem; color: var(--dark-600) }
.header-main .language .language-dropdown {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  /*background-color: var(--primary);
  color: #fff;*/
  height: 37px;
  padding: 0 .375rem;
  border-radius: 8px;
}
/*.header-main .language .language-dropdown:hover { background-color: var(--primary-darker); }*/
.header-main .language .language-dropdown .feather { width: 1.25rem; height: 1.25rem; margin-left: .125rem; }
.header-main .language [aria-labelledby="langDropdown"] { width: 69px; padding: 0 }
.header-main .language [aria-labelledby="langDropdown"] .dropdown-item {
  padding: .625rem 0;
  text-align: center;
  font-weight: 500;
  color: var(--primary);
}
.header-main .websites .websites-dropdown {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 37px; 
  padding: 0 .625rem;
  font-size: 14px;
  color: var(--primary);
  font-family: 'Montserrat', sans-serif;
}
.header-main .websites .websites-dropdown .feather { width: 1.25rem; height: 1.25rem; margin-left: .375rem; }
.header-main .websites [aria-labelledby="websitesDropdown"] { padding: 0; width: 164px; }
.header-main .websites [aria-labelledby="websitesDropdown"] .dropdown-item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%; height: 60px;
  padding: .625rem;
}
.header-main .websites [aria-labelledby="websitesDropdown"] li:not(:last-child) {
  border-bottom: 1px solid var(--border-lighter);
}

.header-main .mobile-ui {
  display: none;
}
.header-main .mobile-ui .btn-mobile-drawer-open {
  height: 48px;
  width: 52px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  border-radius: 3px;
}

/* PAGE MAIN */
.page-main {
  position: relative;
  display: flex; flex: 1;
  flex-direction: column;
  /*margin-top: 92px;*/
  margin-top: 130px;
}

.page-main .hero-banner.main {
  position: relative;
  display: flex;
}

.page-main .hero-banner.mobile {
    position: relative;
    display: none;
}

.banner-mini {
  position: relative;
  display: flex;
  flex-direction: column;
  height: auto;
}

.banner-mini .banner-main {
  position: relative;
  display: flex;
  height: 250px;
}

    .banner-mini .banner-main-brand {
        
        height: 350px;
    }


.banner-mini .banner-main .banner-image,
.banner-mini .banner-main .banner-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%; height: 100%;
}
.banner-mini .banner-main .banner-image { z-index: 0 }
.banner-mini .banner-main .banner-overlay {
  background-color: rgba(14, 14, 14, .55);
  z-index: 1;
}

.banner-mini .banner-main .banner-content {
  position: relative;
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  color: #fff;
  z-index: 3;
  padding: 100px;
}
.banner-mini .banner-main .banner-content .banner-title {
  font-family: 'Open Sans', sans-serif;
  font-size: 3.14vw;
  font-weight: 300;
  /* text-transform: uppercase; */
  letter-spacing: .0875rem;
}
.banner-mini .banner-main .banner-content .banner-subtitle {
  position: absolute;
  bottom: 1rem;
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: .0125rem;
}

.banner-content h1 {
    font-weight: bold;
    font-size: 2rem;
    text-shadow: 1px 1px 11px rgb(0 0 0 / 90%);
}

.banner-content .subtext {
    font-size: 1.2rem;
    text-shadow: 1px 5px 12px rgb(0 0 0 / 90%);
}

.banner-image img[data-layout-type="cover-f"] {
    object-position: right;
}

.banner-logo {
    /* height: 40px; */
    /* padding: 10px; */
    border-radius: 10px;
    width:auto;
    background: #fff;
    margin-top: 13px;
    box-shadow: 1px 1px 6px rgb(0 0 0 / 50%);
}
.banner-logo img{
    height: 40px;
    padding: 4px 16px;
}

.hero-banner .glide-slide {
  position: relative;
  height: 100%; width: 100%;
}

.hero-banner .slide-image {
  max-width: 100%;
  max-height: 650px;
  width: 100%;
  height: 100%;
  min-height: 320px;
  z-index: 1;
}
.hero-banner .slide-image img { min-height: 320px; }

.hero-banner .slide-title-wrapper {
  position: relative;
  display: flex; flex: 1;
  flex-direction: column;
  width: 100%; height: 100%;
  padding: 100px 0;
}
.hero-banner .slide-title-wrapper[data-title-position="top left"] { justify-content: flex-start; align-items: flex-start; }
.hero-banner .slide-title-wrapper[data-title-position="top right"] { justify-content: flex-start; align-items: flex-end; }
.hero-banner .slide-title-wrapper[data-title-position="center"] { justify-content: center; align-items: center; }
.hero-banner .slide-title-wrapper[data-title-position="bottom left"] { justify-content: flex-end; align-items: flex-start; }
.hero-banner .slide-title-wrapper[data-title-position="bottom right"] { justify-content: flex-end; align-items: flex-end; }

.hero-banner .slide-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex: 1;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-image: linear-gradient(0deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 28%, rgba(0,0,0,0) 100%);
  z-index: 3;
}
.hero-banner .slide-content .overflow-hidden { width: auto !important }
.hero-banner .slide-content .slide-title {
  display: block;
  font-size: 2.3vw;
  font-family: 'Rubik', sans-serif;
  font-weight: bold;
  text-shadow: 1px 1px 11px rgb(0 0 0 / 90%);
  color: #fff;
  line-height: 3.2vw;
}
.hero-banner .slide-content .slide-subtitle {
  display: block;
  margin: .625rem 0 1.25rem 0;
  font-size: 1.2vw;
  font-family: 'Rubik', sans-serif;
  font-weight: bold;
  text-shadow: 1px 1px 7px rgb(0 0 0 / 80%);
  color: #fff;
}
.hero-banner .slide-title-wrapper[data-title-position="top right"] .slide-title, 
.hero-banner .slide-title-wrapper[data-title-position="top right"] .slide-subtitle, 
.hero-banner .slide-title-wrapper[data-title-position="bottom right"] .slide-title,
.hero-banner .slide-title-wrapper[data-title-position="bottom right"] .slide-subtitle { text-align: right }
.hero-banner .slide-title-wrapper[data-title-position="bottom center"] {
  justify-content: flex-end;
  align-items: center;
  text-align: center;
}
.hero-banner .slide-title-wrapper[data-title-position="center"] .slide-title,
.hero-banner .slide-title-wrapper[data-title-position="center"] .slide-subtitle { text-align: center }

.hero-banner .slide-content .slide-router {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  padding: .5rem 1rem;
  background-color: #fff;
  color: var(--primary);
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(14, 14, 14, .1);
  -webkit-transition: .15s background-color ease, .15s color ease;
  -moz-transition: .15s background-color ease, .15s color ease;
  -o-transition: .15s background-color ease, .15s color ease;
  transition: .15s background-color ease, .15s color ease;
}
.hero-banner .slide-content .slide-router:hover { color: #fff; background-color: var(--primary); }
.hero-banner .slide-content .slide-router .icon {
  display: flex;
  margin-left: 2rem;
  border-left: 1px solid var(--sky-blue);
  padding-left: 1rem;
  -webkit-transition: .2s padding ease;
  -moz-transition: .2s padding ease;
  -o-transition: .2s padding ease;
  transition: .2s padding ease;
}
.hero-banner .slide-content .slide-router .icon .feather { width: 1.375rem; height: 1.375rem; }
.hero-banner .slide-content .slide-router:hover .icon {
  padding-left: 1.5rem
}

.section {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 3rem 0;
}
.section-mini { padding: 1.5rem 0 }
.section-big { padding: 5rem 0 }
.section-grey { background-color: var(--white-secondary) }

.section-header {
  position: relative;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
}
.section-header.pull-sides { justify-content: space-between; }
.section-header.header-w-divider { border-bottom: 1px solid var(--border-lighter) }

.section-title {
  font-size: 1.75rem;
  font-weight: 600;
  color: rgb(0,71,171);
  overflow: hidden;
}
.section-title.title-custom {
  font-family: 'Open Sans', sans-serif;
  letter-spacing: .025rem;
  font-weight: 300;
}
.title-centered { text-align: center; }

.section-subtitle {
  font-family: 'Open Sans', sans-serif;
  color: var(--dark-700);
  font-size: 1.25rem;
  font-weight: 300;
  overflow: hidden;
}

.section-body {
  position: relative;
  display: flex; flex: 1;
  flex-direction: column;
}

.section-content {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  color: var(--dark-600);
  overflow: hidden;
}
.section-content p:not(:last-child) { margin-bottom: 1rem }
.section-content img { margin-bottom: 1rem; margin-right: 1rem }
.section-content h1,
.section-content h2,
.section-content h3,
.section-content h4,
.section-content h5,
.section-content h6 { margin-bottom: 1rem }

.section-image { display: flex; overflow: hidden; }
.section-image, .section-image img { max-height: 400px }

.section-content-title {
  display: flex;
  flex-direction: column;
  font-weight: 500;
  /* font-size: 2.2vw; */
  color: var(--dark-600);
  overflow: hidden;
}

.content-right-aligned {
  text-align: right;
  align-items: flex-end;
}

.section-footer {
  display: flex;
  margin-top: 1.5rem;
  overflow: hidden;
}

.grid-layout {
  position: relative;
  display: grid;
  width: 100%; height: 100%;
  grid-auto-rows: minmax(min-content, max-content);
  grid-gap: 1rem;
}
.grid-layout.grid-size-2 { grid-template-columns: repeat(2, 1fr) }
.grid-layout.grid-size-3 { grid-template-columns: repeat(3, 1fr) }
.grid-layout.grid-size-4 { grid-template-columns: repeat(4, 1fr) }
.grid-layout.grid-size-5 { grid-template-columns: repeat(5, 1fr) }
.grid-layout.grid-gap-2 { grid-gap: 2rem }
.grid-layout.grid-gap-3 { grid-gap: 3rem }

.section-brands .brands {
  margin-top: 3rem;
}

.section-brands .brands .brand {
  display: flex;
  flex: 1;
  height: 60px;
  padding: .375rem 1rem;
  border: 1px solid var(--border-lighter);
  border-radius: 6px;
}
.section-brands .brands .brand:not(:last-child) { margin-right: .375rem; }
.section-brands .products-group:not(:last-child) {margin-bottom: 4rem;}
.section-brands .products-group .brand {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 72px;
  padding: 10px;
  border: 1px solid #e2e2e2;
}

.section-news .glide__slide { height: auto }

.section-news .news {
  position: relative;
  display: flex; flex: 1;
  flex-direction: column;
  height: 100%;
}

.section-news .news .news-image {
  overflow: hidden;
}
.section-news .news .news-image img {
  filter: grayscale(1);
  -webkit-transition: .3s filter ease, .3s transform ease;
  -moz-transition: .3s filter ease, .3s transform ease;
  -o-transition: .3s filter ease, .3s transform ease;
  transition: .3s filter ease, .3s transform ease;
}
.section-news .news:hover .news-image img {
  -webkit-filter: grayscale(0);
  -moz-filter: grayscale(0);
  -o-filter: grayscale(0);
  filter: grayscale(0);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -o-transform: scale(1.05);
  transform: scale(1.05);
}
.section-news .news .news-image,
.section-news .news .news-image img {
  max-height: 310px;
  height: auto;
}

.section-news .news-body {
  display: flex; flex: 1;
  flex-direction: column;
  height: 100%;
}

.section-news .news .news-title {
  display: flex;
  justify-content: center;
  max-width: 400px;
  padding: 1rem 0; margin: 0 auto;
  font-weight: 600;
  font-size: 18px;
  color: var(--dark-600);
  text-align: center;
}

.section-news .news .btn-news-details {
  display: flex;
  margin: auto auto 1px;
}
.section-news .news:hover .btn-news-details {
  background-color: var(--primary);
  color: #fff;
}

.sidebar, sidebar2 {
    position: relative;
    display: flex;
    flex: 1;
    flex-direction: column;
    border: 1px solid var(--border-lighter);
    max-width: 330px;
    border-radius: 6px;
    overflow: hidden;
}

    .sidebar li a, .sidebar2 li a {
        display: flex;
        padding: 1rem 1.5rem;
        color: var(--dark-700);
        text-transform: uppercase;
        letter-spacing: .0125rem;
        font-size: 14px;
        -webkit-transition: .15s background-color ease;
        -moz-transition: .15s background-color ease;
        -o-transition: .15s background-color ease;
        transition: .15s background-color ease;
    }

        .sidebar li a:hover, .sidebar2 li a:hover {
            background-color: var(--white-secondary);
        }

    .sidebar li:not(:last-child) a, .sidebar2 li:not(:last-child) a {
        border-bottom: 1px solid var(--border-lighter)
    }

    .sidebar li.active a, .sidebar2 li.active a {
        background-color: var(--primary);
        color: #fff
    } 


.section .overview-image {
  display: flex;
  height: 260px;
}

.section-certificates .certificates-group:not(:last-child) { margin-bottom: 3rem }

.section-certificates .certificate img {
  max-height: 100px;
  margin-bottom: 1.25rem;
  -webkit-transition: .2s filter ease;
  -moz-transition: .2s filter ease;
  -o-transition: .2s filter ease;
  transition: .2s filter ease;
}
.section-certificates .certificate:hover img { 
  -webkit-filter: brightness(125%); 
  -moz-filter: brightness(125%); 
  -o-filter: brightness(125%); 
  filter: brightness(125%); 
}
.section-certificates .certificate .certificate-title {
  display: flex;
  justify-content: center;
  text-align: center;
  color: var(--dark-700);
  font-weight: 500;
}

.section .grid-item {
  position: relative;
  display: flex; flex: 1;
  flex-direction: column;
  border: 1px solid var(--border-lighter);
  padding: 1rem;
  background-color: transparent;
  -webkit-transition: .2s background-color ease;
  -moz-transition: .2s background-color ease;
  -o-transition: .2s background-color ease;
  transition: .2s background-color ease;
}
.section .grid-item:hover { background-color: var(--primary); }
.section .grid-item .item-image {
  display: flex;
  width: 100%;
  /* height: 230px; */
  margin-bottom: .625rem;
}
.section .grid-item .item-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: var(--primary);
  margin-bottom: .625rem;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.section .grid-item:hover .item-title { color: #fff }
.section .grid-item .item-date {
  display: flex;
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: #FF5757;
  margin-bottom: .625rem;
}
.section .grid-item .item-desc {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  color: var(--dark-700);
  margin-bottom: .625rem;
}
.section .grid-item:hover .item-desc { color: var(--light-200) }
.section .grid-item .item-router {
  font-family: 'Open Sans', sans-serif;
  color: var(--primary);
  margin-left: auto;
}
.section .grid-item:hover .item-router { color: #fff }

.section-fair-details .date,
.section-news-details .date {
  display: flex;
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: #FF5757;
}

.section-fairs .events-content { display: none; }

.section-contact .contact-block a {
  display: flex; align-items: center;
  font-family: 'Open Sans', sans-serif;
  margin-bottom: 1rem;
  color: var(--dark-700);
}
.section-contact .contact-block a:hover { color: var(--light-500) }

.section-contact .contact-block a .feather {
  width: 1.125rem; height: 1.125rem;
  margin-right: .625rem;
}
.section-contact .contact-block a span {
  display: flex;
  margin-top: -.3rem;
}

.section-contact .helpful-links {
  display: flex; flex: 1;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
}

.section-contact .helpful-link {
  display: flex;
  padding: 1.5rem 1rem;
  border-radius: 8px;
  background-color: #fff;
  color: var(--primary);
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 300;
  margin: 0 .625rem .625rem .625rem;
  box-shadow: 0 3px 9px rgba(14, 14, 14, .11);
  -webkit-transition: .15s background-color ease, .15s color ease;
  -moz-transition: .15s background-color ease, .15s color ease;
  -o-transition: .15s background-color ease, .15s color ease;
  transition: .15s background-color ease, .15s color ease;
}
.section-contact .helpful-link:hover { background-color: var(--primary); color: #fff; }

.section-contact .helpful-link .feather {
  margin-right: .625rem;
}

.section-product-family .product:not(:last-child) {
  margin-bottom: 5rem;
}

.section-product-family .products-container {
  display: block;
  max-width: 1140px;
  margin: 0 auto;
}

.section-product-family .product .product-family {
  font-family: 'Open Sans', sans-serif;
  text-transform: uppercase;
  letter-spacing: .0125rem;
  color: var(--primary);
}

.section-product-family .product:not(.reversed) .content-col {
  display: flex;
  justify-content: flex-end;
}

.section-product-family .product.reversed .section-image {
  display: flex;
  justify-content: flex-end;
}

.section-product-family .product .product-name {
  font-size: 1.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .0125rem;
  color: var(--dark-600);
  margin-bottom: .5rem;
}

.section-product-family .product .product-desc {
  /* max-width: 350px; */
  font-size: 1.125rem;
  letter-spacing: .0125rem;
  color: var(--dark-700);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.section-products .filters {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: .625rem;
  border-right: 1px solid var(--border-lighter);
}
.section-products .filters .filter-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--dark-500);
  margin: 1rem 0;
}

.section-products .filters td {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: .625rem;
}

.section-products .filters .form-check {
  /* display: flex; */
  flex-flow: row nowrap;
  align-items: center;
  padding-left: 0;
}

.section-products .filters input {
  display: flex;
  width: 1.25rem; height: 1.25rem;
  margin-right: .5rem;
}
.section-products .filters input[role="radio"] { border-radius: 50%; }
.section-products .filters .form-check:hover input { border-color: var(--primary); }

.section-products .filters label {
  cursor: pointer; 
  font-weight: 500; 
  font-size: 14px;
  color: var(--dark-300);
  user-select: none;
}

.section-products .filters .scrollable-filter {
  display: flex;
  flex-direction: column;
  max-height: 141px;
  overflow: auto;
}

.section-products .filters .scrollable-filter::-webkit-scrollbar {
  width: 6px;
  -webkit-appearance: none;
  overflow-y: scroll;
  display: inherit;
}
.section-products .filters .scrollable-filter::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.section-products .filters .scrollable-filter::-webkit-scrollbar-thumb {
  background: #b0b0b0;
  border-radius: 6px;
}
.section-products .filters .scrollable-filter::-webkit-scrollbar-thumb:hover {
  background: #999; 
}

.section-products .filters .btn-reset-filters { width: fit-content }

.section-products .products-sort {
  display: flex; flex: 1;
  justify-content: flex-end;
  margin-bottom: 3rem;
}

.section-products .products-sort .sort {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
}

.section-products .products-sort .sort button {
  display: flex;
}
.section-products .products-sort .sort button:not(:last-child) { margin-right: 1rem; }

.section-products .products-sort .sort span {
  display: flex;
  width: 8px;
  height: 24px;
  background-color: var(--light-200);
  -webkit-transition: .15s background-color ease;
  -moz-transition: .15s background-color ease;
  -o-transition: .15s background-color ease;
  transition: .15s background-color ease;
}
.section-products .products-sort .sort .active span { background-color: var(--primary); }
.section-products .products-sort .sort span:not(:last-child) { margin-right: 2px }

.section-products .product {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
  border: 1px solid transparent;
  -webkit-transition: .15s border-color ease;
  -moz-transition: .15s border-color ease;
  -o-transition: .15s border-color ease;
  transition: .15s border-color ease;
}
.section-products .product:hover { border-color: var(--border-lighter) }
.section-products .product .product-image {margin-bottom: .875rem;width: 100%;}
.section-products .product .product-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: rgb(0,71,171);
  margin-bottom: .5rem;
  text-align: center;
}

.section-products .product .product-features { margin-bottom: 1rem; }
.section-products .product .product-features ul li {
  font-family: 'Montserrat', sans-serif;
  color: var(--dark-600);
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 4px;
}

.section-products .product .product-router {
  display: flex;
  margin-top: auto;
}

.section-products .product .product-router button {
  font-size: 14px;
}
.section-products .product:hover .product-router button { 
  background-color: var(--primary);
  color: #fff;
}

.modules-slider .product {
  border-color: var(--border-lighter);
}
.modules-slider .product:hover { border-color: var(--border-light) }

.modules-slider .product .product-name {
  font-size: 1rem;
}

.section-product-details .product-title {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
  font-size: 2rem;
}
.section-product-details .product-title .share-product {
  display: flex;
  align-items: center;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: .0125rem;
  color: var(--dark-700);
}
.section-product-details .product-title .share-product .feather { width: 1.25rem; height: 1.25rem; margin-right: .375rem; }

.section-product-details .product-family {
  font-size: 14px;
  color: var(--primary);
  /* text-transform: uppercase; */
  font-weight: 500;
  margin: .375rem 0 1rem 0;
}

.section-product-details .product-image-view {
  display: flex;
  flex-flow: row nowrap;
  align-items: stretch;
}
    .section-product-details .product-image-view  .mini-images {
        display: flex;
        flex-direction: column;
    }
.section-product-details .product-image-view .mini-image {
  display: flex;
  width: 6rem; height: 6rem;
  margin-right: 2rem; padding: .375rem;
  border: 1px solid var(--border-lighter);
  overflow: hidden;
}
.section-product-details .product-image-view .mini-image img {
  -webkit-transition: .35s transform ease;
  -moz-transition: .35s transform ease;
  -o-transition: .35s transform ease;
  transition: .35s transform ease;
}
.section-product-details .product-image-view .mini-image:hover img {
  -webkit-transform: translateY(-6px);
  -moz-transform: translateY(-6px);
  -o-transform: translateY(-6px);
  transform: translateY(-6px);
}
.section-product-details .product-image-view .mini-image:not(:last-child) { margin-bottom: .5rem }

.section-product-details .product-image-view .product-main-image,
.section-product-details .product-image-view .product-main-image a {
  display: flex; flex: 1;
  max-height: 408px;
}
.section-product-details .product-image-view .product-main-image img { max-height: 408px }

.section-product-details .product-image-view .product-main-image .swiper-slide {display: flex;width: 100% !important;}

.section-product-details .product-image-view .product-main-image {
  flex-direction: column;
  overflow: hidden;
}

.section-product-details .product-image-view .product-main-image .product-image {
  display: flex;
  width: 100%; height: 100%;
  -webkit-transition: .25s transform ease;
  -moz-transition: .25s transform ease;
  -o-transition: .25s transform ease;
  transition: .25s transform ease;
}

.section-other-products .product {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #cccccc;
  padding: 25px;
}

.section-other-products .product .product-image {
  display: flex;
  margin-bottom: 1.5rem;
}
.section-other-products .product .product-image,
.section-other-products .product .product-image img {
  /* max-height: 250px; */
}

.section-other-products .product .product-title {
  font-size: 1.1rem;
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  color: var(--dark-700);
  min-height: 55px;
}

.section-docs .tab-navigation {
  display: flex;
  flex: 1;
  flex-flow: row nowrap;
  flex-direction: row;
}

.section-docs .tab-navigation .tab-nav {
  display: flex; flex: 1;
  justify-content: center; align-items: center;
  min-width: 168px;
  padding: .625rem 1rem;
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  color: var(--dark-700);
  letter-spacing: .0125rem;
  border: 1px solid #B9B9B9;
  background-color: #F9F9F9;
  -webkit-transition: .15s background-color ease;
  -moz-transition: .15s background-color ease;
  -o-transition: .15s background-color ease;
  transition: .15s background-color ease;
}
.section-docs .tab-navigation .tab-nav:hover { background-color: var(--light-100) }
.section-docs .tab-navigation .tab-nav:not(:first-child) {
  border-left: none;
}
.section-docs .tab-navigation .tab-nav.nav-active {
  background-color: var(--primary);
  color: #fff;
  border: none;
}

.section-docs .tabs th,
.section-docs .tabs td {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: var(--dark-500);
}

.section-carrier .open-position {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1rem 1.5rem;
  border: 1px solid var(--border-lighter);
  border-radius: 6px;
  -webkit-transition: .15s background-color ease, .15s border-color ease;
  -moz-transition: .15s background-color ease, .15s border-color ease;
  -o-transition: .15s background-color ease, .15s border-color ease;
  transition: .15s background-color ease, .15s border-color ease;
}
.section-carrier .open-position:hover {
  background-color: var(--white-secondary);
  border-color: var(--border-light);
}
.section-carrier .open-position .position-title {
  font-size: 1.125rem; font-weight: 600;
  color: var(--primary);
  margin-bottom: .5rem;
}
.section-carrier .open-position .apply-position {
  margin-top: 1rem;
}
.section-carrier .open-position:hover .apply-position {
  background-color: var(--primary-darker);
  color: #fff;
} 

/* APP FOOTER */
.page-footer {
  position: relative;
  display: flex; flex: 1;
  flex-direction: column;
  padding: 1.5rem 0 0 0;
  background-color: var(--white-secondary);
}

.page-footer .footer-nav-block {
  display: flex;
  flex-direction: column;
}

.page-footer .footer-nav-block .nav-title {
  /*font-family: 'Open Sans', sans-serif;*/
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: .0125rem;
  margin-bottom: 1rem;
}
.page-footer .footer-nav-block .nav-title.grey { color: var(--dark-600) }
.page-footer .footer-nav-block .nav-title.centered { margin-left: auto; margin-right: auto; text-align: center; }

.page-footer .footer-nav-block a {
  display: flex;
  font-family: 'Open Sans', sans-serif;
  margin-bottom: .125rem;
  color: var(--dark-700);
}
.page-footer .footer-nav-block a:hover { color: var(--light-500) }
.page-footer .footer-nav-block.contact-block a { margin-bottom: 1rem } 

.page-footer .footer-nav-block a .feather {
  width: 1.125rem; height: 1.125rem;
  margin-right: .625rem;
}
.page-footer .footer-nav-block a span {
  display: flex;
  margin-top: -.3rem;
}

.page-footer .footer-nav-block .subscribeNewsletters-input {
  width: 400px;
  border-radius: 8px;
  padding: .625rem 4rem .625rem 1rem;
  border: 1px solid var(--sky-blue);
}

.page-footer .footer-nav-block .subscribeNewsletters-btn {
  position: absolute;
  display: flex;
  align-items: center;
  top: 0; right: 0;
  width: 60px; height: 100%;
  padding: 0 1rem;
  border-left: 1px solid var(--sky-blue);
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  -webkit-transition: .15s background-color ease;
  -moz-transition: .15s background-color ease;
  -o-transition: .15s background-color ease;
  transition: .15s background-color ease;
}
.page-footer .footer-nav-block .subscribeNewsletters-btn:hover { background-color: var(--primary) }
.page-footer .footer-nav-block .subscribeNewsletters-btn img {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
  -webkit-transition: .15s filter ease;
  -moz-transition: .15s filter ease;
  -o-transition: .15s filter ease;
  transition: .15s filter ease;
}
.page-footer .footer-nav-block .subscribeNewsletters-btn:hover img {
  -webkit-filter: brightness(0) invert(1);
  -moz-filter: brightness(0) invert(1);
  -o-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

.page-footer .footer-nav-block .social-media-icons {
  flex-flow: row nowrap;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-footer .footer-nav-block .social-media-icons a {
  display: flex;
  width: 1.875rem; height: 1.875rem;
  margin: 0 2px;
}

.page-footer .footer-stripe {
  position: relative;
  display: flex; flex: 1;
  padding: 1rem 0; margin-top: 1.5rem;
  background-color: rgb(52,73,94);
  color: #fff;
}

.page-footer .footer-stripe .stripe-wrapper {
  display: flex; flex: 1;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
}

.page-footer .footer-stripe .stripe-wrapper .copyright {
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  font-weight: 400;
}

.page-footer .footer-stripe .stripe-wrapper .lizbon {
  display: flex;
  height: 13px;
}
.page-footer .footer-stripe .stripe-wrapper .lizbon img {
  -webkit-filter: invert(1);
  -moz-filter: invert(1);
  -o-filter: invert(1);
  filter: invert(1);
}

.search-results {
  display: flex;
  flex-direction: column;
}

.search-result {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  margin-bottom: 1rem;
}

.search-result .feather {
  display: flex;
  width: 1.25rem; height: 1.25rem;
  margin-right: .75rem;
  color: var(--primary);
}

.search-result .result-body {
  display: flex;
  flex-direction: column;
}

.search-result .result-title {
  display: flex;
  font-weight: 600;
  color: var(--dark-300);
  font-size: 1.3rem;
}

.search-result .result-route {
  display: flex;
  font-size: 12px;
  color: #094fa3;
  font-size: 1rem;
}

.active-filters {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  margin-bottom: 1.5rem;
}

.active-filters li {
  list-style-type: none;
  display: flex;
  flex-flow: row nowrap;
  margin: 0 .375rem .375rem 0;
  padding: .375rem .625rem;
  background-color: #fff;
  border: 1px solid var(--border-lighter);
  border-radius: 6px;
}

.active-filters li .remove-filter {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-right: .875rem;
}

.active-filters li .remove-filter-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  font-size: 15px;
  background-color: #eaebec;
  border-radius: 50%;
}

.active-filters li .remove-filter-btn .feather {
  display: flex;
  width: 1.125rem; height: 1.125rem;
}

.active-filters li .filter-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.active-filters li .filter-category {
  font-weight: 600;
  font-size: .6rem;
  color: #86878b;
}

.active-filters li .filter-content {
  font-size: 11px;
  color: var(--dark-300);
  font-weight: 700;
  letter-spacing: -.0125rem;
}

.pagination {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.pagination-item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2rem; height: 2rem;
  margin: 0 .2rem;
  border: 1px solid var(--primary);
  border-radius: 50%;
  color: var(--primary);
  background-color: #fff;
  font-size: 14px;
  font-weight: 600;
  transition: 150ms background-color ease, 150ms color ease;
}

.pagination-item:hover {
  color: #fff;
  background-color: var(--primary);
}

.pagination-item.active {
  color: #fff;
  background-color: var(--primary);
}

.pagination-item .feather {
  display: flex;
  width: 1.125rem; height: 1.125rem;
}

img.markagorsel {
    height: 70px;
    padding: 10px;
    border: 1px solid #003f93;
    border-radius: 8px;
    object-fit: contain;
    margin-right: 10px;
}

a.markalink {
    /*height:60px;*/
    padding: 10px 20px;
    display: flex;
    border: 1px solid #003f93;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
}

.menu-title{
      font-weight: bold;
    color: #a4cdff;
    font-size: 16px !important;
}

.invalid-feedback {
    display: none;
    width: 100%;
    margin-top: .25rem;
    font-size: .875em;
    color: #dc3545
}

.form-check-custom label {
    font-weight: 500;
    font-size: 14px;
    margin-left:10px
}

h2#swal2-title {
    font-size: 1.2em;
}
.otherProducts-slider-init{
    width:100%;
    margin:0 auto;
}
.otherProducts-slider-init.col1 {
    width: 25%;
}
.otherProducts-slider-init.col2 {
    width: 50%;
}
.otherProducts-slider-init.col3 {
    width: 75%;
}

@media (max-width: 1199.98px) {
    .otherProducts-slider-init.col1 {
        width: 33%;
    }
    .otherProducts-slider-init.col2 {
        width: 67.66%;
    }
    .otherProducts-slider-init.col3 {
        width: 100%;
    }
}

@media (max-width: 991.98px) {
    .otherProducts-slider-init.col1 {
        width: 50%;
    }

    .otherProducts-slider-init.col2 {
        width: 100%;
    }

    .otherProducts-slider-init.col3 {
        width: 100%;
    }
}

@media (max-width: 767.98px) {
    .page-main .hero-banner.main{
        display:none;
    }
    .page-main .hero-banner.mobile{
        display:flex;
    }
}




.filter-menu {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 35vw;
    height: 100vh;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    background-color: #fff;
    box-shadow: 4px 0 12px rgba(0, 0, 0, .17);
    z-index: 1001;
    transform: translate3d(-100%, 0, 0);
    -webkit-transition: .35s transform ease;
    -moz-transition: .35s transform ease;
    -o-transition: .35s transform ease;
    transition: .35s transform ease;
}

    .filter-menu.visible {
        transform: translate3d(0, 0, 0)
    }

    .filter-menu .filter-menu-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-bottom: 3rem;
    }

        .filter-menu .filter-menu-header .filter-menu-title {
            font-size: 1.625rem;
            font-weight: 600;
            color: #181a1b;
        }

        .filter-menu .filter-menu-header .filter-menu-close {
            font-size: 1.375rem
        }

    .filter-menu .scrollable {
        max-height: 14vh;
        overflow-y: auto;
        padding: 10px;
        background-color: #f5f5f5;
        border-radius: 6px;
    }

    .filter-menu .filter-menu-body ul {
        position: relative;
        margin: .625rem 0 .625rem 1.5rem;
    }

        .filter-menu .filter-menu-body ul li {
            position: relative;
            margin-bottom: .625rem;
        }

            .filter-menu .filter-menu-body ul li label {
                margin-left: .325rem;
                font-size: .875rem
            }

            .filter-menu .filter-menu-body ul li .form-check-input {
                opacity: 0;
                width: 18px;
                height: 18px;
            }

                .filter-menu .filter-menu-body ul li .form-check-input:checked ~ .custom-cbox {
                    background-color: #007bff;
                    border-color: #007bff
                }

                    .filter-menu .filter-menu-body ul li .form-check-input:checked ~ .custom-cbox::after {
                        opacity: 1
                    }

            .filter-menu .filter-menu-body ul li .custom-cbox {
                position: absolute;
                left: -1.25rem;
                top: calc(50% - 9px);
                width: 18px;
                height: 18px;
                border-radius: 4px;
                border: 2px solid #86878b;
                pointer-events: none;
                -webkit-transition: .15s background-color ease, .15s border-color ease;
                -moz-transition: .15s background-color ease, .15s border-color ease;
                -o-transition: .15s background-color ease, .15s border-color ease;
                transition: .15s background-color ease, .15s border-color ease;
            }

                .filter-menu .filter-menu-body ul li .custom-cbox::after {
                    content: '\f00c';
                    position: absolute;
                    margin-top: -3px;
                    margin-left: 1px;
                    font-family: 'Font Awesome 5 Free';
                    font-weight: 900;
                    font-size: 14px;
                    color: #fff;
                    opacity: 0;
                    -webkit-transition: .15s opacity ease;
                    -moz-transition: .15s opacity ease;
                    -o-transition: .15s opacity ease;
                    transition: .15s opacity ease;
                }

    .filter-menu .apply-filters {
        margin-top: 1.5rem
    }


@media (max-width: 1250px) {
    .filter-menu {
        width: 50vw !important
    }
}

@media (max-width: 900px) {
    .filter-menu {
        width: 100% !important
    }
}

@media (max-width: 370px) {
    .filter-menu table {
        width: 100%
    }

        .filter-menu table td {
            display: flex;
            flex-flow: row nowrap;
            align-items: center;
            white-space: nowrap
        }

            .filter-menu table td input {
                display: flex
            }

            .filter-menu table td label {
                -webkit-line-clamp: 1;
                overflow: hidden;
                text-overflow: ellipsis;
                width: 90%;
            }
}

.filter-button button {
    padding: 6px 12px;
    background-color: #003f93;
    border-color: #003f93;
}

body.active {
    overflow: hidden !important;
}

.section-products .filter-menu::-webkit-scrollbar {
    width: 6px;
}

.section-products .filter-menu::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.section-products .filter-menu::-webkit-scrollbar-thumb {
    background: #b0b0b0;
    border-radius: 6px;
}

    .section-products .filter-menu::-webkit-scrollbar-thumb:hover {
        background: #999;
    }

.mobile-drawer .routes img {
    height: 70px;
    background: #fff;
    padding: 10px;
    margin: 0 auto;
}


.diller {
    display: block;
    padding: 20px;
}
.diller a{
    width:50%;
    display:block;
    float:left;
    padding:20px;
    color:#FFF !important; 
}
.diller a:first-child{
    text-align:right;
}

.ui-autocomplete {
    position: absolute;
    z-index: 100;
    background: white;
    height: 51vh;
    overflow-y: scroll;
    /*margin-top: 27px;*/
    width: 300px;
    /* top: 92px !important; */
    padding: 20px;
    font-size: 13px;
}
.ui-menu-item {
    border-bottom: 1px solid #ececec;
    padding: 10px 0;
    display: flex;
}

.ui-autocomplete {
    display: flex;
    flex-flow: column nowrap;
    width: 400px !important;
    box-shadow: 1px 5px 11px #4b4b4b;
    position: fixed;
}

    .ui-autocomplete li {
        cursor: pointer;
    }

.searchImage {
    width: 100%;
    margin-right: 10%;
    cursor: pointer;
}
.searchCont {
    width: 20%;
    height: 100%;
    display: block;
}

.searchTitle {
    width: 70%;
    cursor: pointer;
    /* line-height: 0; */
    margin-left: 10%;
    align-items: center;
    display: flex;
}
button#pills-home-tab {height: 3rem;border: 1px solid #d8d8d8;margin-right: 10px;border-bottom: 5px solid #d8d8d8;}
button#pills-home-tab:hover {border: 1px solid #003f93; border-bottom: 5px solid #003f93;}
.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    color: #fff;
    background-color: #ffffff;
    border: 1px solid #003f93 !important;
    border-bottom: 5px solid #003f93 !important;
}



.filter-button button {
    padding: 6px 12px;
    background-color: #003f93;
    border-color: #003f93;
}

.left-menu {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 35vw;
    height: 100vh;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    background-color: #fff;
    box-shadow: 4px 0 12px rgba(0, 0, 0, .17);
    z-index: 1001;
    transform: translate3d(-100%, 0, 0);
    -webkit-transition: .35s transform ease;
    -moz-transition: .35s transform ease;
    -o-transition: .35s transform ease;
    transition: .35s transform ease;
}

    .left-menu.visible {
        transform: translate3d(0, 0, 0)
    }

@media (max-width: 1250px) {
    .left-menu {
        width: 50vw !important
    }
}

@media (max-width: 900px) {
    .left-menu {
        width: 100% !important
    }
}

body.active {
    overflow: hidden !important;
}

.left-menu::-webkit-scrollbar {
    width: 6px;
}

.left-menu::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.left-menu::-webkit-scrollbar-thumb {
    background: #b0b0b0;
    border-radius: 6px;
}

    .left-menu::-webkit-scrollbar-thumb:hover {
        background: #999;
    }


.left-menu .left-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 3rem;
}

    .left-menu .left-menu-header .left-menu-title {
        font-size: 1.625rem;
        font-weight: 600;
        color: #181a1b;
    }

    .left-menu .left-menu-header .left-menu-close {
        font-size: 1.375rem
    }

div#otherSitesCollapse a {
    background: white;
    border-radius: 20px;
    margin: 10px;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='%23fff' class='bi bi-plus' viewBox='0 0 16 16'%3E%3Cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3E%3C/svg%3E");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='%23fff' class='bi bi-dash' viewBox='0 0 16 16'%3E%3Cpath d='M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8z'/%3E%3C/svg%3E");
}

.product-category {
    font-size: 16px;
    font-weight: 700;
    color: rgb(0,71,171);
    letter-spacing: .0125rem;
    align-items: center;
}

.lang-menu-wrap {
    position: relative;
}

.lang-menu-wrap .flaticon-internet:before {
    color: #fff;
    line-height: 42px;
    margin: 0 11px;
    font-size: 20px;
    font-size: 1.25rem;
}

.flaticon-internet:not(.cancel):before {
    content: "\F3EF";
    font-family: "bootstrap-icons";
}

.flaticon-internet.cancel:before {
    content: "\F659";
    font-family: "bootstrap-icons";
}

.fi:before {
    display: inline-block;
    font-family: "bootstrap-icons";
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    line-height: 1;
    text-decoration: inherit;
    text-transform: none;
}

.desktop-lang.cancel {
    background-color: #707070;
}

.desktop-lang {
    transition: all .5s ease-in-out;
    background: #e30613;
    background-size: auto;
    background-size: 42px;
    display: block;
    width: 42px;
    height: 42px;
    top: 0;
}

.custom-slide-out.active {
    height: auto;
    background-color: #707070;
}

.custom-slide-out {
    transition: all .5s ease-in-out;
    position: absolute;
    right: 0;
    top: 42px;
    width: 195px;
    color: #fff;
    background: #e30613;
    z-index: 5;
    height: 0;
    overflow-x: hidden;
}

.lang-menu-wrap {
    position: relative;
}

#lang-menu ul {
    margin-bottom: 0;
}

#lang-menu ul li {
    border-top: 1px solid #ddd;
}

#lang-menu ul li a {
    display: block;
    font-size: 12px;
    font-size: .75rem;
    text-align: center;
    line-height: 40px;
    height: 40px;
    margin: 0 auto;
    color: #fff;
    text-decoration: none;
}

#lang-menu ul li a.active:before {
    content: "\F633";
    font-family: "bootstrap-icons";
    margin-left: -25px;
    margin-right: 10px;
}