@charset "UTF-8";
body.stop-scrolling {
  height: 100%;
  overflow: hidden;
}

.sweet-overlay {
  background-color: black;
  /* IE8 */
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
  /* IE8 */
  background-color: rgba(0, 0, 0, 0.4);
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: none;
  z-index: 10000;
}

.sweet-alert {
  background-color: white;
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  width: 478px;
  padding: 17px;
  border-radius: 5px;
  text-align: center;
  position: fixed;
  left: 50%;
  top: 50%;
  margin-left: -256px;
  margin-top: -200px;
  overflow: hidden;
  display: none;
  z-index: 99999;
}

@media all and (max-width: 540px) {
  .sweet-alert {
    width: auto;
    margin-left: 0;
    margin-right: 0;
    left: 15px;
    right: 15px;
  }
}
.sweet-alert h2 {
  color: #575757;
  font-size: 30px;
  text-align: center;
  font-weight: 600;
  text-transform: none;
  position: relative;
  margin: 25px 0;
  padding: 0;
  line-height: 40px;
  display: block;
}

.sweet-alert p {
  color: #797979;
  font-size: 16px;
  text-align: center;
  font-weight: 300;
  position: relative;
  text-align: inherit;
  float: none;
  margin: 0;
  padding: 0;
  line-height: normal;
}

.sweet-alert fieldset {
  border: none;
  position: relative;
}

.sweet-alert .sa-error-container {
  background-color: #f1f1f1;
  margin-left: -17px;
  margin-right: -17px;
  overflow: hidden;
  padding: 0 10px;
  max-height: 0;
  webkit-transition: padding 0.15s, max-height 0.15s;
  transition: padding 0.15s, max-height 0.15s;
}

.sweet-alert .sa-error-container.show {
  padding: 10px 0;
  max-height: 100px;
  webkit-transition: padding 0.2s, max-height 0.2s;
  transition: padding 0.25s, max-height 0.25s;
}

.sweet-alert .sa-error-container .icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #ea7d7d;
  color: white;
  line-height: 24px;
  text-align: center;
  margin-right: 3px;
}

.sweet-alert .sa-error-container p {
  display: inline-block;
}

.sweet-alert .sa-input-error {
  position: absolute;
  top: 29px;
  right: 26px;
  width: 20px;
  height: 20px;
  opacity: 0;
  transform: scale(0.5);
  transform-origin: 50% 50%;
  transition: all 0.1s;
}

.sweet-alert .sa-input-error::before, .sweet-alert .sa-input-error::after {
  content: "";
  width: 20px;
  height: 6px;
  background-color: #f06e57;
  border-radius: 3px;
  position: absolute;
  top: 50%;
  margin-top: -4px;
  left: 50%;
  margin-left: -9px;
}

.sweet-alert .sa-input-error::before {
  transform: rotate(-45deg);
}

.sweet-alert .sa-input-error::after {
  transform: rotate(45deg);
}

.sweet-alert .sa-input-error.show {
  opacity: 1;
  transform: scale(1);
}

.sweet-alert input {
  width: 100%;
  box-sizing: border-box;
  border-radius: 3px;
  border: 1px solid #d7d7d7;
  height: 43px;
  margin-top: 10px;
  margin-bottom: 17px;
  font-size: 18px;
  box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.06);
  padding: 0 12px;
  display: none;
  transition: all 0.3s;
}

.sweet-alert input:focus {
  outline: none;
  box-shadow: 0px 0px 3px #c4e6f5;
  border: 1px solid #b4dbed;
}

.sweet-alert input:focus::-moz-placeholder {
  -moz-transition: opacity 0.3s 0.03s ease;
  transition: opacity 0.3s 0.03s ease;
  opacity: 0.5;
}

.sweet-alert input:focus:-ms-input-placeholder {
  -ms-transition: opacity 0.3s 0.03s ease;
  transition: opacity 0.3s 0.03s ease;
  opacity: 0.5;
}

.sweet-alert input:focus::-webkit-input-placeholder {
  -webkit-transition: opacity 0.3s 0.03s ease;
  transition: opacity 0.3s 0.03s ease;
  opacity: 0.5;
}

.sweet-alert input::-moz-placeholder {
  color: #bdbdbd;
}

.sweet-alert input:-ms-input-placeholder {
  color: #bdbdbd;
}

.sweet-alert input::-webkit-input-placeholder {
  color: #bdbdbd;
}

.sweet-alert.show-input input {
  display: block;
}

.sweet-alert .sa-confirm-button-container {
  display: inline-block;
  position: relative;
}

.sweet-alert .la-ball-fall {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -27px;
  margin-top: 4px;
  opacity: 0;
  visibility: hidden;
}

.sweet-alert button {
  background-color: #8CD4F5;
  color: white;
  border: none;
  box-shadow: none;
  font-size: 17px;
  font-weight: 500;
  border-radius: 5px;
  padding: 10px 32px;
  margin: 26px 5px 0 5px;
  cursor: pointer;
}

.sweet-alert button:focus {
  outline: none;
  box-shadow: 0 0 2px rgba(128, 179, 235, 0.5), inset 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.sweet-alert button:hover {
  background-color: #7ecff4;
}

.sweet-alert button:active {
  background-color: #5dc2f1;
}

.sweet-alert button.cancel {
  background-color: #C1C1C1;
}

.sweet-alert button.cancel:hover {
  background-color: #b9b9b9;
}

.sweet-alert button.cancel:active {
  background-color: #a8a8a8;
}

.sweet-alert button.cancel:focus {
  box-shadow: rgba(197, 205, 211, 0.8) 0px 0px 2px, rgba(0, 0, 0, 0.0470588) 0px 0px 0px 1px inset !important;
}

.sweet-alert button[disabled] {
  opacity: 0.6;
  cursor: default;
}

.sweet-alert button.confirm[disabled] {
  color: transparent;
}

.sweet-alert button.confirm[disabled] ~ .la-ball-fall {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}

.sweet-alert button::-moz-focus-inner {
  border: 0;
}

.sweet-alert[data-has-cancel-button=false] button {
  box-shadow: none !important;
}

.sweet-alert[data-has-confirm-button=false][data-has-cancel-button=false] {
  padding-bottom: 40px;
}

.sweet-alert .sa-icon {
  width: 80px;
  height: 80px;
  border: 4px solid gray;
  border-radius: 40px;
  border-radius: 50%;
  margin: 20px auto;
  padding: 0;
  position: relative;
  box-sizing: content-box;
}

.sweet-alert .sa-icon.sa-error {
  border-color: #F27474;
}

.sweet-alert .sa-icon.sa-error .sa-x-mark {
  position: relative;
  display: block;
}

.sweet-alert .sa-icon.sa-error .sa-line {
  position: absolute;
  height: 5px;
  width: 47px;
  background-color: #F27474;
  display: block;
  top: 37px;
  border-radius: 2px;
}

.sweet-alert .sa-icon.sa-error .sa-line.sa-left {
  transform: rotate(45deg);
  left: 17px;
}

.sweet-alert .sa-icon.sa-error .sa-line.sa-right {
  transform: rotate(-45deg);
  right: 16px;
}

.sweet-alert .sa-icon.sa-warning {
  border-color: #F8BB86;
}

.sweet-alert .sa-icon.sa-warning .sa-body {
  position: absolute;
  width: 5px;
  height: 47px;
  left: 50%;
  top: 10px;
  border-radius: 2px;
  margin-left: -2px;
  background-color: #F8BB86;
}

.sweet-alert .sa-icon.sa-warning .sa-dot {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-left: -3px;
  left: 50%;
  bottom: 10px;
  background-color: #F8BB86;
}

.sweet-alert .sa-icon.sa-info {
  border-color: #C9DAE1;
}

.sweet-alert .sa-icon.sa-info::before {
  content: "";
  position: absolute;
  width: 5px;
  height: 29px;
  left: 50%;
  bottom: 17px;
  border-radius: 2px;
  margin-left: -2px;
  background-color: #C9DAE1;
}

.sweet-alert .sa-icon.sa-info::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-left: -3px;
  top: 19px;
  background-color: #C9DAE1;
}

.sweet-alert .sa-icon.sa-success {
  border-color: #A5DC86;
}

.sweet-alert .sa-icon.sa-success::before, .sweet-alert .sa-icon.sa-success::after {
  content: "";
  border-radius: 40px;
  border-radius: 50%;
  position: absolute;
  width: 60px;
  height: 120px;
  background: white;
  transform: rotate(45deg);
}

.sweet-alert .sa-icon.sa-success::before {
  border-radius: 120px 0 0 120px;
  top: -7px;
  left: -33px;
  transform: rotate(-45deg);
  transform-origin: 60px 60px;
}

.sweet-alert .sa-icon.sa-success::after {
  border-radius: 0 120px 120px 0;
  top: -11px;
  left: 30px;
  transform: rotate(-45deg);
  transform-origin: 0px 60px;
}

.sweet-alert .sa-icon.sa-success .sa-placeholder {
  width: 80px;
  height: 80px;
  border: 4px solid rgba(165, 220, 134, 0.2);
  border-radius: 40px;
  border-radius: 50%;
  box-sizing: content-box;
  position: absolute;
  left: -4px;
  top: -4px;
  z-index: 2;
}

.sweet-alert .sa-icon.sa-success .sa-fix {
  width: 5px;
  height: 90px;
  background-color: white;
  position: absolute;
  left: 28px;
  top: 8px;
  z-index: 1;
  transform: rotate(-45deg);
}

.sweet-alert .sa-icon.sa-success .sa-line {
  height: 5px;
  background-color: #A5DC86;
  display: block;
  border-radius: 2px;
  position: absolute;
  z-index: 2;
}

