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

ol[class],
ul[class] {
  padding: 0;
}

blockquote,
body,
dd,
dl,
figcaption,
figure,
h1,
h2,
h3,
h4,
li,
ol[class],
p,
ul[class] {
  margin: 0;
}

body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  font-family: 'Roboto-Regular', sans-serif;
  font-weight: 100;
  -webkit-font-smoothing: antialiased;
}

ol[class],
ul[class] {
  list-style: none;
}

a {
  color: var(--colorBlue);
  font-weight: 500;
  text-decoration: none;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

img {
  max-width: 100%;
  height: auto;
}


button,
input,
select,
textarea {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0s !important;
    scroll-behavior: auto !important;
  }
}

html {
  scroll-behavior: smooth;
}

@font-face {
  font-family: 'Biryani-Bold';
  src: url(../fonts/Biryani-Bold.woff2), local('Helvetica');
  font-display: swap;
}
  
@font-face {
  font-family: 'Biryani-ExtraLight';
  src: url(../fonts/Biryani-ExtraLight.woff2), local('Helvetica');
  font-display: swap;
}
  
@font-face {
  font-family: 'Biryani-Regular';
  src: url(../fonts/Biryani-Regular.woff2), local('Helvetica');
  font-display: swap;
}
  
@font-face {
  font-family: 'Biryani-SemiBold';
  src: url(../fonts/Biryani-SemiBold.woff2), local('Helvetica');
  font-display: swap;
}

@font-face {
  font-family: 'Roboto-Light';
  src: url(../fonts/Roboto-Light.woff2), local('Helvetica');
  font-display: swap;
}
  
@font-face {
  font-family: 'Roboto-Medium';
  src: url(../fonts/Roboto-Medium.woff2), local('Helvetica');
  font-display: swap;
}
  
@font-face {
  font-family: 'Roboto-Regular';
  src: url(../fonts/Roboto-Regular.woff2), local('Helvetica');
  font-display: swap;
}
  

:root {
  --colorBlue: #436297;
  --colorYellow: #F8E500;
  --colorLight: #fff;
  --colorLightGray: #f1f2f2;
  --colorFooterGray: #DEDEDE;
  --colorDark: #212121;
  --colorDarkest: #000;
}

a.learn-more {
  display: inline-block;
  background-color: var(--colorBlue);
  color: #fff;
  height: auto;
  width: auto;
  justify-content: center;
  align-items: center;
  padding: 12px 20px;
  text-transform: uppercase;
  font-family: 'Roboto-Medium', sans-serif;
  -webkit-transition: box-shadow 200ms ease, border 200ms ease, background-color 200ms ease;
  transition: box-shadow 200ms ease, border 200ms ease, background-color 200ms ease;
  line-height: 100%;
  border-radius: 3px;
  letter-spacing: .02em;
}

a.learn-more:hover {
  cursor: pointer;
  color: #fff;
  box-shadow: 0 8px 16px 4px rgba(0, 0, 0, 0.3);
}

a.learn-more:focus {
  box-shadow: 0 8px 16px 4px rgba(0, 0, 0, 0.3);
}


h1, .section-title {
  text-transform: uppercase;
  color: var(--colorBlue);
  font-size: 32px;
  font-weight: 400;
  font-family: 'Biryani-Regular', sans-serif;
}

h2 {
  text-transform: uppercase;
  color: var(--colorBlue);
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 20px;
  font-family: 'Biryani-Regular', sans-serif;
}

h3 {
  text-transform: uppercase;
  color: var(--colorBlue);
  font-size: 24px;
  font-family: 'Biryani-Bold', sans-serif;
}

header {
  padding: 20px 4% 0px;
  position: relative;
  height: 120px;
  display: flex;
  align-items: center;
  background-color: var(--colorLight);
  justify-content: space-between;
}

a.logo-link {
  padding: 8px 0px;
  height: 100%;
  flex: 0 0 auto;
  margin-right: 60px;
}

.logo {
  height: 100%;
  width: auto;
}

