/* reset
================================================================================= */
html {
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

:focus {
  outline: 0;
}

/* Setup
================================================================================= */
html {
  background-color: #fff;
}

body {
  font: 300 62.5% "Open Sans", sans-serif;
  color: #2c2c2c;
  background-color: #fff;
}
body.noscroll {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.inner {
  width: 90%;
  max-width: 1150px;
  margin: 0 auto;
}

.flex-2col {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.flex-2col .flex-col {
  width: calc(50% - 50px);
}
@media (max-width: 1023px) {
  .flex-2col .flex-col {
    width: 100%;
  }
  .flex-2col .flex-col:first-of-type {
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid #cecece;
  }
}

.embed-responsive {
  position: relative;
  height: 0;
  margin-bottom: 50px;
  padding-bottom: 56.25%;
  overflow: hidden;
}

.embed-responsive iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

/* Buttons
================================================================================= */
.button {
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1px;
  text-decoration: none !important;
  text-transform: uppercase;
  color: #2c2c2c;
  border: 0;
  cursor: pointer;
  transition: background 0.15s ease-out, color 0.15s ease-out;
}
.button i {
  margin-right: 10px;
  color: #ea9629;
  transition: all 0.15s ease-out;
}
.button:hover i {
  margin: 0 5px;
}
.button:not(.button-plain) {
  height: 60px;
  padding: 18px 30px;
  color: #fff !important;
  background: #ea9629;
  border-radius: 30px;
}
.button:not(.button-plain) i {
  color: #2c2c2c;
}
.button:not(.button-plain):hover {
  background: #e08e25;
}

/* Header
================================================================================= */
#header {
  text-align: center;
  background-color: #4b4b4b;
  background-position: 50% 80px;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 767px) {
  #header {
    background-position: 50% 50%;
  }
}
#header #bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding: 0 30px;
  font-size: 18px;
  font-weight: 600;
  color: #2c2c2c;
  background: #fff;
}
@media (max-width: 767px) {
  #header #bar {
    display: none;
  }
}
#header #bar a {
  position: relative;
  text-decoration: none;
  color: #6c6c6c;
}
#header #bar a::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  bottom: -2px;
  left: 1px;
  background-color: #ea9629;
  transform: scaleX(0);
  transition: transform 0.15s ease;
}
#header #bar a:hover::before {
  transform: scaleX(1);
}
#header #logo {
  position: absolute;
  left: 50%;
  width: 298px;
  margin: -30px 0 0 -149px;
}
#header #logo img {
  display: block;
  width: 100%;
  height: auto;
}
@media (max-width: 767px) {
  #header #logo {
    position: absolute;
    width: 240px;
    margin: -30px 0 0 -120px;
  }
}
#header nav {
  margin-top: 80px;
}
#header nav ul.menu {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
#header nav ul.menu li {
  margin: 0 20px;
}
@media (max-width: 1023px) {
  #header nav ul.menu li {
    margin: 0 15px;
  }
}
#header nav ul.menu li a {
  position: relative;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  text-decoration: none;
  text-transform: uppercase;
  color: #fff;
}
#header nav ul.menu li a::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  bottom: -2px;
  left: 1px;
  background-color: #ea9629;
  transform: scaleX(0);
  transition: transform 0.15s ease;
}
#header nav ul.menu li a:hover::before {
  transform: scaleX(1);
}
#header nav #nav-social {
  display: flex;
  justify-content: center;
  padding-bottom: 30px;
}
#header nav #nav-social li {
  margin: 0 5px;
}
#header nav #nav-social li a {
  position: relative;
  font-size: 20px;
  text-decoration: none;
  color: #919191;
  transition: color 0.15s ease-out;
}
#header nav #nav-social li a:hover {
  color: #fff;
}
@media (max-width: 767px) {
  #header nav {
    display: none;
  }
}
#header #page-header .inner {
  padding: 75px 0;
  text-align: center;
  border-top: 2px solid #ea9629;
}
@media (max-width: 1023px) {
  #header #page-header .inner {
    padding: 50px 0;
  }
}
@media (max-width: 767px) {
  #header #page-header .inner {
    padding: 50px 0 30px;
    border-top: 0;
  }
}
#header #page-header .inner h1 {
  margin: 0;
  font-size: 50px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
}
@media (max-width: 1023px) {
  #header #page-header .inner h1 {
    font-size: 36px;
  }
}
@media (max-width: 767px) {
  #header #page-header .inner h1 {
    font-size: 28px;
  }
}