.sweet-alert .sa-icon.sa-success .sa-line.sa-tip {
  width: 25px;
  left: 14px;
  top: 46px;
  transform: rotate(45deg);
}

.sweet-alert .sa-icon.sa-success .sa-line.sa-long {
  width: 47px;
  right: 8px;
  top: 38px;
  transform: rotate(-45deg);
}

.sweet-alert .sa-icon.sa-custom {
  background-size: contain;
  border-radius: 0;
  border: none;
  background-position: center center;
  background-repeat: no-repeat;
}

/*
 * Animations
 */
@keyframes showSweetAlert {
  0% {
    transform: scale(0.7);
    -webkit-transform: scale(0.7);
  }
  45% {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
  }
  80% {
    transform: scale(0.95);
    -webkit-transform: scale(0.95);
  }
  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}
@keyframes hideSweetAlert {
  0% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
  100% {
    transform: scale(0.5);
    -webkit-transform: scale(0.5);
  }
}
@keyframes slideFromTop {
  0% {
    top: 0%;
  }
  100% {
    top: 50%;
  }
}
@keyframes slideToTop {
  0% {
    top: 50%;
  }
  100% {
    top: 0%;
  }
}
@keyframes slideFromBottom {
  0% {
    top: 70%;
  }
  100% {
    top: 50%;
  }
}
@keyframes slideToBottom {
  0% {
    top: 50%;
  }
  100% {
    top: 70%;
  }
}
.showSweetAlert[data-animation=pop] {
  animation: showSweetAlert 0.3s;
}

.showSweetAlert[data-animation=none] {
  animation: none;
}

.showSweetAlert[data-animation=slide-from-top] {
  animation: slideFromTop 0.3s;
}

.showSweetAlert[data-animation=slide-from-bottom] {
  animation: slideFromBottom 0.3s;
}

.hideSweetAlert[data-animation=pop] {
  animation: hideSweetAlert 0.2s;
}

.hideSweetAlert[data-animation=none] {
  animation: none;
}

.hideSweetAlert[data-animation=slide-from-top] {
  animation: slideToTop 0.4s;
}

.hideSweetAlert[data-animation=slide-from-bottom] {
  animation: slideToBottom 0.3s;
}
@keyframes animateSuccessTip {
  0% {
    width: 0;
    left: 1px;
    top: 19px;
  }
  54% {
    width: 0;
    left: 1px;
    top: 19px;
  }
  70% {
    width: 50px;
    left: -8px;
    top: 37px;
  }
  84% {
    width: 17px;
    left: 21px;
    top: 48px;
  }
  100% {
    width: 25px;
    left: 14px;
    top: 45px;
  }
}
@keyframes animateSuccessLong {
  0% {
    width: 0;
    right: 46px;
    top: 54px;
  }
  65% {
    width: 0;
    right: 46px;
    top: 54px;
  }
  84% {
    width: 55px;
    right: 0px;
    top: 35px;
  }
  100% {
    width: 47px;
    right: 8px;
    top: 38px;
  }
}
@keyframes rotatePlaceholder {
  0% {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
  }
  5% {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
  }
  12% {
    transform: rotate(-405deg);
    -webkit-transform: rotate(-405deg);
  }
  100% {
    transform: rotate(-405deg);
    -webkit-transform: rotate(-405deg);
  }
}
.animateSuccessTip {
  animation: animateSuccessTip 0.75s;
}

.animateSuccessLong {
  animation: animateSuccessLong 0.75s;
}

.sa-icon.sa-success.animate::after {
  animation: rotatePlaceholder 4.25s ease-in;
}
@keyframes animateErrorIcon {
  0% {
    transform: rotateX(100deg);
    -webkit-transform: rotateX(100deg);
    opacity: 0;
  }
  100% {
    transform: rotateX(0deg);
    -webkit-transform: rotateX(0deg);
    opacity: 1;
  }
}
.animateErrorIcon {
  animation: animateErrorIcon 0.5s;
}
@keyframes animateXMark {
  0% {
    transform: scale(0.4);
    -webkit-transform: scale(0.4);
    margin-top: 26px;
    opacity: 0;
  }
  50% {
    transform: scale(0.4);
    -webkit-transform: scale(0.4);
    margin-top: 26px;
    opacity: 0;
  }
  80% {
    transform: scale(1.15);
    -webkit-transform: scale(1.15);
    margin-top: -6px;
  }
  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
    margin-top: 0;
    opacity: 1;
  }
}
.animateXMark {
  animation: animateXMark 0.5s;
}
@keyframes pulseWarning {
  0% {
    border-color: #F8D486;
  }
  100% {
    border-color: #F8BB86;
  }
}
.pulseWarning {
  animation: pulseWarning 0.75s infinite alternate;
}
@keyframes pulseWarningIns {
  0% {
    background-color: #F8D486;
  }
  100% {
    background-color: #F8BB86;
  }
}
.pulseWarningIns {
  animation: pulseWarningIns 0.75s infinite alternate;
}
@keyframes rotate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Internet Explorer 9 has some special quirks that are fixed here */
/* The icons are not animated. */
/* This file is automatically merged into sweet-alert.min.js through Gulp */
/* Error icon */
.sweet-alert .sa-icon.sa-error .sa-line.sa-left {
  -ms-transform: rotate(45deg) \9 ;
}

.sweet-alert .sa-icon.sa-error .sa-line.sa-right {
  -ms-transform: rotate(-45deg) \9 ;
}

/* Success icon */
.sweet-alert .sa-icon.sa-success {
  border-color: transparent\9 ;
}

.sweet-alert .sa-icon.sa-success .sa-line.sa-tip {
  -ms-transform: rotate(45deg) \9 ;
}

.sweet-alert .sa-icon.sa-success .sa-line.sa-long {
  -ms-transform: rotate(-45deg) \9 ;
}

/*!
 * Load Awesome v1.1.0 (http://github.danielcardoso.net/load-awesome/)
 * Copyright 2015 Daniel Cardoso <@DanielCardoso>
 * Licensed under MIT
 */
.la-ball-fall,
.la-ball-fall > div {
  position: relative;
  box-sizing: border-box;
}

.la-ball-fall {
  display: block;
  font-size: 0;
  color: #fff;
}

.la-ball-fall.la-dark {
  color: #333;
}

.la-ball-fall > div {
  display: inline-block;
  float: none;
  background-color: currentColor;
  border: 0 solid currentColor;
}

.la-ball-fall {
  width: 54px;
  height: 18px;
}

.la-ball-fall > div {
  width: 10px;
  height: 10px;
  margin: 4px;
  border-radius: 100%;
  opacity: 0;
  animation: ball-fall 1s ease-in-out infinite;
}

.la-ball-fall > div:nth-child(1) {
  animation-delay: -200ms;
}

.la-ball-fall > div:nth-child(2) {
  animation-delay: -100ms;
}

.la-ball-fall > div:nth-child(3) {
  animation-delay: 0ms;
}

.la-ball-fall.la-sm {
  width: 26px;
  height: 8px;
}

.la-ball-fall.la-sm > div {
  width: 4px;
  height: 4px;
  margin: 2px;
}

.la-ball-fall.la-2x {
  width: 108px;
  height: 36px;
}

.la-ball-fall.la-2x > div {
  width: 20px;
  height: 20px;
  margin: 8px;
}

.la-ball-fall.la-3x {
  width: 162px;
  height: 54px;
}

.la-ball-fall.la-3x > div {
  width: 30px;
  height: 30px;
  margin: 12px;
}

/*
 * Animation
 */
@keyframes ball-fall {
  0% {
    opacity: 0;
    transform: translateY(-145%);
  }
  10% {
    opacity: 0.5;
  }
  20% {
    opacity: 1;
    transform: translateY(0);
  }
  80% {
    opacity: 1;
    transform: translateY(0);
  }
  90% {
    opacity: 0.5;
  }
  100% {
    opacity: 0;
    transform: translateY(145%);
  }
}
body {
  padding: 0;
  margin: 0;
  padding-top: 70px;
}

body, html {
  height: 100%;
}

/* apply a natural box layout model to all elements, but allowing components to change */
html {
  box-sizing: border-box;
}

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

.is-2-col {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 719px) {
  .is-2-col {
    flex-wrap: wrap;
  }
}
.is-2-col > * {
  flex-basis: 50%;
  flex-grow: 1;
  flex-shrink: 1;
}
@media only screen and (max-width: 719px) {
  .is-2-col > * {
    flex-basis: 100%;
    max-width: 100%;
  }
}

.is-4-col {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 719px) {
  .is-4-col {
    flex-wrap: wrap;
  }
}
.is-4-col > * {
  flex-basis: 25%;
  flex-grow: 1;
  flex-shrink: 1;
  padding: 3%;
}
@media only screen and (max-width: 719px) {
  .is-4-col > * {
    flex-basis: 50%;
  }
}

.is-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.v-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.h1 {
  font-family: "Teko", sans-serif;
  text-transform: uppercase;
  font-size: 3em;
}

.h2 {
  font-family: "Roboto Slab", sans-serif;
  text-transform: uppercase;
  font-size: 2em;
}

.h3 {
  font-family: "Roboto Slab", sans-serif;
  text-transform: uppercase;
  font-size: 1.5em;
}

.h4 {
  font-family: "Ubuntu", -apple-system, BlinkMacSystemFont, “Segoe UI”, “Roboto”, “Oxygen”, “Ubuntu”, “Cantarell”, “Fira Sans”, “Droid Sans”, “Helvetica Neue”, sans-serif;
  text-transform: uppercase;
  font-size: 24px;
}

.h5 {
  font-family: "Roboto Slab", sans-serif;
  text-transform: uppercase;
  font-size: 80%;
}