nav {
  height: 100%;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

nav a {
  color: var(--colorDark);
  text-decoration: none;
  font-size: 12px;
  text-transform: uppercase;
  height: 100%;
  display: flex;
  align-items: center;
  font-family: 'Roboto-Medium', sans-serif;
}

nav a:hover {
  color: var(--colorBlue);
}

.post p {
  margin-bottom: 20px;
  font-size: 18px;
}

.post li {
  font-size: 18px;
}

.post .address {
  margin-bottom: 4px;
}

/* Two Row Navigation */
.phone-container {
  display: flex;
  justify-content: flex-end;
  height: 100%;
  align-items: center;
}

.phone-container .learn-more {
  margin-left: 40px;
}

.nav-call {
  color: var(--colorDark);
  font-size: 18px;
  display: flex;
}

.nav-call span {

    color: var(--colorBlue);
    margin-right: 7px;
}

.menu-main-menu-container {
  height: 100%;
}

#menu-main-menu {
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

#menu-main-menu > li {
  display: flex;
  align-items: center;
  height: 100%;
  cursor: pointer;
}

#menu-main-menu li:not(:last-child) {
  padding-right: 24px;
}

#menu-main-menu li:hover ul.sub-menu {
  visibility: visible;
  opacity: 1;
  display: block;
  border-top: 0px solid var(--colorPrimary);
}

#menu-main-menu li.menu-item-has-children > a:after {
  font-family: 'fontawesome';
  content: '\f107';
  margin: 0 0 0 5px;
  color: var(--colorDark);
}


/* #menu-main-menu li.navigation-cta a {
*
*  padding: 12px;
*  background-color: var(--colorPrimary);
*  color: var(--colorLight);
*  border-radius: 4px;
*} */
/* #menu-main-menu li.navigation-cta:hover a {
*  color: var(--colorLight);
*  background-color: var(--colorPrimary);
*} */

.sub-menu {
  display: none;
  position: absolute;
  z-index: 90;
  margin: 0;
  height: auto;
  top: 128px;
  max-width: 360px;
}

.sub-menu li {
  margin: 0;
  display: block;
  text-align: left;
  background: #c2cbd2;
  padding: 8px 12px;
}

.sub-menu li:hover {
  background: var(--colorBlue);
}

.sub-menu a {
  font-size: 14px;
  font-weight: 500;
  color: #262626;
  text-transform: none;
  height: 100%;
}

.sub-menu a:hover {
  color: #fff !important;
}
.sub-menu li:hover a {
  color: #fff !important;
}

/* HERO */

#hero {
  background: #fff url(../img/lr-micro-homepage-banner.jpg) no-repeat top center / cover;
  height: 400px;
  padding: 30px 8%;
}

#hero-content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  max-width: 1160px;
  margin: 0 auto;
}

.hero-copy .heading {
  color: #fff;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 10px;
  font-family: 'Biryani-Bold', sans-serif;
}

.hero-copy {
  flex: 0 0 410px;
}

.hero-forms {
  flex-grow: 1;
  text-align: center;
}

.hero-forms a.learn-more {
  background-color: var(--colorYellow);
  color: var(--colorDark);
  font-size: 20px;
  border-radius: 8px;
}

.list-item {
  color: #fff;
  font-weight: bold;
  font-size: 22px;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
}

.list-item:before {
  font-family: 'FontAwesome';
  content: '\f0c8';
  margin: 2px 8px 0 0;
  color: var(--colorLight);
  font-size: 6px;
  display: flex;
  align-items: center;
}

.split-copy .list-item {
  font-size: 20px;
}

/* INFO */

#info {
  padding: 80px 8% 60px;
  position: relative;
  overflow: hidden;
}

#info .background-container {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  width: auto;
  height: 100%;
}

#info img {
  height: 100%;
  opacity: .2;
}

#info > * {
  position: relative;
  z-index: 10;
}

#info p {
  font-size: 24px;
  margin-bottom: 24px;
}

#info h1 {
  margin-bottom: 24px;
}

.cta-container {
  text-align: right;
  margin-right: 6%;
}

/* PAGE NAVIGATION */

#page-navigation {
  padding: 60px 6% 30px;
}

.page-navigation-row {
  display: flex;
  margin: 0 auto;
  max-width: 1160px;
  flex-flow: wrap;
  justify-content: space-around;
}

.page-nav-container {
  flex: 0 0 46%;
  text-align: center;
  margin-bottom: 30px;
  overflow: hidden;
}

.page-nav-img-container:hover div,
.page-nav-img-container:hover div {
  transform: scale(1.15);
}

