@charset "utf-8";
@import url('//fonts.googleapis.com/css?family=Roboto:400,700');
@import url('//fonts.googleapis.com/css?family=Roboto+Condensed:400,700');

/***************************************************************************
* GENERAL STYLES
***************************************************************************/
body {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.42857143;
  color: #333;
  background-color: #fff;
}

a {
  color: #4c9949;
}
a:hover,
a:focus,
a:active {
  color: #3b7639;
  text-decoration: none;
}

.category_head_name {
  display: none !important;
}

sup.requiredField {
  color: #ff0000;
}

/*
 * Headings
 * --------------------------------------------------
 */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Roboto', sans-serif;
  font-weight: normal;
  line-height: 1.42857143;
}
h1.h1_title {
  color: #000;
  font-size: 30px;
  margin-top: 0;
  margin-bottom: 20px;
}
h1.h1_title > a {
  color: #000;
}
h2.h2_title {
  color: #000;
  font-size: 24px;
  margin-top: 0;
  margin-bottom: 15px;
}
h2.h2_title > a {
  color: #000;
}
h3.h3_title {
  color: #000;
  font-size: 18px;
  margin-top: 0;
  margin-bottom: 10px
}
h3.h3_title > a {
  color: #000;
}
h4.h4_title {
  color: #000;
  font-size: 16px;
  margin-top: 0;
  margin-bottom: 10px
}
h4.h4_title > a {
  color: #000;
}

/*
 * Buttons
 * --------------------------------------------------
 */
.btn {
  border-radius: 0;
  transition: all 0.3s ease;
  white-space: normal;
}

/* animated button */
.btn.btn-animated {
  color: #fff;
  background: transparent;
  border-color: #fff;
  padding-left: 16px;
  padding-right: 0;
}
.btn.btn-animated:after {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f105";
  opacity: 0;
  text-align: center;
  font-size: 1.33333333em;
  line-height: 0.6em;
  vertical-align: -15%;
  transition: all 0.3s ease;
  width: 16px;
  padding-left: 8px;
}
.btn.btn-animated:hover,
.btn.btn-animated:focus,
.btn.btn-animated:active {
  color: #fff;
  background: transparent;
  border-color: #fff;
  outline: none;
  padding-right: 16px;
}
.btn.btn-animated:hover:after,
.btn.btn-animated:focus:after,
.btn.btn-animated:active:after {
  opacity: 1;
}

.btn-lg.btn-animated {
  padding-left: 20px;
  padding-right: 0;
}
.btn-lg.btn-animated:after {
  width: 20px;
  padding-left: 10px;
}
.btn-lg.btn-animated:hover,
.btn-lg.btn-animated:focus,
.btn-lg.btn-animated:active {
  padding-right: 20px;
}

/* ------------------------- */
.btn-outline-white {
  color: #fff;
  background: transparent;
  border-color: #fff;
}
.btn-outline-white:hover,
.btn-outline-white:focus,
.btn-outline-white:active {
  color: #4c9949;
  background: #fff;
  border-color: #fff;
  outline: none;
}

/* ------------------------- */
.btn-green {
  color: #fff;
  background: #4c9949;
  border-color: #4c9949;
}
.btn-green:hover,
.btn-green:focus,
.btn-green:active {
  color: #fff;
  background: #3b7639;
  border-color: #3b7639;
  outline: none;
}

.btn-outline-green {
  color: #4c9949;
  background: transparent;
  border-color: #4c9949;
}
.btn-outline-green:hover,
.btn-outline-green:focus,
.btn-outline-green:active {
  color: #fff;
  background: #4c9949;
  border-color: #4c9949;
  outline: none;
}

/*
 * Forms
 * --------------------------------------------------
 */
.form-control {
  border-radius: 0;
  border: 1px solid #ddd;
}
.form-control:focus {
  border-color: #4c9949;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(64,108,176,.6);
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(64,108,176,.6);
}
.form-control.input-lg {
  font-size: 14px;
}
.bg-form .has-error .checkbox,
.bg-form .has-error .checkbox-inline,
.bg-form .has-error .control-label,
.bg-form .has-error .help-block,
.bg-form .has-error .radio,
.bg-form .has-error .radio-inline,
.bg-form .has-error.checkbox label,
.bg-form .has-error.checkbox-inline label,
.bg-form .has-error.radio label,
.bg-form .has-error.radio-inline label {
  color: #ff0000;
}