.strong-lead {
  font-family: "Roboto Slab", sans-serif;
  font-size: 1.25em;
  max-width: 800px;
  margin: 1em auto;
  text-align: center;
}

.strong-text {
  font-family: "Roboto Slab", sans-serif;
  font-size: 1.25em;
}

.body-text {
  font-family: "Ubuntu", -apple-system, BlinkMacSystemFont, “Segoe UI”, “Roboto”, “Oxygen”, “Ubuntu”, “Cantarell”, “Fira Sans”, “Droid Sans”, “Helvetica Neue”, sans-serif;
  line-height: 1.5;
}

.narrow-text {
  max-width: 370px;
}

.text-white {
  color: #ffffff;
}

.text-green {
  color: #46B977;
}

.text-grey {
  color: #888;
}

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

.ucase {
  text-transform: uppercase;
}

.is-contained {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.no-margin-bottom {
  margin-bottom: 0;
}

.no-margin-top {
  margin-top: 0;
}

.small-pad-left {
  padding-left: 10px;
}

.page-section {
  padding: 50px 10px;
}
.page-section .section-title {
  text-align: center;
  margin-top: 0;
  font-weight: 900;
}
.page-section.dark-section {
  background: #2B2F2B url(/images/BG_logo_white.png);
  background-repeat: no-repeat;
  background-size: auto 50%;
  background-position-y: 50%;
  background-position-x: -100px;
}
@media only screen and (max-width: 719px) {
  .page-section.dark-section {
    background-size: 180% auto;
    background-position-x: -415px;
    background-position-y: 20%;
  }
}

.page-banner {
  width: 100%;
  height: 33.33vw;
  position: relative;
}
.page-banner .banner-quote {
  margin: 0;
  position: absolute;
  top: 50%;
  transform: translate3d(0, -50%, 0);
  opacity: 0;
  width: 5em;
  font-size: 6em;
  line-height: 1;
  font-family: "Teko", sans-serif;
  transition: all 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media only screen and (max-width: 719px) {
  .page-banner .banner-quote {
    display: none;
  }
}
@media only screen and (min-width: 720px) and (max-width: 1150px) {
  .page-banner .banner-quote {
    font-size: 3em;
  }
}
.page-banner .banner-quote.to-left {
  left: 100px;
  transform: translate3d(-700px, -50%, 0);
}
.page-banner .banner-quote.to-right {
  right: 100px;
  transform: translate3d(700px, -50%, 0);
}

.page-loaded .banner-quote.to-left, .page-loaded .banner-quote.to-right {
  opacity: 1;
  transform: translate3d(0, -50%, 0);
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translate3d(-700px, -50%, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, -50%, 0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(700px, -50%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, -50%, 0);
  }
}
.main-navbar {
  display: flex;
  position: fixed;
  top: 0;
  flex-wrap: nowrap;
  align-items: center;
  width: 100vw;
  justify-content: flex-start;
  height: 70px;
  background: #2B2F2B;
  color: #ffffff;
  border-bottom: 1px solid #515353;
  font-family: "Teko", sans-serif;
  z-index: 500;
}
@media only screen and (max-width: 719px) {
  .main-navbar {
    justify-content: space-between;
  }
}
@media only screen and (min-width: 720px) and (max-width: 1150px) {
  .main-navbar {
    justify-content: space-between;
  }
}
.main-navbar .branding {
  flex-grow: 0;
  flex-shrink: 1;
  flex-basis: auto;
  height: 100%;
  display: flex;
  align-items: center;
  transition: 0.5s;
}
.main-navbar .branding a {
  padding-left: 30px;
  display: flex;
  align-items: center;
}
.main-navbar .branding img {
  width: 170px;
}
.main-navbar .branding:hover {
  transform: translateY(-2px);
}
.main-navbar .nav-list {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: auto;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0;
  margin: 0;
}
@media only screen and (max-width: 719px) {
  .main-navbar .nav-list {
    position: absolute;
    display: block;
    top: 70px;
    left: 0;
    width: 100vw;
    height: 100vh;
    padding-top: 20px;
    background: #46B977;
    transition-duration: 0.3s;
    transition-timing-function: ease;
    transform: translate3d(-110vw, 0, 0);
  }
}
@media only screen and (min-width: 720px) and (max-width: 1150px) {
  .main-navbar .nav-list {
    position: absolute;
    display: block;
    top: 70px;
    left: 0;
    width: 100vw;
    height: 100vh;
    padding-top: 20px;
    background: #46B977;
    transition-duration: 0.3s;
    transition-timing-function: ease;
    transform: translate3d(-110vw, 0, 0);
  }
}
@media only screen and (max-width: 719px) {
  .main-navbar .nav-list.exposed {
    transform: translate3d(0, 0, 0);
  }
}
@media only screen and (max-width: 719px) {
  .main-navbar #nav-radio-trigger:checked + .nav-list {
    transform: translate3d(0, 0, 0);
  }
}
@media only screen and (min-width: 720px) and (max-width: 1150px) {
  .main-navbar #nav-radio-trigger:checked + .nav-list {
    transform: translate3d(0, 0, 0);
  }
}
.main-navbar #nav-radio-trigger:checked + .nav-list .nav-item {
  animation-name: slideIn;
  animation-duration: 0.3s;
  animation-timing-function: linear;
  animation-iteration-count: 1;
  animation-fill-mode: both;
}
.main-navbar #nav-radio-trigger:checked + .nav-list .nav-item:nth-child(2) {
  animation-delay: 0.2s;
}
.main-navbar #nav-radio-trigger:checked + .nav-list .nav-item:nth-child(3) {
  animation-delay: 0.4s;
}
.main-navbar #nav-radio-trigger:checked + .nav-list .nav-item:nth-child(4) {
  animation-delay: 0.6s;
}
.main-navbar #nav-radio-trigger:checked + .nav-list .nav-item:nth-child(5) {
  animation-delay: 0.8s;
}
.main-navbar #nav-radio-trigger:checked + .nav-list .nav-item:nth-child(6) {
  animation-delay: 1s;
}
.main-navbar #nav-radio-trigger:checked + .nav-list .nav-item:nth-child(7) {
  animation-delay: 1.2s;
}
.main-navbar .nav-item {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: auto;
  font-size: 1.5em;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0 1em;
  height: 100%;
  line-height: 70px;
  border-left: 1px solid #515353;
}
@media only screen and (max-width: 719px) {
  .main-navbar .nav-item {
    height: auto;
    line-height: 2;
    text-align: center;
    font-size: 2em;
    display: block;
  }
}
@media only screen and (min-width: 720px) and (max-width: 1150px) {
  .main-navbar .nav-item {
    height: auto;
    line-height: 2;
    text-align: center;
    font-size: 2em;
    display: block;
  }
}
.main-navbar .nav-item svg {
  vertical-align: middle;
  width: 1.5em;
  height: 1.5em;
}
.main-navbar .nav-item svg path {
  fill: #ffffff;
}
.main-navbar .nav-item:hover {
  background: #777777;
}
.main-navbar .cart-nav-item svg {
  height: 30px;
}
.main-navbar .nav-item.product-trigger:hover .product-nav {
  transform: rotateX(0deg);
  opacity: 1;
}
.main-navbar .product-nav {
  border-top: 1px solid #888;
  border-bottom: 1px solid #888;
  position: absolute;
  width: 100%;
  left: 0;
  top: 70px;
  background: rgba(43, 47, 43, 0.9);
  color: #ffffff;
  opacity: 0;
  transform: rotateX(90deg);
  transform-origin: top;
  transition: 0.2s;
  padding: 0;
  margin: 0;
  list-style-type: none;
  -moz-column-count: 3;
       column-count: 3;
  -moz-column-gap: 50px;
       column-gap: 50px;
  z-index: 300;
  padding: 20px;
}
@media only screen and (max-width: 719px) {
  .main-navbar .product-nav {
    display: none;
  }
}
@media only screen and (min-width: 720px) and (max-width: 1150px) {
  .main-navbar .product-nav {
    display: none;
  }
}
.main-navbar .product-nav li {
  font-family: "Ubuntu", -apple-system, BlinkMacSystemFont, “Segoe UI”, “Roboto”, “Oxygen”, “Ubuntu”, “Cantarell”, “Fira Sans”, “Droid Sans”, “Helvetica Neue”, sans-serif;
  font-size: 0.75em;
  text-transform: capitalize;
  height: auto;
  line-height: 2;
  text-align: center;
}
.main-navbar .product-nav li:hover {
  color: #46B977;
}
.main-navbar .mobile-nav-trigger {
  display: none;
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: auto;
}
.main-navbar .mobile-nav-trigger:hover {
  background: #2B2F2B;
}
@media only screen and (max-width: 719px) {
  .main-navbar .mobile-nav-trigger {
    display: block;
  }
}
@media only screen and (min-width: 720px) and (max-width: 1150px) {
  .main-navbar .mobile-nav-trigger {
    display: block;
  }
}
.main-navbar #nav-radio-trigger {
  display: none;
  width: 0px;
  font-size: 0px;
}

@keyframes slideIn {
  0% {
    transform: translate3d(0, 100px, 0);
    opacity: 0;
  }
  20% {
    transform: translate3d(0, 80px, 0);
  }
  40% {
    transform: translate3d(0, 60px, 0);
  }
  60% {
    transform: translate3d(0, 40px, 0);
  }
  80% {
    transform: translate3d(0, 20px, 0);
    opacity: 1;
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
#search-trigger {
  display: none;
}

#search-trigger:checked + .search-box {
  transform: rotate(0deg);
  opacity: 1;
}