.page-nav-img-container {
  height: 230px;
  width: calc(100% - 4px);
  display: inline-block;
  margin-bottom: 10px;
  overflow: hidden;
  position: relative;
  border: 2px solid #ddd;
  border-radius: 12px;
}


.page-nav-img-container > div {
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  transition: all .5s;
}

.page-nav-img-container a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 15;
}

.aviation .page-nav-img-container > div{
  background-image: url("../img/aviation-and-aerospace-components-lr-micro.jpg");
}

.defense .page-nav-img-container > div {
  background-image: url("../img/government-defense-electronics-lr-micro.jpg");
}

.electronics .page-nav-img-container > div {
  background-image: url("../img/electronics-sourcing-products-services-lr-micro.jpg");
}

.other .page-nav-img-container > div {
  background-image: url("../img/healthcare-and-other-industries-products-services-lr-micro.jpg");
}



/* SPLIT */

.split-info {
  display: flex;
  width: 100%;
  box-sizing: border-box;
  min-height: 400px;
}

.split-copy {
  padding: 60px 0px 60px 60px;
  flex: 0 0 60%;
}

.split-copy p.list-item {
  color: var(--colorDark);
  font-weight: 400;
}

.split-copy p.list-item:before {
  color: var(--colorDark);
}

.split-img {
  flex: 0 0 40%;
}

.split-img.stocking {
  background: #fff url(../img/stocking-distributor-delivery-square-lr-micro.jpg) no-repeat center center / cover;
}


.split-img.quality {
  background: #fff url(../img/quality-control-dial-lr-micro.jpg) no-repeat center center / cover;
}

.split-info.stocking {
  background-color: var(--colorLightGray);
  padding-right: 6%;
  margin-bottom: 5px;
}

.split-info.quality {
  background-color: var(--colorFooterGray);
  padding-right: 6%;
}

.split-info .cta-container {
  margin-top: 30px;
}

/* WOMAN */

#woman-owned {
  padding: 80px 8% 60px;
}

#woman-owned p {
  font-size: 24px;
  margin-bottom: 24px;
  color: var(--colorBlue);
}

/* FOOTER */

footer {
  padding: 80px 7%;
  background: #fff url(../img/footer-banner-bg-lr-micro.jpg) no-repeat center center / cover;
}

footer .columns-container {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: auto;
}

.footer-address h3 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 20px;
}

.footer-address p {
  color: #fff;
  font-weight: 400;
  letter-spacing: .02em;
}

footer a {
  color: #fff;
  font-weight: 600;
}

#footer-contact .footer-title {
  color: #fff;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 600;
}

#footer-contact .footer-title:nth-of-type(2) {
  margin-bottom: 20px;
}

#footer-contact .footer-title span {
  color: var(--colorYellow);
  font-size: 15px;
  margin-right: 8px;
}

.footer-bottom {
  display: flex;
  justify-content: center;
  padding: 50px 6% 0px;
}

.footer-bottom p {
  color: #fff;
}

/* INTERNAL PAGE */

.internal-header {
  height: 220px;
  display: flex;
  align-items: center;
  padding: 0px 10%;
}

.internal-header.flexed {
  flex-direction: column;
  justify-content: center;
}

.internal-header.flexed .subpage-title-2 {
  margin: 0 auto;
  margin-left: 0;
}

.internal-header.flexed .page-subtitle-2 {
  margin-left: 0;
}

.page-template-internal-page h1, .page-template-contact-page h1 {
  color: #fff;
  font-size: 44px;
}

.page-template-internal-page article .post, .page-template-contact-page article .post {
  padding: 60px 6%;
  max-width: 1000px;
  margin: 0 auto;
}

section#request-quote-cta {
  padding: 50px 5%;
  background-color: var(--colorBlue);
  display: flex;
  align-items: center;
  justify-content: center;
}

#request-quote-cta a.cta-button {
  background-color: var(--colorYellow);
  padding: 12px 20px;
  border-radius: 6px;
  color: var(--colorDarkBlue);
  font-family: 'Roboto-Medium';
  text-transform: uppercase;
  transition: transform .5s;
  transform: scale(1);
  display: block;
}

#request-quote-cta a.cta-button:hover {
  transform: scale(1.05);
}

/* ABOUT US */

div#about-us-nav {
  padding: 80px 8%;
  background-color: var(--colorLightGray);
}