.bordered-form {
  border: 1px solid #ddd;
  padding: 20px;
}

/*
 * Border Radius Helpers
 * --------------------------------------------------
 */
.rounded {
  border-radius: 4px !important;
}
.rounded-0 {
  border-radius: 0 !important;
}

/*
 * Max Width Helpers
 * --------------------------------------------------
 */
.max-w-300 {
  max-width: 300px;
}
.max-w-400 {
  max-width: 400px;
}
.max-w-500 {
  max-width: 500px;
}
.max-w-600 {
  max-width: 600px;
}
.max-w-700 {
  max-width: 700px;
}
.max-w-800 {
  max-width: 800px;
}
.max-w-900 {
  max-width: 900px;
}

/*
 * Text Color
 * --------------------------------------------------
 */
.text-black {
  color: #333 !important;
}
.text-white {
  color: #fff !important;
}
.text-green {
  color: #4c9949 !important;
}

/*
 * Backgrounds
 * --------------------------------------------------
 */
.bg-green {
  background: #4c9949 !important;
}
.bg-dark-green {
  background: #3b7639 !important;
}
.bg-gray {
  background: #f2f2f2 !important;
}

.bg-form {
  background-image: url('../img/bg-form.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

/*
 * Horizontal Line Separators
 * --------------------------------------------------
 */
hr.hr-separator {
  border-top: 1px solid #ccc;
}

hr.hr-small {
  border: 0;
  margin: 0;
  border-top: 2px solid #4c9949;
  width: 60px;
}
hr.hr-large {
  border: 0;
  margin: 0;
  border-top: 2px solid #4c9949;
  width: 180px;
}
hr.hr-inline-block {
  display: inline-block;
}

/***************************************************************************
* PAGE HEADER
***************************************************************************/
#pageHeaderWrapper {}

#pageHeader {
  background: #fff;
  position: relative;
  z-index: 999;
  width: 100%;
}
#pageHeader.affix {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 6000;
}
@media (min-width: 768px) {
  #pageHeader {
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.4);
  }
}

/*
 * Header Top Bar
 * --------------------------------------------------
 */
#header_topbar_wrapper {
  color: #fff;
  background: #4c9949;
}
#header_topbar {
  font-size: 14px;
}
#header_topbar #header_topbar_left {
  text-align: left;
  padding-top: 5px;
  padding-bottom: 5px;
}
#header_topbar #header_topbar_right {
  float: right;
}
#header_topbar a {
  color: #fff;
  text-decoration: none;
}
#header_topbar a:hover {
  color: #fff;
  text-decoration: none;
}
#header_topbar ul.topbar_links {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
}
#header_topbar ul.topbar_links li {
  list-style: none;
  display: inline-block;
  float: left;
}
#header_topbar ul.topbar_links li:first-of-type {
  border-left: 1px solid #fff;
}
#header_topbar ul.topbar_links li:last-of-type {
  border-right: 1px solid #fff;
}
#header_topbar ul.topbar_links li + li {
  border-left: 1px solid #fff;
}
#header_topbar ul.topbar_links li a {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 5px 10px;
}
#header_topbar ul.topbar_links li a:hover {
  color: #4c9949;
  background: #fff;
  text-decoration: none;
}
@media (max-width: 767px) {
  #header_topbar #header_topbar_left,
  #header_topbar #header_topbar_right {
    float: none;
    text-align: center;
  }
}

/* -------------------------------------------------- */

#header_wrapper {
  padding-top: 15px;
  padding-bottom: 15px;
}
@media (max-width: 767px) {
  #header_wrapper {
    padding-bottom: 0;
  }
}

/*
 * Logo
 * --------------------------------------------------
 */
#header #logo {
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}
#header #logo a {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
}
@media (max-width: 767px) {
  #header #logo {
    text-align: center;
    margin-bottom: 15px;
  }
}
@media (max-width: 992px) {
  #header #logo {
    text-align: center;
    margin-bottom: 20px;
  }
}