.home #header {
  background-image: none !important;
}
@media (max-width: 767px) {
  .home #header {
    background: transparent !important;
  }
  .home #header #logo {
    margin: -30px 0 0 -120px;
    z-index: 999;
  }
}

/* Mobile Menu
================================================================================= */
#mobile-button,
#mobile-button-open,
#mobile-button-close,
#mobile-menu {
  display: none;
}

@media (max-width: 767px) {
  #mobile-button {
    display: flex;
    justify-content: center;
    padding: 20px 0 50px;
    background: #e08e25;
  }
  #mobile-button a {
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
    color: #fff;
    transition: opacity 0.15s ease-out;
  }
  #mobile-button a:hover {
    opacity: 0.75;
  }
  #mobile-button a i {
    margin-right: 10px;
    font-size: 28px;
  }

  #mobile-menu {
    position: fixed;
    top: 64px;
    left: 0;
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 0 25px;
    background: #e08e25;
    z-index: 1000;
  }
  #mobile-menu.active {
    display: flex;
  }
  #mobile-menu ul.menu li {
    margin: 10px 0;
  }
  #mobile-menu ul.menu li a {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
    color: #2e2e2e;
    transition: opacity 0.15s ease-out;
  }
  #mobile-menu ul.menu li a:hover {
    opacity: 0.5;
  }
  #mobile-menu ul#nav-social {
    display: flex;
    margin: 10px 0 20px;
  }
  #mobile-menu ul#nav-social li {
    margin: 0 10px;
  }
  #mobile-menu ul#nav-social li a {
    font-size: 24px;
    text-decoration: none;
    color: #2e2e2e;
    transition: opacity 0.15s ease-out;
  }
  #mobile-menu ul#nav-social li a:hover {
    opacity: 0.5;
  }
  #mobile-menu p {
    font-size: 18px;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
    color: #fff;
  }
  #mobile-menu p:first-of-type {
    display: block;
    width: 100%;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.25);
  }
  #mobile-menu p a {
    text-decoration: none;
    color: #fff;
    transition: opacity 0.15s ease-out;
  }
  #mobile-menu p a:hover {
    opacity: 0.5;
  }

  .admin-bar #mobile-menu {
    top: 110px;
  }
}
/* Homepage
================================================================================= */
#slider {
  position: relative;
  background: #efefef;
}
#slider #slider-background {
  position: absolute;
  width: 100%;
  height: 50%;
  top: 0;
  left: 0;
  background: #4b4b4b;
}
#slider #slides {
  position: relative;
  width: 90%;
  max-width: 1540px;
  margin: 0 auto;
  z-index: 10;
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.25);
}
@media (max-width: 767px) {
  #slider #slides {
    width: 100%;
    box-shadow: none;
  }
}
#slider #slides .slide {
  position: relative;
}
#slider #slides .slide img {
  display: block;
  width: 100%;
  height: auto;
}
#slider #slides .slide .caption {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding-bottom: 100px;
  text-align: center;
  background: black;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 50%);
}
@media (max-width: 1023px) {
  #slider #slides .slide .caption {
    padding-bottom: 60px;
  }
}
@media (max-width: 767px) {
  #slider #slides .slide .caption {
    position: relative;
    padding: 20px 0 10px;
    background: #4b4b4b;
  }
}
#slider #slides .slide .caption h3 {
  max-width: 700px;
  margin: 0 auto;
  font-size: 70px;
  font-weight: 700;
  line-height: 1em;
  text-transform: uppercase;
  color: #fff;
}
@media (max-width: 1023px) {
  #slider #slides .slide .caption h3 {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  #slider #slides .slide .caption h3 {
    font-size: 20px;
  }
}
#slider #slides .slick-dots {
  position: absolute;
  width: 100%;
  bottom: 50px;
  text-align: center;
}
@media (max-width: 1023px) {
  #slider #slides .slick-dots {
    bottom: 25px;
  }
}
@media (max-width: 767px) {
  #slider #slides .slick-dots {
    position: relative;
    bottom: auto;
    padding-bottom: 20px;
    background: #4b4b4b;
  }
}
#slider #slides .slick-dots li {
  display: inline-block;
  margin: 0 7.5px;
}
#slider #slides .slick-dots li button {
  width: 20px;
  height: 20px;
  text-indent: 40px;
  background: transparent;
  border: 2px solid #fff;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
}
@media (max-width: 767px) {
  #slider #slides .slick-dots li button {
    width: 15px;
    height: 15px;
    border-radius: 7.5px;
  }
}
#slider #slides .slick-dots li.slick-active button {
  background: #ea9629;
  border-color: #ea9629;
  cursor: default;
}