.about-us-row {
  display: flex;
  justify-content: space-between;
  max-width: 940px;
  margin: 0 auto;
}

.about-us-row a {
  flex: 1;
  color: #212121;
}

.about-us-row a div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.about-us-row div span {
  font-size: 100px;
  margin-bottom: 30px;
}

.about-us-row h4 {
  text-transform: uppercase;
  letter-spacing: .02em;
  font-weight: 100;
  font-size: 22px;
}

.certification-row {
  display: flex;
  margin-top: 30px;
}

.certification-row div {
  flex: 0 0 190px;
  margin-right: 20px;
}


.contact-split {
  display: flex;
  width: 100%;
  min-height: 540px;
  padding: 60px 6%;
}

.contact-split .post {

}

.contact-split .post > div:first-of-type {
margin-bottom: 30px;
}

.contact-split {
    display: flex;
    width: 100%;
    min-height: 540px;
    padding: 60px 6%;
}

.contact-split .post {

}

.contact-split > div:first-of-type {
  margin-right: 50px;
}


/* FORM */

form .gform_wrapper .gform_footer {
  margin-top: 0px;
}

#gform_1 {
  max-width: 600px;
}

.gform_wrapper .field_sublabel_below .ginput_complex.ginput_container label, .gform_wrapper .field_sublabel_below div[class*=gfield_time_].ginput_container label {
  font-family: open sans, sans-serif;
  font-size: 10px;
}


section#contact-form {
  min-height: 400px;
  background-color: var(--colorGreen);
  box-shadow: inset 0 10px 30px -20px #000;
  padding: 50px 10%;
}

#contact-form h2 {
  color: var(--colorDark);
}

#contact-form .gform_wrapper .gform_body .gform_fields .gfield .gfield_label, .gform_wrapper .gform_body .gform_fields .gfield .gfield_label .gfield_required  {
  color: var(--colorDark);
  font-family: 'Biryani-Regular', sans-serif;
}

#contact-form .gform_wrapper.gravity-theme .gfield-choice-input+label {
  color: var(--colorDark);
  font-family: 'Biryani-Regular', sans-serif;
}

.gform_wrapper .gform_body .gform_fields .gfield input[type=text], .gform_wrapper .gform_body .gform_fields .gfield input[type=email], .gform_wrapper .gform_body .gform_fields .gfield textarea, .gform_wrapper .gform_body .gform_fields .gfield select, 
.gform_wrapper .gform_body .gform_fields .gfield input[type=tel] {
  border-radius: 4px;
  border: 2px solid #eee;
}

footer .gform_wrapper .gform_body .gform_fields .gfield input[type=email] {
  border: 1px solid #333;
}

select, input[type="text"] {
  height: 44px;
  background-color: #fff;
  border: none;
  padding-left: 6px !important;
  border-radius: 0px;
  font-family: 'Lora', sans-serif;
}

::placeholder {
  color: #aaa;
  text-transform: Capitalize;
  font-family: 'Lora', sans-serif;
}

option:not(:first-of-type) {
  color: #aaa;
}

body .gform_wrapper .gform_footer input[type=submit] {
  padding: 0px 20px;
  color: var(--colorLight);
	font-weight: 700;
	text-transform: capitalize;
	font-size: 18px;
	line-height: 18px;
	height: 38px;
	background-color: var(--colorBlue);
	text-decoration: none;
	display: inline-block;
  border: 2px solid var(--colorLight);
  font-family: 'Amiko', sans-serif;
}


.alignleft {
	float: left;
	margin: 0 20px 20px 0;
  height: auto;
}
.alignright {
	float: right;
	margin: 0 0px 20px 20px;
  height: auto;
}
.aligncenter {
	display: block;
	margin: 0 auto 20px;
  height: auto;
}


/* RESPONSIVE */

@media screen and (min-width: 1001px) {
  .mobile {
    display: none !important;
  }
}