/*
 * Search
 * --------------------------------------------------
 */
#header_search {

}
#header_search .form-control {
  border-radius: 0 !important;
}
#header_search .form-control:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}
#header_search .btn {
  border-radius: 0 !important;
}
@media (max-width: 767px) {
  #header_search {
    margin-bottom: 20px;
  }
}

/*
 * Header Phone
 * --------------------------------------------------
 */
#header_phone {
  position: relative;
  float: right;
}
#header_phone a {
  color: #000;
  text-decoration: none !important;
}
#header_phone .phone_icon {
  float: left;
  padding: 4px;
  border: 1px solid #ddd;
  margin-right: 10px;
}
#header_phone .phone_icon img {
  width: 24px;
  height: 24px;
}
#header_phone .phone_info {
  float: left;
}
#header_phone .phone_info .phone_title {
  font-size: 16px;
  font-weight: bold;
  line-height: 18px;
  text-transform: uppercase;
  text-align: center;
  color: #000;
}
#header_phone .phone_info .phone_number {
  font-size: 16px;
  font-weight: bold;
  line-height: 16px;
  text-align: center;
  color: #4c9949;
}
@media (max-width: 767px) {
  #header_phone {
    float: none;
    max-width: 162px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
  }
}

/*
 * Header Social Media
 * --------------------------------------------------
 */
ul#header_social_links {
  margin: 0;
  padding: 0;
  text-align: right;
  margin-top: 22px;
}
ul#header_social_links li {
  list-style: none;
  display: inline-block;
  margin-right: 5px;
  margin-bottom: 5px;
}
ul#header_social_links li:last-of-type {
  margin-right: 0;  
}
ul#header_social_links li a {
  display: block;
  border: none;
  border-radius: 0;
  padding: 5px;
  text-align: center;

  background: #fff;
  color: #333;
  font-size: 20px;
  line-height: 1.28571429em;

  -ms-transform: scale(1, 1);
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1)
}
ul#header_social_links li a:hover {
  -ms-transform: scale(1.1, 1.1);
  -webkit-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1)
}
ul#header_social_links li.facebook a {
  background: #3b5998;
  color: #fff;
}
ul#header_social_links li.twitter a {
  background: #00aced;
  color: #fff;
}
ul#header_social_links li.instagram a {
  background: #517fa4;
  color: #fff;
}
ul#header_social_links li.pinterest a {
  background: #cb2027;
  color: #fff;
}
ul#header_social_links li.google-plus a {
  background: #dd4b39;
  color: #fff;
}
ul#header_social_links li.youtube a {
  background: #e52d27;
  color: #fff;
}
ul#header_social_links li.skype a {
  background: #12a5f4;
  color: #fff;
}
ul#header_social_links li.linkedin a {
  background: #007bb6;
  color: #fff;
}
ul#header_social_links li.rss a {
  background: #edbe00;
  color: #fff;
}
@media (max-width: 767px) {
  ul#header_social_links {
    text-align: center;
  }
}

/*
 * Main Navbar
 * --------------------------------------------------
 */