.search-box {
  position: fixed;
  top: 70px;
  right: 0;
  width: 100%;
  min-height: 300px;
  background: #2B2F2B;
  z-index: 1000;
  opacity: 0;
  transform: rotateX(90deg);
  transform-origin: top;
  transition: 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
}
.search-box form {
  width: 90%;
}
@media only screen and (max-width: 719px) {
  .search-box {
    min-height: 200px;
  }
}
.search-box .search-input {
  border: 0;
  outline: 0;
  border-bottom: 2px solid #46B977;
  font-size: 5em;
  background: transparent;
  color: #46B977;
  width: 90%;
  display: block;
  margin: 0 auto;
  font-family: "Teko", sans-serif;
  text-transform: uppercase;
  padding-left: 15px;
}
@media only screen and (max-width: 719px) {
  .search-box .search-input {
    font-size: 2em;
  }
}
.search-box input:-webkit-autofill {
  -webkit-text-fill-color: #46B977 !important;
}
.search-box ::-webkit-input-placeholder {
  color: #888;
  text-transform: uppercase;
  font-family: "Teko", sans-serif;
}

.btn {
  text-transform: uppercase;
  font-family: "Roboto Slab", sans-serif;
}

.btn.page-section-cta {
  max-width: 90%;
  width: 270px;
  margin: 40px auto 20px;
  display: block;
  text-align: center;
  color: #46B977;
  border: 3px solid #46B977;
  font-size: 1.25em;
  padding: 6px 0;
  background: transparent;
  font-weight: 700;
  transition: 0.2s;
}
.btn.page-section-cta:hover {
  background: #46B977;
  color: #ffffff;
}
.btn.page-section-cta.on-dark:hover {
  color: #2B2F2B;
}

.btn.add-cart-btn {
  max-width: 90%;
  width: 200px;
  display: block;
  text-align: center;
  color: #46B977;
  border: 3px solid #46B977;
  font-size: 1em;
  padding: 10px 0;
  background: transparent;
  margin-top: 15px;
}

.btn.small-action-btn {
  width: 46px;
  display: inline-block;
  padding: 4px 8px;
  background: transparent;
  border-width: 1px;
  border-style: solid;
}

.btn.article-link-btn {
  width: 100%;
  height: 40px;
  line-height: 40px;
  background: #46B977;
  color: #ffffff;
  text-align: center;
}

.spinner {
  margin: 0 auto;
  width: 100%;
  max-width: 70px;
  text-align: center;
}

.spinner > div {
  width: 25.714%;
  background-color: #ffffff;
  border-radius: 100%;
  display: inline-block;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner > div:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}

.spinner .bounce1 {
  animation-delay: -0.32s;
}

.spinner .bounce2 {
  animation-delay: -0.16s;
}

@keyframes sk-bouncedelay {
  0%, 80%, 100% {
    transform: scale(0);
  }
  40% {
    transform: scale(1);
  }
}
.select-container {
  font-size: 16px;
  position: relative;
  display: block;
  width: 90%;
  margin: 0 auto;
}
.select-container select {
  outline: none;
  width: 100%;
  -webkit-appearance: none;
  display: block;
  padding: 10px 3em 10px 1.5em;
  margin: 0;
  transition: border-color 0.2s;
  border: 3px solid #81CDBC;
  border-radius: 0;
  background: #ffffff;
  color: #888;
  line-height: normal;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
.select-container .select-arrow {
  background: #ffffff;
  bottom: 5px;
  position: absolute;
  right: 3px;
  top: 5px;
  width: 67px;
  pointer-events: none;
  border-left: 3px solid #81CDBC;
}
.select-container .select-arrow:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 24px;
  margin-top: -5px;
  pointer-events: none;
  border-top: 10px solid #81CDBC;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
}
.select-container .select-arrow:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 28px;
  margin-top: -5px;
  pointer-events: none;
  border-top: 6px solid #ffffff;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
}

.svg-icon {
  width: 30px;
  height: 30px;
  fill: #46B977;
}

.svgicon {
  width: 20px;
  height: 20px;
  fill: #888;
  display: inline-block;
  vertical-align: bottom;
}
.svgicon:hover {
  fill: #2B2F2B;
}

.carousel {
  width: 100%;
  position: relative;
  padding-bottom: 33.33%;
  overflow: hidden;
}
@media only screen and (max-width: 719px) {
  .carousel {
    padding-bottom: 60%;
  }
}
.carousel .slide {
  width: 100%;
  position: absolute;
  top: 0;
}
.carousel .slide img {
  width: 100%;
}
.carousel .original-slide {
  z-index: -1;
}
.carousel .carousel-slide {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  color: #ffffff;
}
.carousel .carousel-slide.show {
  transform: translate3d(0, 0, 0);
}
.carousel .carousel-slide .media-aspect-box {
  position: relative;
  width: 100%;
  padding-bottom: 33.33%;
  overflow: hidden;
}
@media only screen and (max-width: 719px) {
  .carousel .carousel-slide .media-aspect-box {
    padding-bottom: 60%;
  }
}
.carousel .carousel-slide .media-aspect-box img, .carousel .carousel-slide .media-aspect-box video, .carousel .carousel-slide .media-aspect-box picture {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
}
@media only screen and (max-width: 719px) {
  .carousel .carousel-slide .media-aspect-box video {
    height: 60vw;
    width: auto;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}
.carousel .carousel-slide img, .carousel .carousel-slide video, .carousel .carousel-slide picture {
  width: 100%;
}
.carousel .carousel-slide.dark {
  color: #2B2F2B;
}
.carousel .carousel-slide.dark .slide-action {
  border-color: #2B2F2B;
}
@media only screen and (max-width: 719px) {
  .carousel .carousel-slide.dark .slide-text {
    background: #46B977;
  }
}
.carousel .carousel-slide.brand {
  color: #46B977;
}
.carousel .carousel-slide.brand .slide-action {
  border-color: #46B977;
}
@media only screen and (max-width: 719px) {
  .carousel .carousel-slide.brand .slide-text {
    background: #2B2F2B;
  }
}
.carousel .carousel-slide .slide-text {
  font-family: "Teko", sans-serif;
  position: absolute;
  top: 10%;
  left: 80px;
  width: 50%;
  font-size: 4.5em;
  text-transform: uppercase;
  font-weight: 900;
  line-height: 1.2;
}
@media only screen and (max-width: 719px) {
  .carousel .carousel-slide .slide-text {
    display: none;
  }
}
@media only screen and (min-width: 720px) and (max-width: 1150px) {
  .carousel .carousel-slide .slide-text {
    font-size: 3em;
  }
}
.carousel .carousel-slide .slide-action {
  position: absolute;
  top: 25vw;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Teko", sans-serif;
  font-weight: 900;
  font-size: 2.5em;
  text-align: center;
  border: 3px solid #ffffff;
  padding: 12px 20px 2px;
  text-transform: uppercase;
  line-height: 1;
}
.carousel .carousel-slide .slide-action:hover {
  opacity: 0.9;
}
@media only screen and (max-width: 719px) {
  .carousel .carousel-slide .slide-action {
    display: block;
    font-size: 1.5em;
    top: 40vw;
    padding: 8px 10px 4px;
  }
}
@media only screen and (min-width: 720px) and (max-width: 1150px) {
  .carousel .carousel-slide .slide-action {
    font-size: 1.5em;
  }
}
.carousel .carousel-slide.slide-transition {
  animation-timing-function: ease-out;
}
.carousel .carousel-slide.slide-right-transition {
  animation-timing-function: ease-out;
}
.carousel .carousel-slide.slide-enter-active {
  animation: slideEnterStageLeft 0.7s;
  z-index: 9;
}
.carousel .carousel-slide.slide-leave-active {
  animation: slideExitStageRight 0.7s;
  z-index: 9;
}
.carousel .carousel-slide.slide-right-enter-active {
  animation: slideEnterStageRight 0.7s;
  z-index: 9;
}
.carousel .carousel-slide.slide-right-leave-active {
  animation: slideExitStageLeft 0.7s;
  z-index: 9;
}

.carousel-slider {
  width: 100%;
  opacity: 0;
  z-index: 5555;
  transition: 0.3s;
  transition-delay: 1s;
}
.carousel-slider.ready {
  opacity: 1;
}
.carousel-slider:hover .carousel-nav-arrow {
  opacity: 0.5;
}
.carousel-slider .carousel-nav-arrow {
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 99;
  cursor: default;
  height: 60px;
}
@media only screen and (max-width: 719px) {
  .carousel-slider .carousel-nav-arrow {
    opacity: 0.7;
    height: 40px;
    transform: translateY(-100%);
  }
}
.carousel-slider .carousel-nav-arrow:hover {
  opacity: 1;
}
.carousel-slider .carousel-nav-arrow.carousel-prev-arrow {
  left: 30px;
  transform: scale(-1, -1);
  transform-origin: 50% 25%;
}
@media only screen and (max-width: 719px) {
  .carousel-slider .carousel-nav-arrow.carousel-prev-arrow {
    opacity: 0.7;
    height: 40px;
    transform: scale(-1, -1) translateY(50%);
  }
}
.carousel-slider .carousel-next-arrow {
  right: 30px;
}
.carousel-slider .carousel-dot-nav {
  text-align: center;
  position: absolute;
  bottom: 10px;
  width: 100%;
}
@media only screen and (max-width: 719px) {
  .carousel-slider .carousel-dot-nav {
    display: none;
  }
}
.carousel-slider .carousel-dot-nav .carousel-dot {
  display: inline-block;
  margin: 5px;
  width: 8px;
  height: 8px;
  background: #e2e2e2;
  opacity: 0.9;
}

@keyframes slideEnterStageLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    z-index: 10;
  }
  to {
    transform: translate3d(0, 0, 0);
    z-index: 100;
  }
}
@keyframes slideEnterStageRight {
  from {
    transform: translate3d(100%, 0, 0);
    z-index: 10;
  }
  to {
    transform: translate3d(0, 0, 0);
    z-index: 100;
  }
}
@keyframes slideExitStageRight {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes slideExitStageLeft {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-100%, 0, 0);
  }
}
.side-menu li.current-sub {
  color: #277448;
}
.side-menu li.current-sub svg polygon {
  fill: #277448;
}
.side-menu ul {
  list-style-type: none;
  padding: 0;
}
@media only screen and (max-width: 719px) {
  .side-menu ul {
    display: none;
  }
}
.side-menu li {
  font-family: "Ubuntu", -apple-system, BlinkMacSystemFont, “Segoe UI”, “Roboto”, “Oxygen”, “Ubuntu”, “Cantarell”, “Fira Sans”, “Droid Sans”, “Helvetica Neue”, sans-serif;
  color: #46B977;
  line-height: 1.5;
  padding: 4px 0;
}
.side-menu .menu-trigger {
  display: none;
}
.side-menu .menu-trigger-label {
  padding-left: 10px;
}
.side-menu .menu-trigger-label svg {
  width: 15px;
}
.side-menu .second-level {
  height: 0;
  overflow: hidden;
  transition: 0.5s;
  max-height: 0;
  min-height: 0;
  padding-left: 30px;
}
.side-menu .second-level li {
  color: #888;
}
.side-menu .second-level li:hover {
  color: #2B2F2B;
}
.side-menu .current-sub .second-level, .side-menu .menu-trigger:checked + .second-level {
  min-height: 16px;
  max-height: 600px;
  height: auto;
}