@media screen and (max-width: 1000px) {
  .desktop {
    display: none !important;
  }
  
  .img-abs-close {
    left: -10px;
  }

  .sidenav {
    height: 0px;
    width: 100%;
    position: fixed;
    z-index: 900;
    bottom: 0;
    left: 0;
    background-color: var(--colorLight);
    overflow-x: hidden;
    transition: 0.5s;
    padding: 20px 20px 0px;
    border-top: 5px solid white;
    -webkit-overflow-scrolling: touch;
  }

  .sidenav ul {
    list-style: none;
    padding-left: 0;
  }

  .sidenav li {
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  }

  .sidenav li:last-of-type {
    border: none;
  }

  .sidenav a {
    padding: 8px;
    text-decoration: none;
    font-size: 21px;
    color: var(--colorBlue);
    display: block;
    transition: 0.3s;
    font-family: 'Montserrat', sans-serif;
  }


  .sidenav a:before {
    content: "\f054";
    font-family: FontAwesome;
    color: var(--colorBlue);
    padding-right: 7px;
  }

  .sidenav.open {
    height: 100%;
    padding-bottom: 100px;
  }

  .fixedPosition {
    position: fixed;
  }


  /* Menu Icon */
  #menu-icon {
    width: 40px;
    height: 30px;
    position: relative;
    margin: 7px auto 6px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
  }

  #menu-icon span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #fff;
    border-radius: 6px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
  }

  #menu-icon.open span {
    background: var(--colorLight);
  }

  /* Icon 3 */
  #menu-icon span:nth-child(1) {
    display: none;
  }

  #menu-icon span:nth-child(2),
  #nav-icon span:nth-child(3) {
    top: 11px;
  }

  #menu-icon span:nth-child(4) {
    top: 24px;
  }

  #menu-icon.open span:nth-child(1) {
    display: none;
  }

  #menu-icon.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  #menu-icon.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 10px;
  }

  #menu-icon.open span:nth-child(4) {
    top: 12px;
    width: 0%;
    left: 50%;
    opacity: 0;
  }

  .menu-header-nav-container > ul {
    display: block;
  }


  header.mobile .mobile-logo {
    width: auto;
    height: 110px;
  }

  .mobile-logo-container {

    padding:8px 0px;
  }

  .mobile-header-copy-container {
    flex: 0 0 33%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
  }

  body.home header.mobile {
    text-align: center;
    height: 104px;
    padding: 20px 0px 0px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  body:not(.home) header.mobile {
    height: 90px;
  }

  body:not(.home) .mobile-logo-container {
    height: 100%;
    background-color: rgb(255,255,255,.8);
    text-align: center;
    z-index: 800;
    position: relative;
  }

  body:not(.home) .mobile-logo-container a {
    display: inline-block;
    width: auto;
    height: 74px;
  }

  body:not(.home) .mobile-logo-container img {
    display: inline-block;
    width: auto;
    height: 74px;
  }

  .internal-header {
    margin-top: -90px;
    height: 200px;
    position: relative;
  }

  header.mobile h1 {
    font-family: 'Biryani-Regular', sans-serif;
    text-transform: uppercase;
    color: #fff;
    font-weight: 400;
    font-size: 34px;
    line-height: 110%;
  }

  header.mobile p {
    color: #fff;
    line-height: 120%;
    font-family: 'Roboto-Regular', serif;
    font-size: 40px;
    font-weight: lighter;
    filter: drop-shadow(0 0 5px #000);
    padding: 0px 20px;
  }

  header.mobile .research-mobile-banner {
    background: url("/wp-content/themes/brandjo/img/Mobile-Hero-Img-Research.jpg") no-repeat center center / cover;
  }

  .mobile-navbar {
    background-color: var(--colorBlue);
    overflow: hidden;
    position: fixed;
    bottom: 0px;
    width: 100%;
    height: 100px;
    left: 0;
    z-index: 999;
    border-top: 2px solid var(--colorBlue);
  }

  .mobile-navbar ul li .nav-icon img {
    max-height: 40px;
  }

  header.mobile .mobile-navbar ul {
    display: flex;
    height: 100px;
    list-style: none;
    padding-left: 0;
    justify-content: flex-end;
  }

  header.mobile .mobile-navbar ul li {
    width: 33%;
  }

  header.mobile .mobile-navbar ul li .nav-icon {
    height: 44px;
    text-align: center;
  }

  header.mobile .mobile-navbar ul li .nav-text {
    font-family: 'Montserrat', sans-serif;
    color: var(--colorLight);
    text-transform: uppercase;
    text-align: center;
  }

  .mobile-navbar a {
    text-decoration: none;
  }

  div#hero-content {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: auto;
  }

  .hero-copy {
    flex: none;
    margin-bottom: 30px;
  }

  section#hero {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  section.split-info {
    flex-direction: column;
  }

  .split-img {
    flex: none;
    height: 300px;
  }

  section.split-info.stocking {
    padding: 0;
  }

  section.split-info.quality {
    padding: 0px;
  }

  .split-copy {
    padding: 30px;
    flex: none;
  }

  .columns-container {
    flex-direction: column;
  }

  a.logo-link {
    text-align: center;
    margin-right: 0;
    margin-bottom: 20px;
  }

  section.footer-address {
    text-align: center;
    margin-bottom: 20px;
  }

  section#footer-contact {
    text-align: center;
  }

  footer {
    padding-bottom: 125px;
  }

  .cta-container {
    text-align: center;
    margin-right: 0;
  }

  header#top {
    display: block;
    padding: 0;
    height: 74px;
  }

  .mobile-logo-container {
    display: block;
    height: 74px;
    width: 100%;
    background-color: #fff;
    text-align: center;
    padding: 0;
  }

  body:not(.home) .mobile-logo-container {
    height: 74px;
  }

  section.internal-header {
    margin-top: 0px;
  }

  .page-template-internal-page h1, .page-template-contact-page h1 {
    text-align: center;
    font-size: 9vw;
  }
	
	#hero-content p.heading {
    text-align: center;
    font-size: 6vw;
  }

  #hero-content p.list-item {
    font-size: 20px;
  }

  #info p {
    font-size: 20px;
  }

  section#info {
    padding: 30px;
  }

  .page-nav-container h3 {
    font-size: 16px;
  }

  .page-nav-img-container {
    height: 180px;
  }

  section#woman-owned {
    padding: 30px;
  }

  section#woman-owned p {
    font-size: 20px;
  }

  .white-contact-form {
    padding: 25px;
  }
}