.navbar-main {
  margin-bottom: 0;
  border: none;
  border-radius: 0px;
  background-color: #000;
  background-image: none;
  font-family: 'Roboto Condensed', sans-serif;
}
.navbar-main .navbar-brand {
  color: #fff;
  text-shadow: none;
  font-size: 14px;
  font-weight: bold;
}
.navbar-main .navbar-brand:hover,
.navbar-main .navbar-brand:focus {
  color: #4c9949;
  background-color: transparent;
}
.navbar-main .navbar-text {
  color: #fff;
}
@media (min-width: 768px) and (max-width: 991px) {
  .navbar-main .nav > li > a {
    padding: 15px 10px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .navbar-main .nav > li > a {
    padding: 15px 20px;
  }
}
@media (min-width: 1200px) {
  .navbar-main .nav > li > a {
    padding: 15px 42px;
  }
}
.navbar-main .navbar-nav > li > a {
  color: #fff;
  font-weight: normal;
  text-shadow: none;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.navbar-main .navbar-nav .divider-vertical {
  height: 50px;
  width: 0;
  margin: 0;
  border-left: 1px solid #666;
}
@media (max-width: 767px) {
  .navbar-main .navbar-nav .divider-vertical {
    display: none;
  }
}
.navbar-main .navbar-nav > li > a:hover,
.navbar-main .navbar-nav > li > a:focus {
  color: #4c9949;
  background-color: transparent;
}
.navbar-main .navbar-nav > .active > a,
.navbar-main .navbar-nav > .active > a:hover,
.navbar-main .navbar-nav > .active > a:focus {
  color: #4c9949;
  background-color: transparent;
}
.navbar-main .navbar-nav > .disabled > a,
.navbar-main .navbar-nav > .disabled > a:hover,
.navbar-main .navbar-nav > .disabled > a:focus {
  color: #ccc;
  background-color: transparent;
}
.navbar-main .navbar-nav > .open > a,
.navbar-main .navbar-nav > .open > a:hover,
.navbar-main .navbar-nav > .open > a:focus {
  color: #4c9949;
  background-color: transparent;
}
.navbar-main .navbar-toggle {
  border-color: transparent;
}
.navbar-main .navbar-toggle:hover,
.navbar-main .navbar-toggle:focus {
  background-color: transparent;
}
.navbar-main .navbar-toggle .icon-bar {
  background-color: #fff;
}
.navbar-main .navbar-toggle:hover .icon-bar,
.navbar-main .navbar-toggle:focus .icon-bar {
  background-color: #4c9949;
}
.navbar-main .navbar-collapse,
.navbar-main .navbar-form {
  border-color: #4c9949;
  border-width: 2px;
}
.navbar-main .navbar-nav .dropdown-menu {
  background-color: #fff;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  border-color: #ccc;
}
.navbar-main .navbar-nav .dropdown-menu > li > a {
  
}
.navbar-main .navbar-nav .dropdown-menu > li > a:hover,
.navbar-main .navbar-nav .dropdown-menu > li > a:focus {
  color: #555;
  background-color: #e7e7e7;
  background-image: none;
}
.navbar-main .navbar-nav .dropdown-menu > .active > a,
.navbar-main .navbar-nav .dropdown-menu > .active > a:hover,
.navbar-main .navbar-nav .dropdown-menu > .active > a:focus {
  color: #555;
  background-color: #e7e7e7;
}
.navbar-main .navbar-nav .dropdown-menu > .open > a,
.navbar-main .navbar-nav .dropdown-menu > .open > a:hover,
.navbar-main .navbar-nav .dropdown-menu > .open > a:focus {
  color: #555;
  background-color: #e7e7e7;
}

@media (max-width: 767px) {
  .navbar-main .navbar-nav > li > a {

  }
  .navbar-main .navbar-nav > li > a:hover,
  .navbar-main .navbar-nav > li > a:focus {

  }
  .navbar-main .navbar-nav > .active > a,
  .navbar-main .navbar-nav > .active > a:hover,
  .navbar-main .navbar-nav > .active > a:focus {

  }
  .navbar-main .navbar-nav > .open > a,
  .navbar-main .navbar-nav > .open > a:hover,
  .navbar-main .navbar-nav > .open > a:focus {

  }
  .navbar-main .navbar-nav .open .dropdown-menu {
    background-color: transparent;
    border: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  .navbar-main .navbar-nav .open .dropdown-menu > li > a {
    color: #fff;
  }
  .navbar-main .navbar-nav .open .dropdown-menu > li > a:hover,
  .navbar-main .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #4c9949;
    background-color: transparent;
  }
  .navbar-main .navbar-nav .open .dropdown-menu > .active > a,
  .navbar-main .navbar-nav .open .dropdown-menu > .active > a:hover,
  .navbar-main .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #4c9949;
    background-color: transparent;
  }
  .navbar-main .navbar-nav .dropdown-menu > .open > a,
  .navbar-main .navbar-nav .dropdown-menu > .open > a:hover,
  .navbar-main .navbar-nav .dropdown-menu > .open > a:focus {
    color: #4c9949;
    background-color: transparent;
  }
  .navbar-main .navbar-nav .open .dropdown-menu > .disabled > a,
  .navbar-main .navbar-nav .open .dropdown-menu > .disabled > a:hover,
  .navbar-main .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #ccc;
    background-color: transparent;
  }
}
.navbar-main .navbar-link {
  color: #fff;
}
.navbar-main .navbar-link:hover {
  color: #4c9949;
}
.navbar-main .btn-link {
  color: #fff;
}
.navbar-main .btn-link:hover,
.navbar-main .btn-link:focus {
  color: #4c9949;
}