.mobile-category-menu {
  display: none;
}
@media only screen and (max-width: 719px) {
  .mobile-category-menu {
    display: block;
  }
}

.add-cart-btn .spinner > div {
  background: #46B977;
}

.add-to-cart-form {
  padding: 30px 0;
}
.add-to-cart-form label {
  font-family: "Roboto Slab", sans-serif;
  color: #2B2F2B;
  text-transform: uppercase;
  padding-right: 20px;
}
.add-to-cart-form input {
  height: 32px;
  font-size: 1.2em;
  width: 86px;
  padding-left: 10px;
}

.category-breadcrumbs .crumb {
  display: inline-block;
  position: relative;
  height: 30px;
  line-height: 27px;
  padding: 0 30px;
  font-size: 1.2em;
  margin-left: -5px;
}
.category-breadcrumbs .crumb::after {
  content: "";
  width: 21.1px;
  height: 21.1px;
  background: inherit;
  position: absolute;
  right: -8px;
  top: 4px;
  transform: rotate(45deg);
  z-index: 100;
  box-shadow: inset -2px 2px 3px 0 rgba(0, 0, 0, 0.6);
}
.category-breadcrumbs span.crumb::after {
  box-shadow: none;
  top: 5px;
  right: -11px;
}
.category-breadcrumbs a {
  background: #46B977;
  color: #ffffff;
}
.category-breadcrumbs a:hover {
  background: #39BFBE;
}
.category-breadcrumbs span {
  background: #888;
  color: #ffffff;
}

.cart-alert {
  position: absolute;
  top: 70px;
  right: 0;
  width: 350px;
  height: 120px;
  background: #2B2F2B;
  transition: 0.4s;
  transform: translate3d(100%, 0, 0);
}
@media only screen and (max-width: 719px) {
  .cart-alert {
    top: 0;
    right: -110%;
  }
}
@media only screen and (min-width: 720px) and (max-width: 1150px) {
  .cart-alert {
    top: 0;
    right: -110%;
  }
}
.cart-alert p.alert-text {
  color: #ffffff;
  font-size: 16px;
  text-transform: none;
  font-family: "Ubuntu", -apple-system, BlinkMacSystemFont, “Segoe UI”, “Roboto”, “Oxygen”, “Ubuntu”, “Cantarell”, “Fira Sans”, “Droid Sans”, “Helvetica Neue”, sans-serif;
  text-align: center;
  line-height: 16px;
}
.cart-alert a.alert-link {
  line-height: 16px;
  font-size: 14px;
  display: inline-block;
  width: 80px;
  position: absolute;
  bottom: 15px;
  right: 20px;
  color: #46B977;
  font-family: "Ubuntu", -apple-system, BlinkMacSystemFont, “Segoe UI”, “Roboto”, “Oxygen”, “Ubuntu”, “Cantarell”, “Fira Sans”, “Droid Sans”, “Helvetica Neue”, sans-serif;
  border: 2px solid #46B977;
  padding: 4px 8px;
  text-align: center;
  text-transform: uppercase;
}
.cart-alert.show {
  transform: translate3d(0, 0, 0);
}

.cart-nav-item:hover .cart-alert {
  transform: translate3d(0, 0, 0);
}

.pagination-container {
  width: 100%;
  padding: 20px 0;
  text-align: center;
}
.pagination-container ul {
  padding: 0;
  list-style-type: none;
}
.pagination-container li {
  display: inline-block;
  width: 25px;
  height: 25px;
  margin: 8px;
  background: #ffffff;
  color: #46B977;
  border: 1px solid;
  border-radius: 5px;
  line-height: 25px;
  text-align: center;
}
.pagination-container li.active {
  color: #888;
}

.w-5 {
  width: 1.25rem;
}

.h-5 {
  width: 1.25rem;
}

.standard-footer {
  width: 100%;
  min-height: 450px;
  background: #2B2F2B;
  font-family: "Ubuntu", -apple-system, BlinkMacSystemFont, “Segoe UI”, “Roboto”, “Oxygen”, “Ubuntu”, “Cantarell”, “Fira Sans”, “Droid Sans”, “Helvetica Neue”, sans-serif;
  color: #ffffff;
  display: flex;
  margin-top: 70px;
  position: relative;
}
@media only screen and (max-width: 719px) {
  .standard-footer {
    flex-direction: column;
  }
}
@media only screen and (min-width: 720px) and (max-width: 1150px) {
  .standard-footer {
    flex-direction: column;
  }
}
.standard-footer .social-footer, .standard-footer .contact-footer, .standard-footer .quick-links-footer {
  flex-basis: auto;
  width: 33.33%;
  flex-grow: 1;
  flex-shrink: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 40px 0 0;
  order: 5;
}
.standard-footer div.social-footer {
  justify-content: space-between;
}
@media only screen and (max-width: 719px) {
  .standard-footer div.social-footer {
    width: 100%;
    order: 1;
  }
}
@media only screen and (min-width: 720px) and (max-width: 1150px) {
  .standard-footer div.social-footer {
    width: 100%;
    order: 1;
  }
}
.standard-footer div.social-footer .distributor-link-header {
  margin-top: 50px;
  color: #46B977;
}
.standard-footer div.social-footer .distributor-link {
  margin-top: 15px;
  display: block;
  text-transform: uppercase;
}
.standard-footer div.social-footer .distributor-link:hover {
  color: #46B977;
}
.standard-footer .quick-links-footer .footer-heading {
  padding-bottom: 10px;
}
.standard-footer .quick-links-footer a {
  text-transform: uppercase;
  line-height: 1.8;
}
.standard-footer .quick-links-footer a:hover {
  color: #46B977;
}
@media only screen and (max-width: 719px) {
  .standard-footer .quick-links-footer {
    width: 100%;
    order: 3;
  }
}
@media only screen and (min-width: 720px) and (max-width: 1150px) {
  .standard-footer .quick-links-footer {
    width: 100%;
    order: 3;
  }
}
.standard-footer .signoff {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}
@media only screen and (max-width: 719px) {
  .standard-footer .signoff {
    width: 100%;
    order: 4;
    position: relative;
    padding-top: 60px;
  }
}
@media only screen and (min-width: 720px) and (max-width: 1150px) {
  .standard-footer .signoff {
    width: 100%;
    order: 4;
    position: relative;
    padding-top: 60px;
  }
}
.standard-footer .signoff img {
  width: 120px;
}
@media only screen and (max-width: 719px) {
  .standard-footer .signoff img {
    width: 80px;
  }
}
@media only screen and (max-width: 719px) {
  .standard-footer .contact-footer {
    width: 100%;
    order: 2;
  }
}
@media only screen and (min-width: 720px) and (max-width: 1150px) {
  .standard-footer .contact-footer {
    width: 100%;
    order: 2;
  }
}
.standard-footer .footer-heading {
  margin-bottom: 0;
}
.standard-footer .footer-detail {
  margin-top: 10px;
}

.social-footer .social-icon-row {
  padding-top: 20px;
}

.social-icon-row {
  display: flex;
  justify-content: center;
  padding-top: 20px;
}
.social-icon-row svg {
  width: 40px;
  margin: 0 8px;
}
@media only screen and (max-width: 719px) {
  .social-icon-row svg {
    width: 30px;
  }
}
.social-icon-row svg:hover .colour-in {
  fill: #46B977;
}
.social-icon-row svg:hover .icon-tile {
  stroke: #46B977;
}
.social-icon-row.black .colour-in {
  fill: #2B2F2B;
}
.social-icon-row.black .icon-tile {
  stroke: #2B2F2B;
}

.product-breadcrumbs {
  padding: 15px;
}
@media only screen and (max-width: 719px) {
  .product-breadcrumbs {
    display: none;
  }
}
.product-breadcrumbs .breadcrumb {
  color: #888;
  font-family: "Roboto Slab", sans-serif;
  text-transform: uppercase;
}
.product-breadcrumbs .breadcrumb:not(:last-child)::after {
  content: ">";
  padding: 0 10px;
}
.product-breadcrumbs a.breadcrumb:hover {
  color: #2B2F2B;
}