/* new classes BR - 12.02.2024 */
@media (max-width: 767px) {
  .white-contact-form {
    width: 100%;
    height: auto;
    text-align: left;
  }
  .white-contact-form.centered {
    margin-bottom: -245px;
  }
  .white-contact-form.distributorform {
    margin-bottom: -245px;
  }
  .white-contact-form.quote-form {
    margin-bottom: -245px;
  }
}

@media (max-width: 479px) {
  .white-contact-form.centered {
    margin-bottom: -225px;
  }
  .white-contact-form.distributorform {
    margin-bottom: -225px;
  }
  .white-contact-form.quote-form {
    margin-bottom: -225px;
  }
  .div-quote-cont {
    display: block;
  }
  .img-abs-close {
    left: -15px;
  }
}

.subpage-header {
  padding-top: 190px;
  padding-bottom: 90px;
  background-position: 0px 0px, 50% 50%;
  background-size: auto, cover;
  color: #fff;
  text-align: center;
}

.subpage-header.about-5 {
  padding-top: 250px;
  padding-bottom: 170px;
  background-position: 0px 0px, 50% 50%;
  background-size: auto, cover;
}

.subpage-header.contact-1 {
  background-size: auto, cover;
}

.subpage-header.ui {
  padding-top: 210px;
  position: relative;
}

.subpage-header.ui::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../img/about-us-banner-lr-micro.jpg');
  background-position: 50% 50%;
  background-size: cover;
  z-index: -1;
}

.subpage-title {
  margin-top: 0px;
  margin-bottom: 0px;
  font-size: 50px;
  line-height: 40px;
  font-weight: 400;
}

.subpage-title-2 {
  margin-top: 0px;
  margin-bottom: 0px;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 50px;
  line-height: 40px;
  font-weight: 400;
  color: #fff;
}

.page-subtitle {
  display: block;
  width: 65%;
  margin-top: 20px;
  margin-right: auto;
  margin-left: auto;
  font-size: 20px;
  line-height: 33px;
  font-weight: 300;
}

.page-subtitle-2 {
  display: block;
  width: 65%;
  margin-top: 20px;
  margin-right: auto;
  margin-left: auto;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 20px;
  line-height: 27px;
  font-weight: 300;
  color: #fff;
}

html.w-mod-js *[data-ix="fade-in-on-load"] {
  opacity: 0;
  -webkit-transform: translate(0px, 30px);
  -ms-transform: translate(0px, 30px);
  transform: translate(0px, 30px);
}