#home-contact {
  padding: 90px 0 60px;
  background: #fff;
}
@media (max-width: 767px) {
  #home-contact {
    padding: 75px 0 30px;
  }
}
#home-contact p {
  margin-bottom: 30px;
  font-size: 18px;
  line-height: 1.6em;
}
#home-contact .inner {
  display: flex;
  justify-content: space-between;
  padding-bottom: 50px;
  border-bottom: 2px solid #ea9629;
}
@media (max-width: 767px) {
  #home-contact .inner {
    display: block;
    margin-bottom: 10px;
  }
}
#home-contact .inner #home-contact-cta {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  margin: -50px 0 0 75px;
  width: 250px;
  height: 300px;
  background: url("../../img/common/icon-comment.svg") no-repeat 0 100%;
  background-size: 250px 250px;
}
@media (max-width: 767px) {
  #home-contact .inner #home-contact-cta {
    display: none;
  }
}
#home-contact .inner #home-contact-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 250px;
  height: 200px;
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  color: #ea9629;
  transition: color 0.15s ease-out;
}
#home-contact .inner #home-contact-cta a:hover {
  color: #2c2c2c;
}

#home-suppliers .inner {
  padding: 0 0 50px;
}
@media (max-width: 767px) {
  #home-suppliers .inner {
    padding-bottom: 30px;
  }
}
#home-suppliers .inner #home-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 0 -25px;
}
@media (max-width: 767px) {
  #home-suppliers .inner #home-logos {
    margin: 0 -15px;
  }
}
#home-suppliers .inner #home-logos a {
  margin: 0 25px 50px;
  transition: opacity 0.15s ease-out;
}
@media (max-width: 767px) {
  #home-suppliers .inner #home-logos a {
    margin: 0 15px 30px;
  }
}
#home-suppliers .inner #home-logos a:hover, #home-suppliers .inner #home-logos a:focus {
  opacity: 0.5;
}

/* Products
================================================================================= */
#products .inner {
  max-width: 1150px;
  padding: 0 0 25px;
}
#products .inner #product-grid {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -25px;
}
@media (max-width: 1023px) {
  #products .inner #product-grid {
    margin: 0 -15px;
  }
}
@media (max-width: 767px) {
  #products .inner #product-grid {
    margin: 0;
  }
}
#products .inner #product-grid .product {
  width: calc(33.33333333% - 50px);
  margin: 0 25px 60px;
  background: #2e2e2e;
}
@media (max-width: 1023px) {
  #products .inner #product-grid .product {
    width: calc(33.33333333% - 30px);
    margin: 0 15px 30px;
  }
}
@media (max-width: 767px) {
  #products .inner #product-grid .product {
    width: 100%;
    margin: 0 0 30px;
  }
}
#products .inner #product-grid .product:nth-of-type(2), #products .inner #product-grid .product:nth-of-type(5), #products .inner #product-grid .product:nth-of-type(8), #products .inner #product-grid .product:nth-of-type(11), #products .inner #product-grid .product:nth-of-type(14) {
  background: #4b4b4b;
}
#products .inner #product-grid .product:nth-of-type(3), #products .inner #product-grid .product:nth-of-type(6), #products .inner #product-grid .product:nth-of-type(9), #products .inner #product-grid .product:nth-of-type(12), #products .inner #product-grid .product:nth-of-type(15) {
  background: #7a7a7a;
}
#products .inner #product-grid .product a {
  position: relative;
  display: block;
  padding-top: 30px;
  text-decoration: none;
  color: #fff;
}
@media (max-width: 1023px) {
  #products .inner #product-grid .product a {
    padding-top: 15px;
  }
}
#products .inner #product-grid .product a:hover img {
  opacity: 0.75;
}
#products .inner #product-grid .product a img {
  display: block;
  width: 100%;
  height: auto;
  transition: opacity 0.15s ease-out;
}
#products .inner #product-grid .product a h3 {
  position: absolute;
  top: calc(50% + 15px);
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2em;
  text-align: center;
  text-shadow: 0 2px 2px rgba(0, 0, 0, 0.5);
  text-transform: uppercase;
}
@media (max-width: 1023px) {
  #products .inner #product-grid .product a h3 {
    top: calc(50% + 5px);
    font-size: 22px;
  }
}
#products .button-container {
  margin-bottom: -30px;
  text-align: center;
}