.stat-counter {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  width: 300px;
  margin-top: 100px;
}
.stat-counter .stat-number {
  font-size: 5em;
  font-weight: 700;
  color: #46B977;
}
.stat-counter .stat-title {
  color: #2B2F2B;
  text-transform: uppercase;
}

.page-section.hero-section {
  padding: 0;
}

.about-section {
  max-width: 1000px;
  margin: 0 auto;
}
.about-section .about-image img {
  width: 80%;
  display: block;
}
@media only screen and (max-width: 719px) {
  .about-section .about-image {
    display: none;
  }
}

.services-section .service-box {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
}
.services-section .service-brief {
  padding-bottom: 40px;
  width: 50%;
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: auto;
}
@media only screen and (max-width: 719px) {
  .services-section .service-brief {
    width: 100%;
  }
}
.services-section .service-brief .service-name {
  font-family: "Roboto Slab", sans-serif;
  text-align: center;
  color: #46B977;
  text-transform: uppercase;
  margin-top: 0;
}
.services-section .service-brief svg {
  height: 40px;
  margin-bottom: 20px;
}
.services-section .service-brief .truck {
  padding: 1px;
}
.services-section .service-brief .wheelbarrow {
  padding: 4px;
}
.services-section .service-brief p {
  max-width: 250px;
  text-align: center;
}

.hot-products-container {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.hot-products-container .hot-product-card {
  flex-basis: 25%;
  max-width: 25%;
  flex-grow: 0;
  flex-shrink: 1;
  padding: 0 4%;
  margin-bottom: 40px;
  position: relative;
}
@media only screen and (max-width: 719px) {
  .hot-products-container .hot-product-card {
    flex-basis: 50%;
    max-width: 50%;
  }
}
.hot-products-container .hot-product-card img {
  width: 100%;
}
.hot-products-container .hot-product-card .product-name {
  color: #2B2F2B;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.hot-products-container .hot-product-card.new::before {
  content: "new";
  text-transform: uppercase;
  font-family: "Roboto Slab", sans-serif;
  font-size: 100%;
  color: #ffffff;
  background: #46B977;
  padding: 3px 6px;
  top: 10px;
  left: 10px;
  position: absolute;
  transform: rotate(-10deg);
}

.latest-news-list {
  max-width: 960px;
  margin: 0 auto;
  padding: 40px 0;
}
.latest-news-list .latest-news-headline {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  border: 1px solid #888;
  height: 60px;
}
@media only screen and (max-width: 719px) {
  .latest-news-list .latest-news-headline {
    height: auto;
    min-height: 60px;
    padding: 12px 0;
    text-transform: capitalize;
  }
}
.latest-news-list .latest-news-headline:not(:last-of-type) {
  border-bottom: 0;
}
.latest-news-list .latest-news-headline .icon-holder {
  width: 50px;
  text-align: center;
  flex-basis: auto;
  flex-grow: 0;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 719px) {
  .latest-news-list .latest-news-headline .icon-holder {
    display: none;
  }
}
.latest-news-list .latest-news-headline .icon-holder svg {
  width: 40%;
  min-width: 20px;
}
.latest-news-list .latest-news-headline .article-date {
  flex-basis: auto;
  flex-grow: 0;
  flex-shrink: 1;
  padding: 0 30px;
  font-family: "Roboto Slab", sans-serif;
  text-transform: uppercase;
}
@media only screen and (max-width: 719px) {
  .latest-news-list .latest-news-headline .article-date {
    flex-basis: 100px;
    padding: 0 20px;
    flex-shrink: 0;
  }
}
.latest-news-list .latest-news-headline .article-title-line {
  flex-basis: auto;
  flex-grow: 1;
  flex-shrink: 1;
  text-transform: capitalize;
}

.contact-section .distributor-link-header {
  margin-top: 50px;
  margin-bottom: 10px;
  color: #46B977;
}

.contact-section .distributor-link {
  display: block;
  text-transform: uppercase;
}
.contact-section .distributor-link:hover {
  color: #46B977;
}

.home-footer {
  width: 100%;
  padding: 40px 0 0;
}
.home-footer img {
  display: block;
  width: 120px;
  margin: 0 auto;
}
.home-footer p {
  color: #888;
  text-align: center;
  font-family: "Ubuntu", -apple-system, BlinkMacSystemFont, “Segoe UI”, “Roboto”, “Oxygen”, “Ubuntu”, “Cantarell”, “Fira Sans”, “Droid Sans”, “Helvetica Neue”, sans-serif;
}

.dymantic-link:hover {
  color: #f94b4b;
}

.products-page-banner {
  background: url(/images/tools_spanners.jpg);
  background-size: cover;
}

.category-index-card-container {
  max-width: 1100px;
  margin: 40px auto;
  display: flex;
  flex-wrap: wrap;
}
.category-index-card-container .category-index-card {
  flex-basis: 33.33%;
  flex-grow: 1;
  flex-shrink: 1;
  padding: 3%;
}
@media only screen and (max-width: 719px) {
  .category-index-card-container .category-index-card {
    flex-basis: 100%;
  }
}

.category-index-card .category-image {
  max-width: 200px;
  display: block;
  margin: 0 auto;
}
.category-index-card .category-name {
  text-align: center;
  color: #46B977;
}
.category-index-card .category-name:hover {
  color: #6bc792;
}
.category-index-card .category-name.dark-text {
  color: #2B2F2B;
}
.category-index-card .category-name.dark-text:hover {
  color: #5c645c;
}

.category-listing-outer {
  display: flex;
  max-width: 1200px;
  margin: 40px auto;
  width: 100%;
}
@media only screen and (max-width: 719px) {
  .category-listing-outer {
    flex-direction: column;
  }
}
.category-listing-outer .side-panel {
  padding-left: 15px;
  flex-basis: 300px;
  width: 260px;
  margin-right: 40px;
  flex-grow: 0;
  flex-shrink: 0;
  border-right: 2px solid #a9b0a9;
}
@media only screen and (max-width: 719px) {
  .category-listing-outer .side-panel {
    flex-basis: 100%;
    width: 100%;
    padding-left: 0;
  }
}
.category-listing-outer .side-panel .stat-counter {
  align-items: center;
  margin-top: 40px;
  width: 150px;
  border: 1px solid #46B977;
  border-radius: 8px;
}
@media only screen and (max-width: 719px) {
  .category-listing-outer .side-panel .stat-counter {
    display: none;
  }
}
.category-listing-outer .main-panel {
  flex-basis: auto;
  flex-grow: 1;
  flex-shrink: 1;
  width: calc(100% - 300px);
}
@media only screen and (max-width: 719px) {
  .category-listing-outer .main-panel {
    flex-basis: auto;
    width: 100%;
    flex-shrink: 0;
  }
}

.category-index {
  display: flex;
  flex-wrap: wrap;
}
.category-index .product-index-card {
  position: relative;
  width: 30%;
  max-width: 333px;
  margin: 0 auto;
  flex-basis: auto;
  flex-grow: 1;
  flex-shrink: 1;
  padding: 20px;
}
@media only screen and (max-width: 719px) {
  .category-index .product-index-card {
    flex-basis: 50%;
    width: 50%;
  }
}
.category-index .product-index-card .product-image {
  max-width: 200px;
  display: block;
  margin: 0 auto;
  width: 100%;
}
.category-index .product-index-card .product-name {
  text-align: center;
}
.category-index .product-index-card .product-code {
  text-align: center;
  font-size: 80%;
  color: #46B977;
}
.category-index .product-index-card.new::before {
  content: "new";
  text-transform: uppercase;
  font-family: "Roboto Slab", sans-serif;
  font-size: 100%;
  color: #ffffff;
  background: #46B977;
  padding: 3px 6px;
  top: 10px;
  left: 10px;
  position: absolute;
  transform: rotate(-10deg);
}

.page-position {
  text-align: center;
  font-family: "Ubuntu", -apple-system, BlinkMacSystemFont, “Segoe UI”, “Roboto”, “Oxygen”, “Ubuntu”, “Cantarell”, “Fira Sans”, “Droid Sans”, “Helvetica Neue”, sans-serif;
  color: #46B977;
}
.page-position span {
  color: #2B2F2B;
}

.category-page-banner-container {
  width: 100%;
  height: 16.667vw;
  background: url(/images/tree_leaves.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position-y: 33%;
}

.category-page-header {
  position: relative;
  height: 16.667vw;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 719px) {
  .category-page-header {
    padding-top: 40px;
  }
}
.category-page-header img {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.4;
  z-index: -1;
  width: 100%;
}
@media only screen and (max-width: 719px) {
  .category-page-header img {
    display: none;
  }
}
.category-page-header .h1.section-title {
  font-size: 2em;
}

.product-page-container {
  max-width: 960px;
  margin: 0 auto;
}
.product-page-container .category-breadcrumbs {
  padding-top: 40px;
}
@media only screen and (max-width: 719px) {
  .product-page-container .category-breadcrumbs {
    display: none;
  }
}

.product-title {
  border-bottom: 2px solid #2B2F2B;
  margin-bottom: 40px;
}
@media only screen and (max-width: 719px) {
  .product-title {
    padding: 10px;
  }
}
@media only screen and (min-width: 720px) and (max-width: 1150px) {
  .product-title {
    padding: 10px;
  }
}
.product-title .product-title-name {
  margin-bottom: 10px;
}
.product-title .product-title-code {
  margin: 0 0 10px 0;
}

.product-detail-outer {
  display: flex;
}
@media only screen and (max-width: 719px) {
  .product-detail-outer {
    flex-direction: column;
  }
}
.product-detail-outer .product-image-box {
  width: 50%;
  flex-grow: 1;
  flex-shrink: 0;
  flex-basis: auto;
  padding: 20px;
}
@media only screen and (max-width: 719px) {
  .product-detail-outer .product-image-box {
    width: 100%;
  }
}
.product-detail-outer .product-details {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: auto;
  padding: 20px 20px 20px 40px;
  font-family: "Ubuntu", -apple-system, BlinkMacSystemFont, “Segoe UI”, “Roboto”, “Oxygen”, “Ubuntu”, “Cantarell”, “Fira Sans”, “Droid Sans”, “Helvetica Neue”, sans-serif;
  color: #2B2F2B;
}
.product-detail-outer .product-details .product-writeup {
  max-width: 100%;
  overflow-x: auto;
}

.related-products-box {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 719px) {
  .related-products-box {
    flex-wrap: wrap;
  }
}
.related-products-box .related-product-index-card {
  max-width: 200px;
  flex-basis: auto;
  flex-grow: 0;
  flex-shrink: 1;
}
@media only screen and (max-width: 719px) {
  .related-products-box .related-product-index-card {
    width: 50%;
    padding: 20px;
  }
}
.related-products-box .related-product-index-card .product-image {
  display: block;
  max-width: 200px;
  width: 75%;
  margin: 0 auto;
}
.related-products-box .related-product-index-card .product-name {
  text-align: center;
}

.product-gallery {
  width: 95%;
  position: relative;
  padding-bottom: 80%;
}
.product-gallery img {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 100%;
  opacity: 0;
  transition: opacity 0.4s;
  max-height: 100%;
}
.product-gallery img.show {
  opacity: 1;
}
.product-gallery img:target {
  opacity: 1;
}
.product-gallery canvas {
  width: 100%;
  z-index: 999;
  border: 1px solid #e2e2e2;
  position: absolute;
  background: #ffffff;
  display: none;
}

.product-gallery-nav img {
  width: 50px;
  display: inline-block;
  margin: 10px;
}

.cart-list {
  width: 95%;
  max-width: 900px;
  margin: 40px auto;
}
.cart-list .checkout-button {
  margin-top: 50px;
  font-family: "Roboto Slab", sans-serif;
  text-transform: uppercase;
}

.cart-item {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
}
@media only screen and (max-width: 719px) {
  .cart-item {
    flex-wrap: wrap;
    border: 1px solid #515353;
    padding-bottom: 8px;
    margin-bottom: 20px;
  }
}
.cart-item .cart-item-thumb-box {
  width: 80px;
  flex-basis: auto;
  flex-grow: 0;
  flex-shrink: 0;
}
.cart-item .cart-item-thumb-box img {
  width: 100%;
}
.cart-item .cart-item-name {
  width: 17em;
  flex-basis: auto;
  flex-grow: 1;
  flex-shrink: 1;
  padding: 0 20px;
}
.cart-item .cart-item-qty-box {
  width: 120px;
  flex-basis: auto;
  flex-grow: 0;
  flex-shrink: 0;
}
.cart-item .cart-item-qty-box .small-action-btn .spinner > div {
  background: #46B977;
}
.cart-item .cart-item-qty-box .number {
  display: inline-block;
  padding: 4px;
  width: 50px;
  text-align: center;
}
.cart-item .cart-item-qty-box .cart-edit-btn {
  color: #39BFBE;
  border-color: #39BFBE;
}
.cart-item .cart-item-qty-box .cart-save-btn {
  color: #46B977;
  border-color: #46B977;
}
.cart-item .cart-item-code {
  width: 10em;
  flex-basis: auto;
  flex-grow: 0;
  flex-shrink: 1;
  text-align: center;
}
.cart-item .cart-item-trash {
  width: 90px;
  flex-basis: auto;
  flex-grow: 0;
  flex-shrink: 0;
}
.cart-item .cart-item-trash button {
  background: transparent;
  border: 0;
}
.cart-item .cart-item-trash svg {
  fill: #EF6060;
}

.checkout-container {
  display: flex;
  width: 95%;
  max-width: 1200px;
  margin: 40px auto;
}
@media only screen and (max-width: 719px) {
  .checkout-container {
    flex-direction: column;
  }
}
.checkout-container .checkout-items {
  flex-basis: 40%;
  flex-grow: 1;
  flex-shrink: 1;
}
@media only screen and (max-width: 719px) {
  .checkout-container .checkout-items {
    flex-basis: 100%;
  }
}
.checkout-container .checkout-form-box {
  flex-basis: 60%;
  flex-grow: 1;
  flex-shrink: 1;
  transition: 0.7s;
  min-height: 900px;
  max-height: 1200px;
}
.checkout-container .checkout-form-box.shortened {
  min-height: 550px;
  max-height: 700px;
}
@media only screen and (max-width: 719px) {
  .checkout-container .checkout-form-box {
    flex-basis: 100%;
  }
}
.checkout-container .checkout-form-box .customer-types {
  text-align: center;
  padding-bottom: 30px;
}
.checkout-container .checkout-form-box .customer-types label {
  text-transform: uppercase;
}
.checkout-container .checkout-form-box #new_customer_fields {
  display: block;
  overflow: hidden;
  transition: 0.7s;
  min-height: 400px;
  max-height: 700px;
}
.checkout-container .checkout-form-box #new_customer_fields.hide {
  min-height: 0;
  max-height: 0;
}