/***************************************************************************
* PAGE TOP BAR
***************************************************************************/
#pageTopbarWrapper {}

#pageTopbar {}

/***************************************************************************
* PAGE BODY
***************************************************************************/
#pageBodyWrapper {}

#pageBody {}

/***************************************************************************
* LEFT SIDE BAR
***************************************************************************/
#leftSideBarWrapper {}

#leftSideBar {}

/***************************************************************************
* CONTENT
***************************************************************************/

#contentWrapper {}

#content {}

/*
 * Slider
 * --------------------------------------------------
 */
.swiper-container {
  width: 100%;
  height: 200px;
}
@media (min-width: 768px) {
  .swiper-container {
    height: 300px;
  }
}
@media (min-width: 992px) {
  .swiper-container {
    height: 350px;
  }
}
@media (min-width: 1200px) {
  .swiper-container {
    height: 350px;
  }
}
.swiper-slide {
  text-align: center;
  background-position: center;
  background-size: cover;
  padding: 0;

  /* Center slide content at bottom */
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: column;
}
.swiper-slide p.tagline {
  font-size: 20px;
  line-height: 20px;
  position: relative;
  margin: 0;
  padding: 10px 30px;
  background: #000;
  color: #fff;
}
.swiper-slide p.tagline::before {
  position: absolute;
  top: 0;
  left: -20px;
  display: block;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 40px 20px;
  border-color: transparent transparent #000 transparent;
}
.swiper-slide p.tagline::after {
  position: absolute;
  top: 0;
  right: -20px;
  display: block;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 40px 0 0 20px;
  border-color: transparent transparent transparent #000;
}

/*
 * Page Banner
 * --------------------------------------------------
 */
.page_banner {
  width: 100%;
  height: auto;
}
@media (min-width: 768px) {
  .page_banner {
    height: 280px;
  }
}
@media (min-width: 992px) {
  .page_banner {
    height: 280px;
  }
}
@media (min-width: 1200px) {
  .page_banner {
    height: 280px;
  }
}
.page_banner .banner_content {
  text-align: center;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 30px;

  width: 100%;
  height: 100%;
  position: relative;

  /* Center slide content vertically */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.page_banner .banner_content p {
  font-size: 20px;
}

/*
 * products_carousel
 * --------------------------------------------------
 */
#product_categories_slider {

}
#product_categories_slider .product_category {
  position: relative;
}
#product_categories_slider .product_category a {
  position: relative;
  display: block;
  text-decoration: none !important;
}
#product_categories_slider .product_category .pr_cat_img {

}
#product_categories_slider .product_category .pr_cat_name {
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: 15px;
  z-index: 100;
  font-size: 18px;
  line-height: 20px;
  font-weight: bold;
  text-align: center;
  color: #fff;
  border: 1px solid #fff;
  padding: 5px;
}
#product_categories_slider .product_category:hover .pr_cat_name:hover {
  background: #000;
  border-color: #000;
}

/*
 * products_carousel
 * --------------------------------------------------
 */