.home #products {
  background: #efefef;
}
.home #products .inner {
  max-width: 1540px;
  padding: 50px 0 0;
}
@media (max-width: 1023px) {
  .home #products .inner {
    padding-top: 30px;
  }
}

/* Pages
================================================================================= */
.page article {
  font-size: 1.1em;
}
.page article .inner {
  padding: 75px 0 60px;
}
@media (max-width: 1023px) {
  .page article .inner {
    padding: 50px 0 30px;
  }
}
@media (max-width: 767px) {
  .page article .inner {
    padding: 30px 0 10px;
  }
}

#staff {
  background: #efefef;
}
#staff .inner {
  padding: 75px 0 60px;
}
@media (max-width: 1023px) {
  #staff .inner {
    padding: 50px 0 30px;
  }
}
@media (max-width: 767px) {
  #staff .inner {
    padding: 30px 0;
  }
}
#staff #staff-members {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -30px;
}
@media (max-width: 1023px) {
  #staff #staff-members {
    margin: 0 -15px;
  }
}
@media (max-width: 767px) {
  #staff #staff-members {
    margin: 0 0;
  }
}
#staff #staff-members .staff-member {
  display: flex;
  align-items: center;
  width: calc(33.33333333% - 60px);
  margin: 0 30px 50px;
  padding-top: 50px;
  border-top: 1px solid #cecece;
}
@media (max-width: 1023px) {
  #staff #staff-members .staff-member {
    width: calc(50% - 30px);
    margin: 0 15px 50px;
  }
}
@media (max-width: 767px) {
  #staff #staff-members .staff-member {
    width: 100%;
    margin: 0 0 30px;
    padding-top: 30px;
  }
}
#staff #staff-members .staff-member:nth-of-type(1), #staff #staff-members .staff-member:nth-of-type(2), #staff #staff-members .staff-member:nth-of-type(3) {
  border-top: 0;
}
@media (max-width: 1023px) {
  #staff #staff-members .staff-member:nth-of-type(3) {
    border-top: 1px solid #cecece;
  }
}
@media (max-width: 767px) {
  #staff #staff-members .staff-member:nth-of-type(2) {
    border-top: 1px solid #cecece;
  }
}
#staff #staff-members .staff-member .staff-photo {
  flex-shrink: 0;
  width: 150px;
  height: 150px;
  border-radius: 75px;
  background: #fff;
  overflow: hidden;
}
@media (max-width: 767px) {
  #staff #staff-members .staff-member .staff-photo {
    width: 120px;
    height: 120px;
  }
}
#staff #staff-members .staff-member .staff-photo img {
  display: block;
  max-width: 200px;
  width: 200px;
  height: auto;
  margin-left: -25px;
}
@media (max-width: 767px) {
  #staff #staff-members .staff-member .staff-photo img {
    width: 170px;
    height: 170px;
    margin-left: -25px;
  }
}
#staff #staff-members .staff-member .staff-info {
  padding-left: 30px;
}
#staff #staff-members .staff-member .staff-info h4 {
  margin: 0 0 5px;
  font-size: 20px;
  font-weight: 300;
  text-transform: none;
}
#staff #staff-members .staff-member .staff-info p {
  margin: 0;
  font-size: 16px;
  line-height: 20px;
  opacity: 0.5;
}