html.w-mod-js *[data-ix="fade-in-on-load-2"] {
  opacity: 0;
}

html.w-mod-js *[data-ix="fade-in-on-load-3"] {
  opacity: 0;
}

.section {
  position: relative;
  padding: 45px;
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #fff;
}

.section.tint {
  background-color: #f5f5f5;
}

.section.below-contact-form {
  padding-bottom: 35px;
  padding-top: 240px;
  background-color: #f0f2f5;
}

.container {
  position: relative;
}

.container.testimonial-container {
  position: absolute;
  left: 0px;
  top: 50%;
  right: 0px;
  -webkit-transform: translate(0px, -50%);
  -ms-transform: translate(0px, -50%);
  transform: translate(0px, -50%);
}

.container-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.container.testimonial-container {
  position: relative;
  top: 0%;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}

.div-tables-cont {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 40px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.table-wrapper {
  overflow: hidden;
  width: 48%;
  margin-right: 0px;
  margin-left: 0px;
  -webkit-box-ordinal-group: 0;
  -webkit-order: -1;
  -ms-flex-order: -1;
  order: -1;
  border-radius: 4px;
  background-color: #fff;
  font-size: 13px;
}

.table-item-wrapper {
  padding: 10px 14px 10px 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.09);
}

.table-item-link:nth-child(2n+1) .table-item-wrapper {
  background-color: #eff9fd
}

.table-item-link:nth-child(2n+1) .table-item-wrapper:hover {
  background-color: #f3f3f3;
}

.table-item-wrapper:hover {
  background-color: #f3f3f3;
  color: var(--colorBlue);
}

.table-item-wrapper.title {
  background-color: var(--colorBlue);
  color: #fff;
}