.checkout-items-table th {
  text-align: left;
}
.checkout-items-table .number-col {
  width: 40px;
}
.checkout-items-table .name-col {
  width: 17em;
}

.checkout-form-box form {
  width: 95%;
  max-width: 500px;
  margin: 0 auto;
}
.checkout-form-box .form-group {
  padding-bottom: 15px;
}
.checkout-form-box label:not(.radio-label) {
  font-family: "Roboto Slab", sans-serif;
  font-size: 90%;
  color: #46B977;
  padding-bottom: 6px;
  display: inline-block;
}
.checkout-form-box input[type=text], .checkout-form-box input[type=email] {
  display: inline-block;
  padding-left: 10px;
  height: 32px;
  width: 100%;
  border: 1px solid #2B2F2B;
}
.checkout-form-box input[type=text].other-referrer {
  width: calc(100% - 100px);
}
.checkout-form-box .radio-label {
  display: inline-block;
  padding-left: 20px;
  padding-bottom: 10px;
}
.checkout-form-box .radio-label::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 1px solid #46B977;
  vertical-align: middle;
}
.checkout-form-box input[type=radio] {
  display: none;
}
.checkout-form-box input[type=radio]:checked + .radio-label::after {
  background: #46B977;
}
.checkout-form-box .radios {
  padding: 20px 0;
}
.checkout-form-box .radios .standard-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media only screen and (max-width: 719px) {
  .checkout-form-box .radios .standard-options .radio-label {
    padding-right: 30px;
  }
}
.checkout-form-box textarea {
  width: 100%;
  border: 1px solid #2B2F2B;
  padding: 10px;
}

.page-banner.news-page-banner {
  background: url("/images/insight_banner.jpg");
  background-size: cover;
}

.news-article-listing {
  width: 95%;
  max-width: 960px;
  margin: 40px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.news-article-listing .article-summary {
  width: 45%;
  max-width: 500px;
  flex-basis: auto;
  flex-grow: 0;
  flex-shrink: 1;
  margin-bottom: 50px;
  padding: 20px;
  background: #EFF5F0;
  display: flex;
  flex-direction: column;
}
.news-article-listing .article-summary:hover {
  border: 1px solid #46B977;
}
@media only screen and (max-width: 719px) {
  .news-article-listing .article-summary {
    width: 100%;
  }
}
.news-article-listing .article-summary .article-summary-featured-img-box {
  position: relative;
  padding-bottom: 62.5%;
  overflow: hidden;
}
.news-article-listing .article-summary .article-summary-featured-img-box img {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 100%;
  transition: 1s;
}
.news-article-listing .article-summary .article-summary-featured-img-box img:hover {
  transform: scale(1.2);
}
.news-article-listing .article-summary .article-title {
  margin-bottom: 0;
}
.news-article-listing .article-summary:nth-child(odd).article-summary:last-child {
  margin-right: auto;
  margin-left: 0;
}

.simple-pagination {
  width: 90%;
  max-width: 960px;
  margin: 0 auto;
}
.simple-pagination ul {
  list-style-type: none;
  padding: 0;
  display: flex;
  justify-content: space-between;
}
.simple-pagination li {
  display: inline-block;
  padding: 0 16px;
  line-height: 30px;
  height: 32px;
  border: 2px solid #46B977;
  border-radius: 16px;
  color: #46B977;
}
.simple-pagination li.disabled {
  opacity: 0.5;
  color: #888;
  border-color: #888;
}
.simple-pagination li:not(.disabled):hover {
  background: #46B977;
  color: #ffffff;
}

.dd-checkbox-label:after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 1px solid #46B977;
  margin-left: 10px;
  margin-right: 10px;
  vertical-align: bottom;
  transition: 0.5s;
  background: #ffffff;
}

.dd-labelled-checkbox {
  display: none;
}

.dd-labelled-checkbox:checked + .dd-checkbox-label:after {
  background: #46B977;
}

.news-article {
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
}
.news-article .buffalo-icon {
  display: block;
  width: 50px;
  margin: 50px auto 0;
}
.news-article .article-title {
  font-family: "Roboto Slab", sans-serif;
  color: #2B2F2B;
  margin: 10px 0;
  font-size: 2em;
}
.news-article .publish-date {
  text-align: center;
}
.news-article .article-body {
  padding-top: 40px;
  padding-bottom: 40px;
  font-size: 120%;
  line-height: 1.6;
  word-wrap: break-word;
}
.news-article .article-body img {
  max-width: 100%;
  display: block;
  margin: 20px auto 0;
  height: auto;
}