.page-template-contact .flex-col {
  width: calc(50% - 30px);
}
@media (max-width: 1023px) {
  .page-template-contact .flex-col {
    width: 100%;
  }
  .page-template-contact .flex-col:first-of-type {
    padding: 0;
    border-bottom: 0;
  }
}
.page-template-contact #contact-form-map {
  padding: 50px 0 0;
}
@media (max-width: 1023px) {
  .page-template-contact #contact-form-map {
    padding: 0;
  }
}
.page-template-contact #contact-form-map p {
  font-size: 16px;
}

.gallery {
  margin: 0 -15px !important;
  padding-top: 30px;
}
.gallery:after {
  content: "";
  display: table;
  clear: both;
}
@media (max-width: 767px) {
  .gallery {
    margin: 0 -10px !important;
    padding-top: 0;
  }
  .gallery br {
    display: none !important;
  }
}
.gallery .gallery-item {
  width: calc(33.33333333% - 30px) !important;
  margin: 0 15px 30px !important;
}
@media (max-width: 767px) {
  .gallery .gallery-item {
    width: calc(50% - 20px) !important;
    margin: 0 10px 20px !important;
  }
}
.gallery .gallery-item img {
  border: 0 !important;
  transition: box-shadow 0.15s ease-out;
}
.gallery .gallery-item:hover img {
  box-shadow: 0 0 0 4px #ea9629;
}
.gallery .gallery-item .gallery-caption {
  display: block;
  padding-top: 10px;
  font-size: 14px;
  color: #6c6c6c;
}

#services {
  padding: 60px 0;
  text-align: center;
  background: #efefef;
}
@media (max-width: 767px) {
  #services {
    padding: 50px 0;
  }
}
#services h3 {
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  #services h3 {
    margin-bottom: 30px;
    font-size: 20px;
  }
}
#services #services-list {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1023px) {
  #services #services-list {
    flex-direction: column;
    margin: -30px 0;
  }
}
#services #services-list .service {
  width: calc(33.33333333% - 25px);
}
@media (max-width: 1023px) {
  #services #services-list .service {
    width: 100%;
    padding: 30px 0;
  }
}
#services #services-list .service:nth-of-type(2) {
  border-left: 1px solid #cecece;
  border-right: 1px solid #cecece;
}
@media (max-width: 1023px) {
  #services #services-list .service:nth-of-type(2) {
    border: 1px solid #cecece;
    border-left: 0;
    border-right: 0;
  }
}
#services #services-list .service i {
  margin-bottom: 20px;
  font-size: 64px;
  color: #f9a03a;
}
@media (max-width: 767px) {
  #services #services-list .service i {
    font-size: 48px;
  }
}
#services #services-list .service h4 {
  margin-bottom: 10px;
  font-size: 28px;
}
@media (max-width: 767px) {
  #services #services-list .service h4 {
    font-size: 24px;
  }
}
#services #services-list .service p {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  color: #f9a03a;
}
@media (max-width: 767px) {
  #services #services-list .service p {
    font-size: 16px;
  }
}

#services-tagline {
  padding: 60px 0;
  text-align: center;
  background: #ea9629;
}
@media (max-width: 1023px) {
  #services-tagline {
    padding: 30px 0;
  }
}
#services-tagline h2 {
  font-size: 30px;
  color: #fff;
}
@media (max-width: 1023px) {
  #services-tagline h2 {
    font-size: 24px;
  }
}

#suppliers {
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
  align-items: center;
  margin: 0 -20px;
}
#suppliers a {
  margin: 10px 20px 30px;
  transition: opacity 0.15s ease-out;
}
#suppliers a:hover, #suppliers a:focus {
  opacity: 0.5;
}