.table-item-row {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.table-item-column.right-align {
  text-align: right;
}

.table-item-column.center-align {
  text-align: center;
}

.table-title {
  font-family: Montserrat, sans-serif;
}

.table-full-wrapper {
  overflow: hidden;
  width: 100%;
  margin-right: 0px;
  margin-left: 0px;
  -webkit-box-ordinal-group: 0;
  -webkit-order: -1;
  -ms-flex-order: -1;
  order: -1;
  border-radius: 4px;
  background-color: #fff;
  font-size: 13px;
}

.table-item-row {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.table-item-link {
  width: 100%;
  -webkit-transition: color 400ms ease, background-color 300ms ease;
  transition: color 400ms ease, background-color 300ms ease;
  color: #000;
  text-decoration: none;
}

.table-item-link:hover {
  background-color: #f3f3f3;
  color: var(--colorBlue);
}

.table-item-link.title:hover {
  background-color: var(--colorBlue);
  color: #fff
}

.w-container {
  margin-left: auto;
  margin-right: auto;
  max-width: 940px;
}

.w-container .w-row {
  min-height: 24px;
  margin-left: -10px;
  margin-right: -10px;
}

.w-col {
  position: relative;
  float: left;
  width: 100%;
  min-height: 1px;
  padding-left: 10px;
  padding-right: 10px;
}

.w-col-4 {
  width: calc(100% / 3 - 20px);
}

.pagination {
  display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.paglink {
  text-decoration: none;
  color: #000;
  font-size: 14px;
  display: block;
  margin: 3px;
}

.paglink:hover {
  color: var(--colorBlue);
}

.paglink.currentpage {
  color: var(--colorBlue);
    font-weight: 700;
}

.paglink.text-pagelink {
  display: block;
}

.div-request {
  margin-top: 30px;
  text-align: center;
}

.button.bigger-button {
  padding: 15px 40px;
  font-size: 15px;
  line-height: 21px;
}

.button {
  margin-top: 20px;
  padding-right: 25px;
  padding-left: 25px;
  border-radius: 3px;
  background-color: var(--colorBlue);
  transition: background-color 200ms ease, background-position 200ms ease, color 200ms ease, border 200ms ease, box-shadow 200ms ease;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.w-button {
  display: inline-block;
  padding: 9px 15px;
  background-color: #3898EC;
  color: white;
  border: 0;
  line-height: inherit;
  text-decoration: none;
  cursor: pointer;
  border-radius: 0;
}

.button:hover {
  box-shadow: 0 8px 16px 4px rgba(0, 0, 0, 0.3);
  color: #fff;
}

.white-contact-form {
  width: 60%;
  height: 545px;
  margin-bottom: 0px;
  padding: 35px 45px;
  float: left;
  border-radius: 4px;
  background-color: #fff;
  color: #000;
  text-align: left;
}

.white-contact-form.centered {
  position: relative;
  z-index: 10;
  display: block;
  height: auto;
  margin-right: auto;
  margin-bottom: -280px;
  margin-left: auto;
  float: none;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.07);
}

.white-contact-form.distributorform {
  position: relative;
  z-index: 10;
  display: block;
  height: auto;
  margin: 40px auto 0px;
  float: none;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.07);
}

.white-contact-form.quote-form {
  position: relative;
  z-index: 10;
  display: block;
  width: 100%;
  height: auto;
  margin: 0px auto;
  float: none;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.07);
}

.success-message {
  padding-top: 30px;
  border-radius: 5px;
  background-color: #5ec045;
  color: #fff;
}

.w-form-done {
  display: none;
  padding: 20px;
  text-align: center;
  background-color: #dddddd;
}

.error-bg {
  padding-top: 12px;
  padding-bottom: 1px;
  border-radius: 3px;
  color: #e42121;
  font-size: 12px;
  text-align: center;
}

.w-form-fail {
  display: none;
  margin-top: 10px;
  padding: 10px;
  background-color: #ffdede;
}

.div-quote-cont {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-right: -5px;
  margin-left: -5px;
}

.quote-item {
  padding-right: 5px;
  padding-left: 5px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin: 0 10px;
}

.field-label {
  color: #989ba2;
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
}

.field {
  height: 50px;
  border: 0px solid #000 !important;
  border-radius: 4px;
  background-color: hsla(0, 0%, 100%, 0.2);
  -webkit-transition: background-color 200ms ease;
  transition: background-color 200ms ease;
}

.field:hover {
  background-color: #fff;
}

.field:focus {
  background-color: #fff;
  outline: none;
}

.field.rounded {
  height: 40px;
  border-radius: 4px;
  background-color: #f2f3f7;
  -webkit-transition: background-color 200ms ease, box-shadow 200ms ease;
  transition: background-color 200ms ease, box-shadow 200ms ease;
}

.field.rounded:hover {
  background-color: #dfe1e7;
}

.field.rounded:focus {
  background-color: #fff;
  box-shadow: 4px 4px 15px 0 rgba(0, 0, 0, 0.2);
  color: #000;
}

.field.rounded.area {
  height: 100px;
}

.w-input, .w-select {
  display: block;
  width: 100%;
  height: 38px;
  padding: 8px 12px;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.428571429;
  color: #333333;
  vertical-align: middle;
  background-color: #ffffff;
  border: 1px solid #cccccc;
}

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

.img-abs-close {
  position: absolute;
  left: -20px;
  top: 50%;
  right: auto;
  bottom: 0%;
  width: 12px;
  cursor: pointer;
}

/* Search Panel */

.nav_search_block {
  margin-bottom: 0px;
  margin-left: 32px;
}

.block-search {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.block-search input {
  margin-top: 0;
}

.block-search input::placeholder {
  color: rgb(153, 153, 153);
}

.block-search .button {
  background-color: var(--colorBlue);
}

.transparent-field {
  width: 140px;
  height: 24px !important;
  margin-right: 10px;
  margin-bottom: 0px;
  border: 1px solid var(--colorBlue) !important;
  border-radius: 2px;
  background-color: transparent;
  -webkit-transition: box-shadow 200ms ease, border 200ms ease, background-color 200ms ease;
  transition: box-shadow 200ms ease, border 200ms ease, background-color 200ms ease;
  color: #000;
  font-size: 13px;
}

.transparent-field:focus {
  background-color: #fff;
  box-shadow: 2px 2px 8px 0 var(--colorBlue);
  color: #000;
  outline: none;
}

.transparent-field::-webkit-input-placeholder {
  color: #000;
}

.transparent-field:-ms-input-placeholder {
  color: #000;
}

.transparent-field::-ms-input-placeholder {
  color: #000;
}

.transparent-field::placeholder {
  color: #000;
}

.required {
  color: hsla(0, 86%, 41%, 1);
}