.social-wrapper {
  text-align: center;
  padding-top: 40px;
}

.back-to-news-btn {
  margin-top: 100px;
}

.services-page-banner {
  background-image: url(/images/services_banner.jpg);
  background-size: cover;
  background-position: center;
}

.services-container {
  width: 100%;
  margin-bottom: -70px;
}
.services-container .service-row {
  display: flex;
  flex-wrap: nowrap;
  min-height: 400px;
}
.services-container .service-row .service-image-container {
  width: 40%;
  flex-basis: auto;
  flex-grow: 0;
  flex-shrink: 0;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 719px) {
  .services-container .service-row .service-image-container {
    display: none;
  }
}
.services-container .service-row .service-text-block {
  width: 60%;
  flex-basis: auto;
  flex-grow: 0;
  flex-shrink: 0;
  padding: 60px 0;
}
@media only screen and (max-width: 719px) {
  .services-container .service-row .service-text-block {
    width: 100%;
    padding-left: 15px;
  }
}
.services-container .service-row .service-text-block.dark-block {
  background: #2B2F2B;
}
.services-container .service-row .service-text-block.dark-block .service-writeup {
  color: #ffffff;
}
.services-container .service-row .service-text-block.dark-block .service-writeup .service-intro {
  color: #ffffff;
}
.services-container .service-row.sourcing .service-image-container {
  background: url(/images/services_sourcing.jpg);
  background-position-x: 62%;
  background-size: cover;
  background-repeat: no-repeat;
}
.services-container .service-row.customization .service-image-container {
  background: url(/images/services_custom.jpg);
  background-position-x: 25%;
  background-size: cover;
  background-repeat: no-repeat;
}
.services-container .service-row.logistics .service-image-container {
  background: url(/images/logistics.jpg);
  background-position-x: 25%;
  background-size: cover;
  background-repeat: no-repeat;
}
.services-container .service-row.quality-assurance .service-image-container {
  background: url(/images/services_qa.jpg);
  background-position-x: 75%;
  background-size: cover;
  background-repeat: no-repeat;
}
.services-container .service-writeup {
  max-width: 100%;
  width: 500px;
  flex-grow: 0;
  flex-shrink: 1;
  flex-basis: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 50px 0;
  margin: 0 auto;
}
@media only screen and (max-width: 719px) {
  .services-container .service-writeup {
    max-width: 100%;
    flex-basis: 100%;
  }
}
.services-container .service-writeup .service-title {
  font-family: "Roboto Slab", sans-serif;
  color: #46B977;
  text-transform: uppercase;
  font-size: 1em;
  margin-top: 0;
}
.services-container .service-writeup .service-intro {
  font-family: "Roboto Slab", sans-serif;
  color: #888;
  font-size: 1.1em;
}
.services-container .service-writeup p {
  padding: 0 3%;
}
.services-container .service-writeup svg {
  height: 40px;
  margin-bottom: 20px;
}
.services-container .service-writeup .wheelbarrow {
  padding: 5px;
}
.services-container .service-writeup .truck {
  padding: 1px;
}

.map-container svg {
  width: 95%;
  max-width: 960px;
  display: block;
  margin: 50px auto;
}
.customer-logos {
  display: flex;
  justify-content: center;
  flex-flow: wrap;
  max-width: 60rem;
  margin: 0 auto;
}
@media only screen and (max-width: 719px) {
  .customer-logos {
    flex-direction: column;
  }
}
.customer-logos > div {
  width: 33.3%;
  height: 100px;
}
@media only screen and (max-width: 719px) {
  .customer-logos > div {
    width: 100%;
  }
}
.customer-logos img {
  width: 100%;
  max-width: 175px;
  display: block;
  margin: 0 auto;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

@keyframes pulse {
  50% {
    fill: green;
  }
}
.about-page-banner {
  background-image: url(/images/about_banner.jpeg);
  background-size: cover;
}

.strong-lead.padded-bottom {
  padding-bottom: 60px;
}

img.tape-measure {
  display: block;
  margin: 80px auto 20px;
  max-width: 75%;
}

img.socket-piece {
  display: block;
  margin: 40px -10px 40px auto;
  max-width: calc(100% - 10px);
}

.buffalo-breakdown-logos {
  display: flex;
  justify-content: space-between;
  padding: 50px 0;
}
.buffalo-breakdown-logos .image-holder {
  flex-grow: 0;
  flex-shrink: 1;
  flex-basis: auto;
  max-width: 230px;
  position: relative;
  border: 1px solid #e2e2e2;
  padding: 20px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.buffalo-breakdown-logos img {
  max-width: 60%;
  display: block;
  margin: auto auto;
}
.buffalo-breakdown-logos .istone-logo {
  max-width: 50%;
}

.customers {
  padding: 10px;
}

.contact-page-banner {
  background-image: url(/images/connect_banner.png);
  background-size: cover;
}

.contact-section.full-contact-page-section {
  background: none;
  color: #2B2F2B;
}
.contact-section.full-contact-page-section .contact-form-container input, .contact-section.full-contact-page-section .contact-form-container textarea {
  color: #2B2F2B;
}
.contact-section.full-contact-page-section .contact-submit.page-section-.cta:hover {
  color: #ffffff;
}

.contact-section {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(/images/footer_banner.jpg);
  background-size: cover;
}

.contact-section {
  color: #ffffff;
}
.contact-section .contact-form-container form {
  max-width: 500px;
  width: 95%;
  margin: 0 auto;
}
.contact-section .form-group {
  width: 100%;
  margin: 10px 0;
  padding: 8px;
  border: 2px solid;
  display: flex;
}
.contact-section .form-group label {
  flex-basis: auto;
  flex-grow: 0;
  flex-shrink: 0;
  font-family: "Ubuntu", -apple-system, BlinkMacSystemFont, “Segoe UI”, “Roboto”, “Oxygen”, “Ubuntu”, “Cantarell”, “Fira Sans”, “Droid Sans”, “Helvetica Neue”, sans-serif;
  padding-right: 15px;
  align-self: center;
}
.contact-section .form-group label.top-label {
  align-self: flex-start;
}
.contact-section .form-group input {
  flex-basis: auto;
  flex-grow: 1;
  flex-shrink: 1;
  height: 32px;
  font-size: 1em;
  background: transparent;
  border: 0;
  padding-left: 10px;
  color: #ffffff;
}
.contact-section .form-group input:focus {
  outline-color: #46B977;
}
.contact-section .form-group textarea {
  flex-basis: auto;
  flex-grow: 1;
  flex-shrink: 1;
  font-size: 1em;
  background: transparent;
  border: 0;
  padding: 10px;
  color: #ffffff;
}
.contact-section .btn.contact-submit {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  max-width: 100%;
}
.contact-section .contact-heading {
  margin-bottom: 0;
}
.contact-section .contact-info {
  margin-top: 5px;
  text-align: center;
}

.referrers-radiobox {
  font-family: "Ubuntu", -apple-system, BlinkMacSystemFont, “Segoe UI”, “Roboto”, “Oxygen”, “Ubuntu”, “Cantarell”, “Fira Sans”, “Droid Sans”, “Helvetica Neue”, sans-serif;
}
.referrers-radiobox .other-referrer {
  display: block;
  width: 95%;
  margin: 10px auto;
  height: 32px;
  line-height: 32px;
  padding-left: 8px;
}
.referrers-radiobox .prompt {
  margin-bottom: 0;
}
.referrers-radiobox label {
  padding: 8px 15px;
  white-space: nowrap;
  display: inline-block;
}
.referrers-radiobox .radio-label {
  display: inline-block;
  padding-left: 20px;
  padding-bottom: 10px;
}
.referrers-radiobox .radio-label::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 1px solid #46B977;
  vertical-align: middle;
  margin-left: 10px;
}
.referrers-radiobox input[type=radio] {
  display: none;
}
.referrers-radiobox input[type=radio]:checked + .radio-label::after {
  background: #46B977;
}

.contact-page-distributors {
  padding: 2rem 1rem;
}

.faqs-page-banner {
  background-image: url(/images/about_banner.jpeg);
  background-size: cover;
}

.faq-question {
  margin: 30px auto;
}
.faq-question .question {
  font-family: "Roboto Slab", sans-serif;
  font-size: 1.25em;
  margin-bottom: 0;
}
.faq-question .answer {
  font-family: "Ubuntu", -apple-system, BlinkMacSystemFont, “Segoe UI”, “Roboto”, “Oxygen”, “Ubuntu”, “Cantarell”, “Fira Sans”, “Droid Sans”, “Helvetica Neue”, sans-serif;
  margin-top: 5px;
}
.faq-question ul {
  padding: 0;
  margin-top: 5px;
  list-style-type: none;
}
.faq-question .process-diagram {
  max-width: 100%;
  display: block;
  margin: 1em auto;
  border: 1px solid #2B2F2B;
}
@media only screen and (max-width: 719px) {
  .faq-question .process-diagram {
    max-width: 95%;
  }
}

.thanks-page-section .thanks-text {
  padding: 5em 15px;
  max-width: 500px;
  margin: 0 auto;
}

a, a:visited, a:focus, a:hover {
  color: inherit;
  text-decoration: none;
}

body {
  font-family: "Ubuntu", -apple-system, BlinkMacSystemFont, “Segoe UI”, “Roboto”, “Oxygen”, “Ubuntu”, “Cantarell”, “Fira Sans”, “Droid Sans”, “Helvetica Neue”, sans-serif;
  color: #2B2F2B;
}