.products_carousel_wrapper {
  margin-bottom: 30px;
}
.products_carousel {

}
.products_carousel .product {
  margin: 5px;
}
.products_carousel .product .product_image_div {
  border: 1px solid #ddd;
  margin-bottom: 10px;
  overflow: hidden;
}
.products_carousel .product .product_image_div img {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.products_carousel .product .product_image_div img:hover,
.products_carousel .product .product_image_div img:focus {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.products_carousel .product .product_info_div {
  
}
.products_carousel .product .product_name,
.products_carousel .product .product_name a {
  font-size: 14px;
  color: #000;
  text-align: center;
}
.products_carousel .product .product_name a:hover {
  color: #000;
}
.products_carousel .product .product_desc {
  color: #000;
  text-align: center;
  margin-top: 5px;
}
.products_carousel .product .product_price {
  font-size: 14px;
  color: #000;
  text-align: center;
  margin-top: 5px;
}

/*
 * Solvent Recyclers / Industries
 * --------------------------------------------------
 */
.industries_wrapper {
  text-align: center;
  margin-left: -15px;
  margin-right: -15px;
}
.industries_wrapper .industry_box {
  display: inline-block;
  max-width: 190px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}

/*
 * Nexgen Tabs
 * --------------------------------------------------
 */
.nexgen_tabs_wrapper {
  margin-bottom: 20px;
}
.nexgen_tabs_wrapper .nav-tabs {
  background: url('../img/tabs-bg.jpg') 0 center;
  padding: 10px 10px 0 10px;
}
.nexgen_tabs_wrapper .nav-tabs > li > a {
  font-weight: bold;
  color: #3b7639;
  background: #f2f2f2;
  border-color: #eee #eee #ddd;
  margin-right: 4px;
}
.nexgen_tabs_wrapper .nav-tabs > li > a:hover {
  background: #f2f2f2;
}
.nexgen_tabs_wrapper .nav-tabs > li.active > a,
.nexgen_tabs_wrapper .nav-tabs > li.active > a:focus,
.nexgen_tabs_wrapper .nav-tabs > li.active > a:hover {
  color: #3b7639;
  background: #fff;
  border-bottom-color: transparent;
}
.nexgen_tabs_wrapper .tab-pane {
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  padding: 15px;
}

/*
 * Contact
 * --------------------------------------------------
 */
.contact-panel {
  border-color: #ddd;
}
.contact-panel > .panel-heading {
  color: #fff;
  background-color: #4c9949;
  border-color: #ddd;
}
#contactForm {
  
}
#contactForm [data-field="crmContact.crmContactFields[2].fieldValue"] {
  display: none;
}
/***************************************************************************
* PAGE FOOTER
***************************************************************************/
#pageFooterWrapper {}

#pageFooter {}

/*
 * Footer
 * --------------------------------------------------
 */
#footer_wrapper {
  background: #000;
  padding-top: 15px;
  padding-bottom: 15px;
}
#footer {
  color: #fff;
}

/*
 * Footer Links
 * --------------------------------------------------
 */
ul.footer_links {
  display: block;
  margin: 0;
  padding: 0;
  text-align: center;
}
ul.footer_links li {
  list-style: none;
  display: inline-block;
  color: #fff;
}
ul.footer_links li + li:before {
  display: inline-block;
  content: "|";
  color: #fff;
  padding-left: 10px;
  padding-right: 10px;
}
ul.footer_links li a {
  color: #fff;
  transition: all 0.4s ease;
}
ul.footer_links li a:hover,
ul.footer_links li a:focus {
  text-decoration: none;
  color: #4c9949;
}
@media (max-width: 767px) {
  ul.footer_links {
    text-align: center;
    margin-bottom: 20px;
  }
}

/*
 * Footer Social Media
 * --------------------------------------------------
 */
ul#footer_social_links {
  margin: 0;
  padding: 0;
  text-align: right;
}
ul#footer_social_links li {
  list-style: none;
  display: inline-block;
  margin-right: 5px;
  margin-bottom: 5px;
}
ul#footer_social_links li:last-of-type {
  margin-right: 0;  
}
ul#footer_social_links li a {
  display: block;
  border: 1px solid #fff;
  border-radius: 10px;
  padding: 5px;
  text-align: center;

  background: transparent;
  color: #fff;
  font-size: 20px;
  line-height: 1.28571429em;

  -ms-transform: scale(1, 1);
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1)
}
ul#footer_social_links li a:hover {
  -ms-transform: scale(1.1, 1.1);
  -webkit-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1)
}
@media (max-width: 767px) {
  ul#footer_social_links {
    
  }
}

/*
 * Copyright
 * --------------------------------------------------
 */
#copyright_wrapper {
  background: #4c9949;
  color: #fff;
  padding-top: 5px;
  padding-bottom: 5px;
}
#copyright {
  text-align: center;
}
@media (max-width: 767px) {
  #copyright {
    text-align: center;
  }
}

#scrollToTop {
  background: #4c9949;
}