#supplier-logos .inner {
  padding-bottom: 75px;
}
#supplier-logos .inner ul {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  margin: 0 -25px;
}
@media (max-width: 767px) {
  #supplier-logos .inner ul {
    margin: 0;
  }
}
#supplier-logos .inner ul li {
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(33.33333333% - 50px);
  margin: 0 25px;
  padding: 75px 0;
  border-bottom: 1px solid #cecece;
}
@media (max-width: 1023px) {
  #supplier-logos .inner ul li {
    padding: 50px 0;
  }
}
@media (max-width: 767px) {
  #supplier-logos .inner ul li {
    width: 100%;
    margin: 0;
    padding: 50px 0;
    border: 0 !important;
    border-top: 1px solid #cecece !important;
  }
  #supplier-logos .inner ul li:last-of-type {
    border-bottom: 1px solid #cecece !important;
  }
}
#supplier-logos .inner ul li:nth-of-type(1), #supplier-logos .inner ul li:nth-of-type(2), #supplier-logos .inner ul li:nth-of-type(3) {
  border-top: 1px solid #cecece;
}
#supplier-logos .inner ul li a {
  transition: opacity 0.15s ease-out;
}
#supplier-logos .inner ul li a:hover, #supplier-logos .inner ul li a:focus {
  opacity: 0.5;
}
#supplier-logos .inner ul li a img {
  width: 100% !important;
  height: auto;
}

/* Gravity Forms
================================================================================= */
.content .gform_wrapper .gform_required_legend {
  display: none;
}
.content .gform_wrapper input[type=color],
.content .gform_wrapper input[type=date],
.content .gform_wrapper input[type=datetime-local],
.content .gform_wrapper input[type=datetime],
.content .gform_wrapper input[type=email],
.content .gform_wrapper input[type=month],
.content .gform_wrapper input[type=number],
.content .gform_wrapper input[type=password],
.content .gform_wrapper input[type=search],
.content .gform_wrapper input[type=tel],
.content .gform_wrapper input[type=text],
.content .gform_wrapper input[type=time],
.content .gform_wrapper input[type=url],
.content .gform_wrapper input[type=week],
.content .gform_wrapper select,
.content .gform_wrapper textarea {
  padding: 12px 15px !important;
  font-size: 18px !important;
  color: #6c6c6c;
  background: #f5f5f5;
  border: 1px solid #d5d5d5;
  border-radius: 5px;
}
.content .gform_wrapper input[type=color]:focus,
.content .gform_wrapper input[type=date]:focus,
.content .gform_wrapper input[type=datetime-local]:focus,
.content .gform_wrapper input[type=datetime]:focus,
.content .gform_wrapper input[type=email]:focus,
.content .gform_wrapper input[type=month]:focus,
.content .gform_wrapper input[type=number]:focus,
.content .gform_wrapper input[type=password]:focus,
.content .gform_wrapper input[type=search]:focus,
.content .gform_wrapper input[type=tel]:focus,
.content .gform_wrapper input[type=text]:focus,
.content .gform_wrapper input[type=time]:focus,
.content .gform_wrapper input[type=url]:focus,
.content .gform_wrapper input[type=week]:focus,
.content .gform_wrapper select:focus,
.content .gform_wrapper textarea:focus {
  color: #2c2c2c;
  background: #fff;
  border-color: #ea9629;
}
.content .gfield-choice-input {
  margin-top: 4px !important;
  vertical-align: top !important;
}

/* Footer
================================================================================= */
#footer {
  display: flex;
  width: 100%;
}
@media (max-width: 1023px) {
  #footer {
    flex-direction: column;
  }
}
#footer > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 50px;
  color: #fff;
}
@media (max-width: 1023px) {
  #footer > div {
    text-align: center;
    padding: 30px;
  }
}
#footer #footer-address {
  background: #2e2e2e;
}
#footer #footer-contact {
  background: #4b4b4b;
}
#footer #footer-social {
  flex-grow: 4;
  text-align: right;
  background: #5d5d5d;
}
@media (max-width: 1023px) {
  #footer #footer-social {
    text-align: center;
  }
}
#footer h4 {
  margin-bottom: 5px;
  font-size: 24px;
  color: #ea9629;
}
#footer p {
  margin-bottom: 5px;
  font-size: 15px;
}
#footer p a {
  text-decoration: none;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  transition: border 0.15s ease-out;
}
#footer p a:hover {
  border-bottom: 1px solid #ea9629;
}
#footer ul {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 10px;
}
@media (max-width: 1023px) {
  #footer ul {
    justify-content: center;
  }
}
#footer ul li {
  margin-left: 10px;
}
#footer ul li a {
  text-decoration: none;
  color: #ea9629;
  transition: color 0.15s ease-out;
}
#footer ul li a:hover {
  color: #fff;
}
