/*
|------------------------------------------------------------
| Import reset
|------------------------------------------------------------
*/
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
@import url(https://fonts.googleapis.com/css?family=Roboto:400,300,300italic,100,100italic,400italic,700,700italic,900,900italic&subset=latin,latin-ext);
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
a {
  text-decoration: none;
}
a:active,
a:focus,
a:hover {
  text-decoration: none;
}
/*
|------------------------------------------------------------
| Import shared less files
|------------------------------------------------------------
*/
/*
|------------------------------------------------------------
| General variables
|------------------------------------------------------------
*/
.more-arrow {
  width: 20px;
  height: 20px;
  margin-left: 2px;
  vertical-align: middle;
  line-height: 16px;
  color: #f58220;
  text-align: center;
  border: #c1c1c1 solid 1px;
  border-radius: 50%;
  background-color: white;
}
/* apply a natural box layout model to all elements */
*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
/*
|------------------------------------------------------------
| Help Classes
|------------------------------------------------------------
*/
.display-none {
  display: none;
}
.display-block {
  display: block;
}
.display-inline {
  display: inline;
}
.display-inline-block {
  display: inline-block;
}
.left {
  float: left;
}
.right {
  float: right;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
.text-justify {
  text-align: justify;
}
.bold {
  font-weight: bold;
}
.italic {
  font-style: italic;
}
.capitalize {
  text-transform: capitalize;
}
.uppercase {
  text-transform: uppercase;
}
.lowercase {
  text-transform: lowercase;
}
.fixed {
  position: fixed;
}
.no-margin {
  margin: 0;
}
.mr10 {
  margin-right: 10px;
}
.mr20 {
  margin-right: 20px;
}
.mr30 {
  margin-right: 30px;
}
.mr40 {
  margin-right: 40px;
}
.mr50 {
  margin-right: 50px;
}
.mt10 {
  margin-top: 10px;
}
.mt15 {
  margin-top: 15px;
}
.mt20 {
  margin-top: 20px;
}
.mt30 {
  margin-top: 30px;
}
.mt40 {
  margin-top: 40px;
}
.mt45 {
  margin-top: 45px;
}
.mt50 {
  margin-top: 50px;
}
.mt100 {
  margin-top: 100px;
}
.mb0 {
  margin-bottom: 0;
}
.mb10 {
  margin-bottom: 10px;
}
.mb20 {
  margin-bottom: 20px;
}
.mb30 {
  margin-bottom: 30px;
}
.mb40 {
  margin-bottom: 40px;
}
.mb45 {
  margin-bottom: 45px;
}
.mb50 {
  margin-bottom: 50px;
}
.mb100 {
  margin-bottom: 100px;
}
/*
|------------------------------------------------------------
| Clearfix
|------------------------------------------------------------
*/
.clearfix {
  zoom: 1;
}
.clearfix:before,
.clearfix:after {
  content: "\0020";
  display: block;
  height: 0;
  overflow: hidden;
}
.clearfix:after {
  clear: both;
}
/*
|------------------------------------------------------------
| Typography
|------------------------------------------------------------
*/
body,
input,
button,
textarea {
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
}
h1,
h2.inner-title {
  position: relative;
  margin-bottom: 85px;
  font-size: 39px;
  color: black;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}
h1:after,
h2.inner-title:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -20px;
  width: 56px;
  height: 2px;
  margin-left: -28px;
  background-color: #f58220;
}
h2 {
  margin-bottom: 30px;
  font-size: 30px;
  color: #0a4766;
  line-height: 37px;
  font-weight: 700;
}
h3 {
  margin-bottom: 20px;
  font-size: 25px;
  color: #0178a6;
  line-height: 32px;
  font-weight: 700;
}
h4 {
  margin-bottom: 20px;
  font-size: 22px;
  color: #0a4766;
  line-height: 27px;
  font-weight: 500;
}
h5 {
  margin-bottom: 20px;
  font-size: 20px;
  color: #0178a6;
  line-height: 22px;
  font-weight: 300;
}
h6 {
  margin-bottom: 20px;
  font-size: 18px;
  color: #f58220;
  line-height: 20px;
  font-weight: 700;
}
p {
  margin-bottom: 27px;
  font-size: 16px;
  color: #4c5f69;
  line-height: 27px;
  font-weight: 400;
}
small {
  font-size: 14px;
  opacity: 0.5;
}
strong {
  font-weight: bold;
}
em {
  font-style: italic;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}
a {
  outline: none;
}
.related-posts-title {
  color: black;
}
.entry a {
  color: #f58220;
  -webkit-transition: color 300ms ease;
  -moz-transition: color 300ms ease;
  -o-transition: color 300ms ease;
  -ms-transition: color 300ms ease;
  transition: color 300ms ease;
}
.entry a:hover {
  color: #a75108;
}
.entry .button {
  color: white;
}
.entry .button:hover {
  color: white;
}
.entry ul,
.entry ol {
  margin-bottom: 20px;
}
.entry ul li,
.entry ol li {
  font-size: 16px;
  color: #4c5f69;
  line-height: 27px;
  font-weight: 400;
}
.entry ul li {
  position: relative;
  padding-left: 15px;
}
.entry ul li:before {
  content: "\2022";
  position: absolute;
  left: 0;
  top: 1px;
  color: #f58220;
  font-size: 10px;
}
.entry ul.related-posts li {
  padding-left: 20px;
}
.entry ul.related-posts li:before {
  left: 0;
  font-size: 40px;
}
.entry ul.related-posts li.more {
  margin-left: -20px;
  text-transform: uppercase;
  font-size: 15px;
}
.entry ul.related-posts li.more:before {
  content: "";
  padding: 0;
}
.entry ul.related-posts li.more a:before {
  content: "\f107";
  padding: 5px 8px 3px 1px;
  margin-right: 10px;
  font-size: 18px;
  font-family: FontAwesome;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.entry ul.related-posts li.more a:after {
  content: "";
  display: inline-block;
  width: 80%;
  height: 1px;
  margin: 0 0 3px 10px;
  background-color: #c5c5c5;
}
.entry ul.related-posts li.more a.opened:before {
  content: "\f106";
  padding: 3px 8px 5px 1px;
}
.entry ul.related-posts li a {
  line-height: 18px;
  color: #f58220;
}
.entry ul.related-posts li a:hover {
  color: #db6a0a;
}
.entry ol {
  padding-left: 18px;
  list-style: decimal;
}
.entry .separator {
  clear: both;
  height: 20px;
  margin-bottom: 30px;
  border-bottom: #dddddd solid 2px;
}
.entry blockquote {
  position: relative;
  padding-top: 65px;
  text-align: center;
}
.entry blockquote:after,
.entry blockquote:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 30px;
  width: 24px;
  height: 21px;
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
}
.entry blockquote p {
  margin-bottom: 30px;
  font-size: 24px;
  line-height: 32px;
  font-weight: 100;
  font-style: italic;
  color: #4c5f69;
}
.entry blockquote cite {
  position: relative;
  display: block;
  font-size: 18px;
  color: #0178a6;
  font-weight: 700;
  letter-spacing: 2px;
  font-style: italic;
}
.entry blockquote cite:after {
  content: "";
  position: absolute;
  top: -15px;
  left: 50%;
  width: 56px;
  height: 2px;
  margin-left: -28px;
  background-color: #f58220;
}
.entry .alignright {
  float: right;
  margin: 0 0 30px 20px;
}
.entry .alignleft {
  float: left;
  margin: 0 30px 20px 0;
}
/*
|------------------------------------------------------------
| Buttons
|------------------------------------------------------------
*/
.button,
button.button {
  display: inline-block;
  height: 50px;
  padding: 0 30px;
  font-size: 17px;
  color: white;
  font-weight: 500;
  line-height: 50px;
  text-transform: uppercase;
  text-align: center;
  background-color: #f58220;
  border: 0;
  box-shadow: inset 0px -4px 0px 0px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  -webkit-appearance: none;
  outline: none;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  transition: all 300ms ease;
}
.button:hover,
button.button:hover {
  background-color: #c05d09;
}
.button.center,
button.button.center {
  display: block;
  width: 200px;
  margin: 0 auto;
}
.button.icn:after,
button.button.icn:after {
  content: "\f105";
  position: absolute;
  top: 50%;
  right: 5px;
  width: 25px;
  height: 25px;
  margin-top: -12.5px;
  padding-left: 2px;
  font-family: FontAwesome;
  font-size: 18px;
  line-height: 23px;
  color: #f58220;
  text-align: center;
  background-color: white;
  border-radius: 50%;
  border: 1px solid #c6c6c6;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  transition: all 300ms ease;
}
.button.icn:hover,
button.button.icn:hover {
  text-decoration: underline;
}
.button.icn:hover:after,
button.button.icn:hover:after {
  color: white;
  background-color: #f58220;
  border-color: #f58220;
}
.button.woocommerce-override,
button.button.woocommerce-override {
  display: inline-block !important;
  height: 50px !important;
  padding: 0 30px !important;
  font-size: 17px !important;
  color: white !important;
  font-weight: 500 !important;
  line-height: 50px !important;
  text-transform: uppercase !important;
  text-align: center !important;
  background-color: #f58220 !important;
  border: 0 !important;
  box-shadow: inset 0px -4px 0px 0px rgba(0, 0, 0, 0.3) !important;
  cursor: pointer !important;
  -webkit-appearance: none !important;
  outline: none;
  -webkit-border-radius: 15px !important;
  -moz-border-radius: 15px !important;
  border-radius: 15px !important;
  -moz-background-clip: padding !important;
  -webkit-background-clip: padding-box !important;
  background-clip: padding-box !important;
  -webkit-transition: all 300ms ease !important;
  -moz-transition: all 300ms ease !important;
  -o-transition: all 300ms ease !important;
  -ms-transition: all 300ms ease !important;
  transition: all 300ms ease !important;
}
.button.woocommerce-override:hover,
button.button.woocommerce-override:hover {
  background-color: #c05d09 !important;
}
.button.woocommerce-override.center,
button.button.woocommerce-override.center {
  display: block !important;
  width: 200px !important;
  margin: 0 auto  !important;
}
.button.woocommerce-override.mt30,
button.button.woocommerce-override.mt30 {
  margin: 30px auto 0 !important;
}
.wc-proceed-to-checkout .button,
.place-order .button,
.return-to-shop .button,
.woocommerce-message .button {
  display: inline-block !important;
  height: 50px !important;
  padding: 0 30px !important;
  font-size: 17px !important;
  color: white !important;
  font-weight: 500 !important;
  line-height: 50px !important;
  text-transform: uppercase !important;
  text-align: center !important;
  background-color: #f58220 !important;
  border: 0 !important;
  box-shadow: inset 0px -4px 0px 0px rgba(0, 0, 0, 0.3) !important;
  cursor: pointer !important;
  -webkit-appearance: none !important;
  outline: none;
  -webkit-border-radius: 15px !important;
  -moz-border-radius: 15px !important;
  border-radius: 15px !important;
  -moz-background-clip: padding !important;
  -webkit-background-clip: padding-box !important;
  background-clip: padding-box !important;
  -webkit-transition: all 300ms ease !important;
  -moz-transition: all 300ms ease !important;
  -o-transition: all 300ms ease !important;
  -ms-transition: all 300ms ease !important;
  transition: all 300ms ease !important;
}
.wc-proceed-to-checkout .button:hover,
.place-order .button:hover,
.return-to-shop .button:hover,
.woocommerce-message .button:hover {
  background-color: #c05d09 !important;
}
.wc-proceed-to-checkout .button.center,
.place-order .button.center,
.return-to-shop .button.center,
.woocommerce-message .button.center {
  display: block !important;
  width: 200px !important;
  margin: 0 auto  !important;
}
/*
|------------------------------------------------------------
| Import components less files
|------------------------------------------------------------
*/
/*
|------------------------------------------------------------
| Forms
|------------------------------------------------------------
*/
.form {
  clear: both;
}
.form li {
  zoom: 1;
  margin-bottom: 15px;
  padding-left: 0 !important;
  line-height: normal;
}
.form li:before,
.form li:after {
  content: "\0020";
  display: block;
  height: 0;
  overflow: hidden;
}
.form li:after {
  clear: both;
}
.form li .half {
  float: left;
  width: 50%;
}
.form li .half:first-child {
  padding-right: 15px;
}
.form li .half:last-child {
  padding-left: 15px;
}
.form li label {
  display: block;
  margin-bottom: 2px;
  font-size: 16px;
  color: #4c5f69;
  font-weight: 400;
}
.form li input[type="text"],
.form li input[type="password"],
.form li input[type="email"],
.form li input[type="phone"],
.form li input[type="tel"],
.form li textarea {
  width: 100%;
  height: 48px;
  padding: 0 15px;
  font-size: 16px;
  color: #4c5f69;
  background-color: #f3f3f3;
  border: #d0d0d0 solid 1px;
  border-radius: 2px;
  -webkit-appearance: none;
}
.form li textarea {
  height: 250px;
  padding: 15px;
  overflow: auto;
  resize: vertical;
}
.form li .button {
  margin-top: 15px;
}
.form li .button.center-position {
  margin: 15px auto 0;
  display: block;
}
.form li .button.radius {
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.form li.center-content {
  text-align: center;
}
.form li .radio-outer + label {
  display: inline-block;
  margin: 0 0 0 10px;
  font-weight: normal;
  vertical-align: middle;
  line-height: 20px;
}
.form li.captcha {
  padding-top: 5px;
}
.form li.captcha > .g-recaptcha {
  width: 300px;
  margin: 0 auto;
}
.form li .ajax-loader {
  width: 16px !important;
  height: 16px !important;
}
.woocommerce-billing-fields input[type="text"],
.woocommerce-shipping-fields input[type="text"],
.woocommerce-billing-fields input[type="password"],
.woocommerce-shipping-fields input[type="password"],
.woocommerce-billing-fields input[type="email"],
.woocommerce-shipping-fields input[type="email"],
.woocommerce-billing-fields input[type="phone"],
.woocommerce-shipping-fields input[type="phone"],
.woocommerce-billing-fields input[type="tel"],
.woocommerce-shipping-fields input[type="tel"],
.woocommerce-billing-fields textarea,
.woocommerce-shipping-fields textarea {
  width: 100%;
  height: 35px;
  padding: 0 15px;
  font-size: 16px;
  color: #4c5f69;
  background-color: #f3f3f3;
  border: #d0d0d0 solid 1px;
  border-radius: 2px;
  -webkit-appearance: none;
}
.woocommerce-billing-fields textarea,
.woocommerce-shipping-fields textarea {
  height: 250px;
  padding: 15px;
  overflow: auto;
  resize: vertical;
}
.dropdown-outer {
  display: inline-block;
  position: relative;
  vertical-align: middle;
  width: auto;
  height: 30px;
  background-color: white;
  border: #0178a6 solid 2px;
}
.dropdown-outer:before {
  content: "\f078";
  position: absolute;
  top: 6px;
  right: 7px;
  z-index: 1;
  font-family: FontAwesome;
  font-size: 12px;
  color: #4c5f69;
  -moz-opacity: 0.5;
  -khtml-opacity: 0.5;
  -webkit-opacity: 0.5;
  opacity: 0.5;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=50);
  filter: alpha(opacity=50);
}
.dropdown-outer select {
  position: relative;
  overflow: hidden;
  z-index: 2;
  width: 100%;
  height: 26px;
  padding: 0 20px 0 10px;
  color: #4c5f69;
  font-size: 14px;
  white-space: nowrap;
  text-overflow: ellipsis;
  box-shadow: none;
  background: transparent;
  background-image: none;
  border: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.dropdown-outer select option {
  color: #4c5f69;
  background-color: white;
}
.dropdown-outer select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #717171;
}
.dropdown-outer select::-ms-expand {
  display: none;
}
.dropdown-outer.wide {
  width: 100%;
  height: 40px;
  border: 0;
  border-radius: 2px;
}
.dropdown-outer.wide:before {
  top: 13px;
  right: 8px;
}
.dropdown-outer.wide select {
  height: 40px;
  color: #4c5f69;
}
.dropdown-outer.wide select option {
  color: #4c5f69;
}
.radio-outer {
  display: inline-block;
  position: relative;
  overflow: hidden;
  vertical-align: middle;
  width: 20px;
  height: 20px;
}
.radio-outer input[type=radio] {
  visibility: hidden;
  padding: 0;
  margin: 0;
  border: 0;
}
.radio-outer input[type=radio]:checked + label:after {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
}
.radio-outer label {
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  background: #c1dae7;
  border-radius: 50%;
  cursor: pointer;
}
.radio-outer label:after {
  -moz-opacity: 0;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  opacity: 0;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
  filter: alpha(opacity=0);
  content: '';
  position: absolute;
  top: 6px;
  left: 6px;
  width: 8px;
  height: 8px;
  background: #f58220;
  border-radius: 50%;
}
.check-outer {
  display: inline-block;
  position: relative;
  overflow: hidden;
  width: 18px;
  height: 18px;
  margin: 0 auto;
  vertical-align: middle;
}
.check-outer input[type=checkbox] {
  visibility: hidden;
  padding: 0;
  margin: 0;
  border: 0;
}
.check-outer input[type=checkbox]:checked + label:after {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
}
.check-outer label {
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 3px;
  cursor: pointer;
}
.check-outer label:after {
  -moz-opacity: 0;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  opacity: 0;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
  filter: alpha(opacity=0);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  content: '';
  position: absolute;
  top: 5px;
  left: 4px;
  width: 10px;
  height: 5px;
  background: transparent;
  border: 2px solid #f58220;
  border-top: none;
  border-right: none;
}
.check-outer + label {
  display: inline-block !important;
  margin: 0 0 0 5px !important;
  font-weight: 400 !important;
  line-height: 18px !important;
  vertical-align: middle !important;
}
.check-outer + label a {
  color: #4c5f69;
  text-decoration: underline;
}
.cart .quantity {
  margin-right: 20px !important;
  margin-top: 10px !important;
}
.cart .quantity label,
.cart .quantity input[type="number"] {
  width: 90px;
  padding: 10px;
  font-size: 16px;
  line-height: 27px;
}
.cart .quantity label {
  padding-left: 0;
}
.cart .quantity input[type="number"] {
  position: relative;
  text-align: left;
  background-color: #f3f3f3;
  border: 1px solid #d0d0d0;
  outline: none;
}
.cart .quantity input[type="number"]::-webkit-outer-spin-button,
.cart .quantity input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 35px;
  background: #f3f3f3 url(../img/number-input-buttons.png) no-repeat center center;
  opacity: .5;
  cursor: pointer;
}
.cart button.button {
  display: inline-block;
  height: 50px;
  padding: 0 20px;
  font-size: 17px;
  color: white;
  font-weight: 500;
  line-height: 50px;
  text-transform: uppercase;
  text-align: center;
  background-color: #f58220 !important;
  border: 0;
  border-radius: 15px;
  box-shadow: inset 0px -4px 0px 0px rgba(0, 0, 0, 0.3);
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  transition: all 300ms ease;
  cursor: pointer;
}
.cart button.button:hover {
  background-color: #c05d09 !important;
}
/*
|------------------------------------------------------------
| Import vendor less files
|------------------------------------------------------------
*/
/* icons contains all the rule declarations related to icons */
/*!
 *  Font Awesome 4.3.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
/* FONT PATH
 * -------------------------- */
@font-face {
  font-family: 'FontAwesome';
  src: url('../fonts/fontawesome-webfont.eot?v=4.3.0');
  src: url('../fonts/fontawesome-webfont.eot?#iefix&v=4.3.0') format('embedded-opentype'), url('../fonts/fontawesome-webfont.woff2?v=4.3.0') format('woff2'), url('../fonts/fontawesome-webfont.woff?v=4.3.0') format('woff'), url('../fonts/fontawesome-webfont.ttf?v=4.3.0') format('truetype'), url('../fonts/fontawesome-webfont.svg?v=4.3.0#fontawesomeregular') format('svg');
  font-weight: normal;
  font-style: normal;
}
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transform: translate(0, 0);
}
/* makes the font 33% larger relative to the icon container */
.fa-lg {
  font-size: 1.33333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}
.fa-2x {
  font-size: 2em;
}
.fa-3x {
  font-size: 3em;
}
.fa-4x {
  font-size: 4em;
}
.fa-5x {
  font-size: 5em;
}
.fa-fw {
  width: 1.28571429em;
  text-align: center;
}
.fa-ul {
  padding-left: 0;
  margin-left: 2.14285714em;
  list-style-type: none;
}
.fa-ul > li {
  position: relative;
}
.fa-li {
  position: absolute;
  left: -2.14285714em;
  width: 2.14285714em;
  top: 0.14285714em;
  text-align: center;
}
.fa-li.fa-lg {
  left: -1.85714286em;
}
.fa-border {
  padding: .2em .25em .15em;
  border: solid 0.08em #eee;
  border-radius: .1em;
}
.pull-right {
  float: right;
}
.pull-left {
  float: left;
}
.fa.pull-left {
  margin-right: .3em;
}
.fa.pull-right {
  margin-left: .3em;
}
.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}
.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}
@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
.fa-rotate-90 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.fa-rotate-180 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.fa-rotate-270 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}
.fa-flip-horizontal {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1);
}
.fa-flip-vertical {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);
  -webkit-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  transform: scale(1, -1);
}
:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  filter: none;
}
.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}
.fa-stack-1x,
.fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}
.fa-stack-1x {
  line-height: inherit;
}
.fa-stack-2x {
  font-size: 2em;
}
.fa-inverse {
  color: #fff;
}
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
.fa-glass:before {
  content: "\f000";
}
.fa-music:before {
  content: "\f001";
}
.fa-search:before {
  content: "\f002";
}
.fa-envelope-o:before {
  content: "\f003";
}
.fa-heart:before {
  content: "\f004";
}
.fa-star:before {
  content: "\f005";
}
.fa-star-o:before {
  content: "\f006";
}
.fa-user:before {
  content: "\f007";
}
.fa-film:before {
  content: "\f008";
}
.fa-th-large:before {
  content: "\f009";
}
.fa-th:before {
  content: "\f00a";
}
.fa-th-list:before {
  content: "\f00b";
}
.fa-check:before {
  content: "\f00c";
}
.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: "\f00d";
}
.fa-search-plus:before {
  content: "\f00e";
}
.fa-search-minus:before {
  content: "\f010";
}
.fa-power-off:before {
  content: "\f011";
}
.fa-signal:before {
  content: "\f012";
}
.fa-gear:before,
.fa-cog:before {
  content: "\f013";
}
.fa-trash-o:before {
  content: "\f014";
}
.fa-home:before {
  content: "\f015";
}
.fa-file-o:before {
  content: "\f016";
}
.fa-clock-o:before {
  content: "\f017";
}
.fa-road:before {
  content: "\f018";
}
.fa-download:before {
  content: "\f019";
}
.fa-arrow-circle-o-down:before {
  content: "\f01a";
}
.fa-arrow-circle-o-up:before {
  content: "\f01b";
}
.fa-inbox:before {
  content: "\f01c";
}
.fa-play-circle-o:before {
  content: "\f01d";
}
.fa-rotate-right:before,
.fa-repeat:before {
  content: "\f01e";
}
.fa-refresh:before {
  content: "\f021";
}
.fa-list-alt:before {
  content: "\f022";
}
.fa-lock:before {
  content: "\f023";
}
.fa-flag:before {
  content: "\f024";
}
.fa-headphones:before {
  content: "\f025";
}
.fa-volume-off:before {
  content: "\f026";
}
.fa-volume-down:before {
  content: "\f027";
}
.fa-volume-up:before {
  content: "\f028";
}
.fa-qrcode:before {
  content: "\f029";
}
.fa-barcode:before {
  content: "\f02a";
}
.fa-tag:before {
  content: "\f02b";
}
.fa-tags:before {
  content: "\f02c";
}
.fa-book:before {
  content: "\f02d";
}
.fa-bookmark:before {
  content: "\f02e";
}
.fa-print:before {
  content: "\f02f";
}
.fa-camera:before {
  content: "\f030";
}
.fa-font:before {
  content: "\f031";
}
.fa-bold:before {
  content: "\f032";
}
.fa-italic:before {
  content: "\f033";
}
.fa-text-height:before {
  content: "\f034";
}
.fa-text-width:before {
  content: "\f035";
}
.fa-align-left:before {
  content: "\f036";
}
.fa-align-center:before {
  content: "\f037";
}
.fa-align-right:before {
  content: "\f038";
}
.fa-align-justify:before {
  content: "\f039";
}
.fa-list:before {
  content: "\f03a";
}
.fa-dedent:before,
.fa-outdent:before {
  content: "\f03b";
}
.fa-indent:before {
  content: "\f03c";
}
.fa-video-camera:before {
  content: "\f03d";
}
.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: "\f03e";
}
.fa-pencil:before {
  content: "\f040";
}
.fa-map-marker:before {
  content: "\f041";
}
.fa-adjust:before {
  content: "\f042";
}
.fa-tint:before {
  content: "\f043";
}
.fa-edit:before,
.fa-pencil-square-o:before {
  content: "\f044";
}
.fa-share-square-o:before {
  content: "\f045";
}
.fa-check-square-o:before {
  content: "\f046";
}
.fa-arrows:before {
  content: "\f047";
}
.fa-step-backward:before {
  content: "\f048";
}
.fa-fast-backward:before {
  content: "\f049";
}
.fa-backward:before {
  content: "\f04a";
}
.fa-play:before {
  content: "\f04b";
}
.fa-pause:before {
  content: "\f04c";
}
.fa-stop:before {
  content: "\f04d";
}
.fa-forward:before {
  content: "\f04e";
}
.fa-fast-forward:before {
  content: "\f050";
}
.fa-step-forward:before {
  content: "\f051";
}
.fa-eject:before {
  content: "\f052";
}
.fa-chevron-left:before {
  content: "\f053";
}
.fa-chevron-right:before {
  content: "\f054";
}
.fa-plus-circle:before {
  content: "\f055";
}
.fa-minus-circle:before {
  content: "\f056";
}
.fa-times-circle:before {
  content: "\f057";
}
.fa-check-circle:before {
  content: "\f058";
}
.fa-question-circle:before {
  content: "\f059";
}
.fa-info-circle:before {
  content: "\f05a";
}
.fa-crosshairs:before {
  content: "\f05b";
}
.fa-times-circle-o:before {
  content: "\f05c";
}
.fa-check-circle-o:before {
  content: "\f05d";
}
.fa-ban:before {
  content: "\f05e";
}
.fa-arrow-left:before {
  content: "\f060";
}
.fa-arrow-right:before {
  content: "\f061";
}
.fa-arrow-up:before {
  content: "\f062";
}
.fa-arrow-down:before {
  content: "\f063";
}
.fa-mail-forward:before,
.fa-share:before {
  content: "\f064";
}
.fa-expand:before {
  content: "\f065";
}
.fa-compress:before {
  content: "\f066";
}
.fa-plus:before {
  content: "\f067";
}
.fa-minus:before {
  content: "\f068";
}
.fa-asterisk:before {
  content: "\f069";
}
.fa-exclamation-circle:before {
  content: "\f06a";
}
.fa-gift:before {
  content: "\f06b";
}
.fa-leaf:before {
  content: "\f06c";
}
.fa-fire:before {
  content: "\f06d";
}
.fa-eye:before {
  content: "\f06e";
}
.fa-eye-slash:before {
  content: "\f070";
}
.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "\f071";
}
.fa-plane:before {
  content: "\f072";
}
.fa-calendar:before {
  content: "\f073";
}
.fa-random:before {
  content: "\f074";
}
.fa-comment:before {
  content: "\f075";
}
.fa-magnet:before {
  content: "\f076";
}
.fa-chevron-up:before {
  content: "\f077";
}
.fa-chevron-down:before {
  content: "\f078";
}
.fa-retweet:before {
  content: "\f079";
}
.fa-shopping-cart:before {
  content: "\f07a";
}
.fa-folder:before {
  content: "\f07b";
}
.fa-folder-open:before {
  content: "\f07c";
}
.fa-arrows-v:before {
  content: "\f07d";
}
.fa-arrows-h:before {
  content: "\f07e";
}
.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: "\f080";
}
.fa-twitter-square:before {
  content: "\f081";
}
.fa-facebook-square:before {
  content: "\f082";
}
.fa-camera-retro:before {
  content: "\f083";
}
.fa-key:before {
  content: "\f084";
}
.fa-gears:before,
.fa-cogs:before {
  content: "\f085";
}
.fa-comments:before {
  content: "\f086";
}
.fa-thumbs-o-up:before {
  content: "\f087";
}
.fa-thumbs-o-down:before {
  content: "\f088";
}
.fa-star-half:before {
  content: "\f089";
}
.fa-heart-o:before {
  content: "\f08a";
}
.fa-sign-out:before {
  content: "\f08b";
}
.fa-linkedin-square:before {
  content: "\f08c";
}
.fa-thumb-tack:before {
  content: "\f08d";
}
.fa-external-link:before {
  content: "\f08e";
}
.fa-sign-in:before {
  content: "\f090";
}
.fa-trophy:before {
  content: "\f091";
}
.fa-github-square:before {
  content: "\f092";
}
.fa-upload:before {
  content: "\f093";
}
.fa-lemon-o:before {
  content: "\f094";
}
.fa-phone:before {
  content: "\f095";
}
.fa-square-o:before {
  content: "\f096";
}
.fa-bookmark-o:before {
  content: "\f097";
}
.fa-phone-square:before {
  content: "\f098";
}
.fa-twitter:before {
  content: "\f099";
}
.fa-facebook-f:before,
.fa-facebook:before {
  content: "\f09a";
}
.fa-github:before {
  content: "\f09b";
}
.fa-unlock:before {
  content: "\f09c";
}
.fa-credit-card:before {
  content: "\f09d";
}
.fa-rss:before {
  content: "\f09e";
}
.fa-hdd-o:before {
  content: "\f0a0";
}
.fa-bullhorn:before {
  content: "\f0a1";
}
.fa-bell:before {
  content: "\f0f3";
}
.fa-certificate:before {
  content: "\f0a3";
}
.fa-hand-o-right:before {
  content: "\f0a4";
}
.fa-hand-o-left:before {
  content: "\f0a5";
}
.fa-hand-o-up:before {
  content: "\f0a6";
}
.fa-hand-o-down:before {
  content: "\f0a7";
}
.fa-arrow-circle-left:before {
  content: "\f0a8";
}
.fa-arrow-circle-right:before {
  content: "\f0a9";
}
.fa-arrow-circle-up:before {
  content: "\f0aa";
}
.fa-arrow-circle-down:before {
  content: "\f0ab";
}
.fa-globe:before {
  content: "\f0ac";
}
.fa-wrench:before {
  content: "\f0ad";
}
.fa-tasks:before {
  content: "\f0ae";
}
.fa-filter:before {
  content: "\f0b0";
}
.fa-briefcase:before {
  content: "\f0b1";
}
.fa-arrows-alt:before {
  content: "\f0b2";
}
.fa-group:before,
.fa-users:before {
  content: "\f0c0";
}
.fa-chain:before,
.fa-link:before {
  content: "\f0c1";
}
.fa-cloud:before {
  content: "\f0c2";
}
.fa-flask:before {
  content: "\f0c3";
}
.fa-cut:before,
.fa-scissors:before {
  content: "\f0c4";
}
.fa-copy:before,
.fa-files-o:before {
  content: "\f0c5";
}
.fa-paperclip:before {
  content: "\f0c6";
}
.fa-save:before,
.fa-floppy-o:before {
  content: "\f0c7";
}
.fa-square:before {
  content: "\f0c8";
}
.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: "\f0c9";
}
.fa-list-ul:before {
  content: "\f0ca";
}
.fa-list-ol:before {
  content: "\f0cb";
}
.fa-strikethrough:before {
  content: "\f0cc";
}
.fa-underline:before {
  content: "\f0cd";
}
.fa-table:before {
  content: "\f0ce";
}
.fa-magic:before {
  content: "\f0d0";
}
.fa-truck:before {
  content: "\f0d1";
}
.fa-pinterest:before {
  content: "\f0d2";
}
.fa-pinterest-square:before {
  content: "\f0d3";
}
.fa-google-plus-square:before {
  content: "\f0d4";
}
.fa-google-plus:before {
  content: "\f0d5";
}
.fa-money:before {
  content: "\f0d6";
}
.fa-caret-down:before {
  content: "\f0d7";
}
.fa-caret-up:before {
  content: "\f0d8";
}
.fa-caret-left:before {
  content: "\f0d9";
}
.fa-caret-right:before {
  content: "\f0da";
}
.fa-columns:before {
  content: "\f0db";
}
.fa-unsorted:before,
.fa-sort:before {
  content: "\f0dc";
}
.fa-sort-down:before,
.fa-sort-desc:before {
  content: "\f0dd";
}
.fa-sort-up:before,
.fa-sort-asc:before {
  content: "\f0de";
}
.fa-envelope:before {
  content: "\f0e0";
}
.fa-linkedin:before {
  content: "\f0e1";
}
.fa-rotate-left:before,
.fa-undo:before {
  content: "\f0e2";
}
.fa-legal:before,
.fa-gavel:before {
  content: "\f0e3";
}
.fa-dashboard:before,
.fa-tachometer:before {
  content: "\f0e4";
}
.fa-comment-o:before {
  content: "\f0e5";
}
.fa-comments-o:before {
  content: "\f0e6";
}
.fa-flash:before,
.fa-bolt:before {
  content: "\f0e7";
}
.fa-sitemap:before {
  content: "\f0e8";
}
.fa-umbrella:before {
  content: "\f0e9";
}
.fa-paste:before,
.fa-clipboard:before {
  content: "\f0ea";
}
.fa-lightbulb-o:before {
  content: "\f0eb";
}
.fa-exchange:before {
  content: "\f0ec";
}
.fa-cloud-download:before {
  content: "\f0ed";
}
.fa-cloud-upload:before {
  content: "\f0ee";
}
.fa-user-md:before {
  content: "\f0f0";
}
.fa-stethoscope:before {
  content: "\f0f1";
}
.fa-suitcase:before {
  content: "\f0f2";
}
.fa-bell-o:before {
  content: "\f0a2";
}
.fa-coffee:before {
  content: "\f0f4";
}
.fa-cutlery:before {
  content: "\f0f5";
}
.fa-file-text-o:before {
  content: "\f0f6";
}
.fa-building-o:before {
  content: "\f0f7";
}
.fa-hospital-o:before {
  content: "\f0f8";
}
.fa-ambulance:before {
  content: "\f0f9";
}
.fa-medkit:before {
  content: "\f0fa";
}
.fa-fighter-jet:before {
  content: "\f0fb";
}
.fa-beer:before {
  content: "\f0fc";
}
.fa-h-square:before {
  content: "\f0fd";
}
.fa-plus-square:before {
  content: "\f0fe";
}
.fa-angle-double-left:before {
  content: "\f100";
}
.fa-angle-double-right:before {
  content: "\f101";
}
.fa-angle-double-up:before {
  content: "\f102";
}
.fa-angle-double-down:before {
  content: "\f103";
}
.fa-angle-left:before {
  content: "\f104";
}
.fa-angle-right:before {
  content: "\f105";
}
.fa-angle-up:before {
  content: "\f106";
}
.fa-angle-down:before {
  content: "\f107";
}
.fa-desktop:before {
  content: "\f108";
}
.fa-laptop:before {
  content: "\f109";
}
.fa-tablet:before {
  content: "\f10a";
}
.fa-mobile-phone:before,
.fa-mobile:before {
  content: "\f10b";
}
.fa-circle-o:before {
  content: "\f10c";
}
.fa-quote-left:before {
  content: "\f10d";
}
.fa-quote-right:before {
  content: "\f10e";
}
.fa-spinner:before {
  content: "\f110";
}
.fa-circle:before {
  content: "\f111";
}
.fa-mail-reply:before,
.fa-reply:before {
  content: "\f112";
}
.fa-github-alt:before {
  content: "\f113";
}
.fa-folder-o:before {
  content: "\f114";
}
.fa-folder-open-o:before {
  content: "\f115";
}
.fa-smile-o:before {
  content: "\f118";
}
.fa-frown-o:before {
  content: "\f119";
}
.fa-meh-o:before {
  content: "\f11a";
}
.fa-gamepad:before {
  content: "\f11b";
}
.fa-keyboard-o:before {
  content: "\f11c";
}
.fa-flag-o:before {
  content: "\f11d";
}
.fa-flag-checkered:before {
  content: "\f11e";
}
.fa-terminal:before {
  content: "\f120";
}
.fa-code:before {
  content: "\f121";
}
.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "\f122";
}
.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "\f123";
}
.fa-location-arrow:before {
  content: "\f124";
}
.fa-crop:before {
  content: "\f125";
}
.fa-code-fork:before {
  content: "\f126";
}
.fa-unlink:before,
.fa-chain-broken:before {
  content: "\f127";
}
.fa-question:before {
  content: "\f128";
}
.fa-info:before {
  content: "\f129";
}
.fa-exclamation:before {
  content: "\f12a";
}
.fa-superscript:before {
  content: "\f12b";
}
.fa-subscript:before {
  content: "\f12c";
}
.fa-eraser:before {
  content: "\f12d";
}
.fa-puzzle-piece:before {
  content: "\f12e";
}
.fa-microphone:before {
  content: "\f130";
}
.fa-microphone-slash:before {
  content: "\f131";
}
.fa-shield:before {
  content: "\f132";
}
.fa-calendar-o:before {
  content: "\f133";
}
.fa-fire-extinguisher:before {
  content: "\f134";
}
.fa-rocket:before {
  content: "\f135";
}
.fa-maxcdn:before {
  content: "\f136";
}
.fa-chevron-circle-left:before {
  content: "\f137";
}
.fa-chevron-circle-right:before {
  content: "\f138";
}
.fa-chevron-circle-up:before {
  content: "\f139";
}
.fa-chevron-circle-down:before {
  content: "\f13a";
}
.fa-html5:before {
  content: "\f13b";
}
.fa-css3:before {
  content: "\f13c";
}
.fa-anchor:before {
  content: "\f13d";
}
.fa-unlock-alt:before {
  content: "\f13e";
}
.fa-bullseye:before {
  content: "\f140";
}
.fa-ellipsis-h:before {
  content: "\f141";
}
.fa-ellipsis-v:before {
  content: "\f142";
}
.fa-rss-square:before {
  content: "\f143";
}
.fa-play-circle:before {
  content: "\f144";
}
.fa-ticket:before {
  content: "\f145";
}
.fa-minus-square:before {
  content: "\f146";
}
.fa-minus-square-o:before {
  content: "\f147";
}
.fa-level-up:before {
  content: "\f148";
}
.fa-level-down:before {
  content: "\f149";
}
.fa-check-square:before {
  content: "\f14a";
}
.fa-pencil-square:before {
  content: "\f14b";
}
.fa-external-link-square:before {
  content: "\f14c";
}
.fa-share-square:before {
  content: "\f14d";
}
.fa-compass:before {
  content: "\f14e";
}
.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "\f150";
}
.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "\f151";
}
.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "\f152";
}
.fa-euro:before,
.fa-eur:before {
  content: "\f153";
}
.fa-gbp:before {
  content: "\f154";
}
.fa-dollar:before,
.fa-usd:before {
  content: "\f155";
}
.fa-rupee:before,
.fa-inr:before {
  content: "\f156";
}
.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "\f157";
}
.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "\f158";
}
.fa-won:before,
.fa-krw:before {
  content: "\f159";
}
.fa-bitcoin:before,
.fa-btc:before {
  content: "\f15a";
}
.fa-file:before {
  content: "\f15b";
}
.fa-file-text:before {
  content: "\f15c";
}
.fa-sort-alpha-asc:before {
  content: "\f15d";
}
.fa-sort-alpha-desc:before {
  content: "\f15e";
}
.fa-sort-amount-asc:before {
  content: "\f160";
}
.fa-sort-amount-desc:before {
  content: "\f161";
}
.fa-sort-numeric-asc:before {
  content: "\f162";
}
.fa-sort-numeric-desc:before {
  content: "\f163";
}
.fa-thumbs-up:before {
  content: "\f164";
}
.fa-thumbs-down:before {
  content: "\f165";
}
.fa-youtube-square:before {
  content: "\f166";
}
.fa-youtube:before {
  content: "\f167";
}
.fa-xing:before {
  content: "\f168";
}
.fa-xing-square:before {
  content: "\f169";
}
.fa-youtube-play:before {
  content: "\f16a";
}
.fa-dropbox:before {
  content: "\f16b";
}
.fa-stack-overflow:before {
  content: "\f16c";
}
.fa-instagram:before {
  content: "\f16d";
}
.fa-flickr:before {
  content: "\f16e";
}
.fa-adn:before {
  content: "\f170";
}
.fa-bitbucket:before {
  content: "\f171";
}
.fa-bitbucket-square:before {
  content: "\f172";
}
.fa-tumblr:before {
  content: "\f173";
}
.fa-tumblr-square:before {
  content: "\f174";
}
.fa-long-arrow-down:before {
  content: "\f175";
}
.fa-long-arrow-up:before {
  content: "\f176";
}
.fa-long-arrow-left:before {
  content: "\f177";
}
.fa-long-arrow-right:before {
  content: "\f178";
}
.fa-apple:before {
  content: "\f179";
}
.fa-windows:before {
  content: "\f17a";
}
.fa-android:before {
  content: "\f17b";
}
.fa-linux:before {
  content: "\f17c";
}
.fa-dribbble:before {
  content: "\f17d";
}
.fa-skype:before {
  content: "\f17e";
}
.fa-foursquare:before {
  content: "\f180";
}
.fa-trello:before {
  content: "\f181";
}
.fa-female:before {
  content: "\f182";
}
.fa-male:before {
  content: "\f183";
}
.fa-gittip:before,
.fa-gratipay:before {
  content: "\f184";
}
.fa-sun-o:before {
  content: "\f185";
}
.fa-moon-o:before {
  content: "\f186";
}
.fa-archive:before {
  content: "\f187";
}
.fa-bug:before {
  content: "\f188";
}
.fa-vk:before {
  content: "\f189";
}
.fa-weibo:before {
  content: "\f18a";
}
.fa-renren:before {
  content: "\f18b";
}
.fa-pagelines:before {
  content: "\f18c";
}
.fa-stack-exchange:before {
  content: "\f18d";
}
.fa-arrow-circle-o-right:before {
  content: "\f18e";
}
.fa-arrow-circle-o-left:before {
  content: "\f190";
}
.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "\f191";
}
.fa-dot-circle-o:before {
  content: "\f192";
}
.fa-wheelchair:before {
  content: "\f193";
}
.fa-vimeo-square:before {
  content: "\f194";
}
.fa-turkish-lira:before,
.fa-try:before {
  content: "\f195";
}
.fa-plus-square-o:before {
  content: "\f196";
}
.fa-space-shuttle:before {
  content: "\f197";
}
.fa-slack:before {
  content: "\f198";
}
.fa-envelope-square:before {
  content: "\f199";
}
.fa-wordpress:before {
  content: "\f19a";
}
.fa-openid:before {
  content: "\f19b";
}
.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: "\f19c";
}
.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: "\f19d";
}
.fa-yahoo:before {
  content: "\f19e";
}
.fa-google:before {
  content: "\f1a0";
}
.fa-reddit:before {
  content: "\f1a1";
}
.fa-reddit-square:before {
  content: "\f1a2";
}
.fa-stumbleupon-circle:before {
  content: "\f1a3";
}
.fa-stumbleupon:before {
  content: "\f1a4";
}
.fa-delicious:before {
  content: "\f1a5";
}
.fa-digg:before {
  content: "\f1a6";
}
.fa-pied-piper:before {
  content: "\f1a7";
}
.fa-pied-piper-alt:before {
  content: "\f1a8";
}
.fa-drupal:before {
  content: "\f1a9";
}
.fa-joomla:before {
  content: "\f1aa";
}
.fa-language:before {
  content: "\f1ab";
}
.fa-fax:before {
  content: "\f1ac";
}
.fa-building:before {
  content: "\f1ad";
}
.fa-child:before {
  content: "\f1ae";
}
.fa-paw:before {
  content: "\f1b0";
}
.fa-spoon:before {
  content: "\f1b1";
}
.fa-cube:before {
  content: "\f1b2";
}
.fa-cubes:before {
  content: "\f1b3";
}
.fa-behance:before {
  content: "\f1b4";
}
.fa-behance-square:before {
  content: "\f1b5";
}
.fa-steam:before {
  content: "\f1b6";
}
.fa-steam-square:before {
  content: "\f1b7";
}
.fa-recycle:before {
  content: "\f1b8";
}
.fa-automobile:before,
.fa-car:before {
  content: "\f1b9";
}
.fa-cab:before,
.fa-taxi:before {
  content: "\f1ba";
}
.fa-tree:before {
  content: "\f1bb";
}
.fa-spotify:before {
  content: "\f1bc";
}
.fa-deviantart:before {
  content: "\f1bd";
}
.fa-soundcloud:before {
  content: "\f1be";
}
.fa-database:before {
  content: "\f1c0";
}
.fa-file-pdf-o:before {
  content: "\f1c1";
}
.fa-file-word-o:before {
  content: "\f1c2";
}
.fa-file-excel-o:before {
  content: "\f1c3";
}
.fa-file-powerpoint-o:before {
  content: "\f1c4";
}
.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: "\f1c5";
}
.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: "\f1c6";
}
.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: "\f1c7";
}
.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: "\f1c8";
}
.fa-file-code-o:before {
  content: "\f1c9";
}
.fa-vine:before {
  content: "\f1ca";
}
.fa-codepen:before {
  content: "\f1cb";
}
.fa-jsfiddle:before {
  content: "\f1cc";
}
.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: "\f1cd";
}
.fa-circle-o-notch:before {
  content: "\f1ce";
}
.fa-ra:before,
.fa-rebel:before {
  content: "\f1d0";
}
.fa-ge:before,
.fa-empire:before {
  content: "\f1d1";
}
.fa-git-square:before {
  content: "\f1d2";
}
.fa-git:before {
  content: "\f1d3";
}
.fa-hacker-news:before {
  content: "\f1d4";
}
.fa-tencent-weibo:before {
  content: "\f1d5";
}
.fa-qq:before {
  content: "\f1d6";
}
.fa-wechat:before,
.fa-weixin:before {
  content: "\f1d7";
}
.fa-send:before,
.fa-paper-plane:before {
  content: "\f1d8";
}
.fa-send-o:before,
.fa-paper-plane-o:before {
  content: "\f1d9";
}
.fa-history:before {
  content: "\f1da";
}
.fa-genderless:before,
.fa-circle-thin:before {
  content: "\f1db";
}
.fa-header:before {
  content: "\f1dc";
}
.fa-paragraph:before {
  content: "\f1dd";
}
.fa-sliders:before {
  content: "\f1de";
}
.fa-share-alt:before {
  content: "\f1e0";
}
.fa-share-alt-square:before {
  content: "\f1e1";
}
.fa-bomb:before {
  content: "\f1e2";
}
.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: "\f1e3";
}
.fa-tty:before {
  content: "\f1e4";
}
.fa-binoculars:before {
  content: "\f1e5";
}
.fa-plug:before {
  content: "\f1e6";
}
.fa-slideshare:before {
  content: "\f1e7";
}
.fa-twitch:before {
  content: "\f1e8";
}
.fa-yelp:before {
  content: "\f1e9";
}
.fa-newspaper-o:before {
  content: "\f1ea";
}
.fa-wifi:before {
  content: "\f1eb";
}
.fa-calculator:before {
  content: "\f1ec";
}
.fa-paypal:before {
  content: "\f1ed";
}
.fa-google-wallet:before {
  content: "\f1ee";
}
.fa-cc-visa:before {
  content: "\f1f0";
}
.fa-cc-mastercard:before {
  content: "\f1f1";
}
.fa-cc-discover:before {
  content: "\f1f2";
}
.fa-cc-amex:before {
  content: "\f1f3";
}
.fa-cc-paypal:before {
  content: "\f1f4";
}
.fa-cc-stripe:before {
  content: "\f1f5";
}
.fa-bell-slash:before {
  content: "\f1f6";
}
.fa-bell-slash-o:before {
  content: "\f1f7";
}
.fa-trash:before {
  content: "\f1f8";
}
.fa-copyright:before {
  content: "\f1f9";
}
.fa-at:before {
  content: "\f1fa";
}
.fa-eyedropper:before {
  content: "\f1fb";
}
.fa-paint-brush:before {
  content: "\f1fc";
}
.fa-birthday-cake:before {
  content: "\f1fd";
}
.fa-area-chart:before {
  content: "\f1fe";
}
.fa-pie-chart:before {
  content: "\f200";
}
.fa-line-chart:before {
  content: "\f201";
}
.fa-lastfm:before {
  content: "\f202";
}
.fa-lastfm-square:before {
  content: "\f203";
}
.fa-toggle-off:before {
  content: "\f204";
}
.fa-toggle-on:before {
  content: "\f205";
}
.fa-bicycle:before {
  content: "\f206";
}
.fa-bus:before {
  content: "\f207";
}
.fa-ioxhost:before {
  content: "\f208";
}
.fa-angellist:before {
  content: "\f209";
}
.fa-cc:before {
  content: "\f20a";
}
.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: "\f20b";
}
.fa-meanpath:before {
  content: "\f20c";
}
.fa-buysellads:before {
  content: "\f20d";
}
.fa-connectdevelop:before {
  content: "\f20e";
}
.fa-dashcube:before {
  content: "\f210";
}
.fa-forumbee:before {
  content: "\f211";
}
.fa-leanpub:before {
  content: "\f212";
}
.fa-sellsy:before {
  content: "\f213";
}
.fa-shirtsinbulk:before {
  content: "\f214";
}
.fa-simplybuilt:before {
  content: "\f215";
}
.fa-skyatlas:before {
  content: "\f216";
}
.fa-cart-plus:before {
  content: "\f217";
}
.fa-cart-arrow-down:before {
  content: "\f218";
}
.fa-diamond:before {
  content: "\f219";
}
.fa-ship:before {
  content: "\f21a";
}
.fa-user-secret:before {
  content: "\f21b";
}
.fa-motorcycle:before {
  content: "\f21c";
}
.fa-street-view:before {
  content: "\f21d";
}
.fa-heartbeat:before {
  content: "\f21e";
}
.fa-venus:before {
  content: "\f221";
}
.fa-mars:before {
  content: "\f222";
}
.fa-mercury:before {
  content: "\f223";
}
.fa-transgender:before {
  content: "\f224";
}
.fa-transgender-alt:before {
  content: "\f225";
}
.fa-venus-double:before {
  content: "\f226";
}
.fa-mars-double:before {
  content: "\f227";
}
.fa-venus-mars:before {
  content: "\f228";
}
.fa-mars-stroke:before {
  content: "\f229";
}
.fa-mars-stroke-v:before {
  content: "\f22a";
}
.fa-mars-stroke-h:before {
  content: "\f22b";
}
.fa-neuter:before {
  content: "\f22c";
}
.fa-facebook-official:before {
  content: "\f230";
}
.fa-pinterest-p:before {
  content: "\f231";
}
.fa-whatsapp:before {
  content: "\f232";
}
.fa-server:before {
  content: "\f233";
}
.fa-user-plus:before {
  content: "\f234";
}
.fa-user-times:before {
  content: "\f235";
}
.fa-hotel:before,
.fa-bed:before {
  content: "\f236";
}
.fa-viacoin:before {
  content: "\f237";
}
.fa-train:before {
  content: "\f238";
}
.fa-subway:before {
  content: "\f239";
}
.fa-medium:before {
  content: "\f23a";
}
/*
GENERAL 
------------------------------------------*/
html,
body {
  position: relative;
  overflow-x: hidden;
}
.wrapper {
  width: 1000px;
  margin: 0 auto;
}
.wrapper.narrow {
  width: 800px;
}
.outer {
  padding-top: 60px;
}
.top-header {
  zoom: 1;
  padding: 30px;
}
.top-header:before,
.top-header:after {
  content: "\0020";
  display: block;
  height: 0;
  overflow: hidden;
}
.top-header:after {
  clear: both;
}
.top-header .logo {
  float: left;
  width: 280px;
  height: 71px;
  margin: 4px 0 0 10px;
  text-indent: -9999px;
  background: url(../img/logo-header.png) 0 50% no-repeat;
  background-size: contain;
}
.search {
  float: right;
  padding: 10px;
  margin: 17px 0;
  border: 1px solid #e1e1e1;
}
.search input[type="search"] {
  min-width: 220px;
  font-size: 14px;
  color: #4c5f69;
  background-color: transparent;
  border: 0;
  outline: none;
  -webkit-appearance: none;
}
.search input[type="search"]::-webkit-input-placeholder {
  color: #bababa;
}
.search input[type="search"]:-moz-placeholder {
  color: #bababa;
}
.search input[type="search"]::-moz-placeholder {
  color: #bababa;
}
.search input[type="search"]:-ms-input-placeholder {
  color: #bababa;
}
.search button {
  float: right;
  font-size: 14px;
  color: #bababa;
  background-color: transparent;
  border: 0;
  outline: none;
  cursor: pointer;
}
/*
HEADER 
------------------------------------------*/
header {
  position: absolute;
  z-index: 1400;
  height: 60px;
  width: 100%;
  background-color: #f58220;
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.24);
  zoom: 1;
}
header:before,
header:after {
  content: "\0020";
  display: block;
  height: 0;
  overflow: hidden;
}
header:after {
  clear: both;
}
header .logo {
  display: none;
  float: left;
  width: 187px;
  height: 50px;
  margin: 4px 0 0 10px;
  text-indent: -9999px;
  background: url(../img/logo.png) 0 50% no-repeat;
}
header nav .mobile-menu {
  display: none;
  cursor: pointer;
  padding: 27px 47px 33px 14px;
}
header nav .mobile-menu span,
header nav .mobile-menu span:before,
header nav .mobile-menu span:after {
  content: '';
  position: absolute;
  display: block;
  height: 5px;
  width: 35px;
  cursor: pointer;
  background: white;
  border-radius: 1px;
}
header nav .mobile-menu span:before {
  top: -10px;
}
header nav .mobile-menu span:after {
  bottom: -10px;
}
header nav .mobile-menu span,
header nav .mobile-menu span:before,
header nav .mobile-menu span:after {
  -webkit-transition: all 200ms ease-in-out;
  -moz-transition: all 200ms ease-in-out;
  -o-transition: all 200ms ease-in-out;
  -ms-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}
header nav .mobile-menu.active span {
  background-color: transparent;
}
header nav .mobile-menu.active span:before,
header nav .mobile-menu.active span:after {
  top: 0;
}
header nav .mobile-menu.active span:before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
}
header nav .mobile-menu.active span:after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
}
header nav ul {
  zoom: 1;
  text-align: center;
}
header nav ul:before,
header nav ul:after {
  content: "\0020";
  display: block;
  height: 0;
  overflow: hidden;
}
header nav ul:after {
  clear: both;
}
header nav ul li {
  display: inline-block;
  position: relative;
  font-size: 14px;
  color: white;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 60px;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  transition: all 300ms ease;
}
header nav ul li a {
  display: block;
  padding: 0 27px;
  color: white;
  -webkit-transition: color 300ms ease;
  -moz-transition: color 300ms ease;
  -o-transition: color 300ms ease;
  -ms-transition: color 300ms ease;
  transition: color 300ms ease;
}
header nav ul li a .fa {
  margin-right: 5px;
  font-size: 16px;
  color: white;
}
header nav ul li a:hover {
  color: #fcd4b2;
  -webkit-transition: color 300ms ease;
  -moz-transition: color 300ms ease;
  -o-transition: color 300ms ease;
  -ms-transition: color 300ms ease;
  transition: color 300ms ease;
}
header nav ul li:first-child a {
  padding-left: 0;
}
header nav ul li:last-child a {
  padding-right: 0;
}
header nav ul li.active a {
  position: relative;
}
header nav ul li.active a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 14px;
  width: 100%;
  height: 2px;
  background-color: white;
}
header nav ul li.login {
  border-left: rgba(255, 255, 255, 0.5) solid 1px;
}
header nav ul li.login i {
  -webkit-transition: color 300ms ease;
  -moz-transition: color 300ms ease;
  -o-transition: color 300ms ease;
  -ms-transition: color 300ms ease;
  transition: color 300ms ease;
}
header nav ul li.login > ul {
  width: 101%;
}
header nav ul li.login .active {
  color: #fcd4b2;
}
header nav ul li.login .active i {
  color: #fcd4b2;
}
header nav ul li.login:hover i {
  color: #fcd4b2;
}
header nav ul li.menu-item-has-children:hover > ul {
  display: block;
}
header nav ul li > ul {
  position: absolute;
  left: -1px;
  top: 60px;
  display: none;
  width: 100%;
  background-color: #f58220;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  transition: all 300ms ease;
}
header nav ul li > ul li {
  float: none;
  display: block;
  text-transform: none;
  line-height: 20px;
  border: 0;
}
header nav ul li > ul li a {
  position: relative;
  padding: 15px 0;
  color: white;
}
header nav ul li > ul li a:hover {
  color: #fcd4b2;
  background-color: #f58220;
}
header nav ul li > ul li:last-child a {
  padding-right: 0;
}
/*
FOOTER 
------------------------------------------*/
footer {
  background-color: #f58220;
  border-top: #db6a0a solid 32px;
}
footer .wrapper {
  position: relative;
  padding: 20px 0;
  zoom: 1;
}
footer .wrapper:before,
footer .wrapper:after {
  content: "\0020";
  display: block;
  height: 0;
  overflow: hidden;
}
footer .wrapper:after {
  clear: both;
}
footer .to-top {
  position: absolute;
  top: -32px;
  right: 0;
  height: 32px;
  font-size: 16px;
  color: white;
  line-height: 32px;
}
footer .col {
  float: left;
  position: relative;
  width: 28%;
  padding-right: 30px;
  padding-top: 45px;
}
footer .col:last-child {
  width: 16%;
  padding-right: 0;
}
footer .col .newsletter-wrapper {
  width: 100%;
}
footer .col .newsletter-wrapper input {
  width: 77%;
  height: 100%;
  color: #fff;
  padding: 10px;
  background-color: rgba(76, 95, 105, 0.2);
  border: none;
  outline: none;
  border-radius: 5px;
  -webkit-border-radius: 5px;
}
footer .col .newsletter-wrapper input::-webkit-input-placeholder {
  color: white;
  font-weight: 100;
}
footer .col .newsletter-wrapper input:-moz-placeholder {
  color: white;
  font-weight: 100;
}
footer .col .newsletter-wrapper input::-moz-placeholder {
  color: white;
  font-weight: 100;
}
footer .col .newsletter-wrapper input:-ms-input-placeholder {
  color: white;
  font-weight: 100;
}
footer .col .newsletter-wrapper button[type="submit"] {
  width: 20%;
  height: 100%;
  padding: 10px;
  color: #fff;
  background-color: rgba(76, 95, 105, 0.2);
  border: none;
  outline: none;
  cursor: pointer;
  border-radius: 10px;
  -webkit-border-radius: 10px;
}
footer .col .newsletter-wrapper button[type="submit"]:hover {
  color: rgba(255, 255, 255, 0.5);
}
footer .col .newsletter-wrapper .newsletter-check {
  position: fixed !important;
}
footer .logo {
  position: absolute;
  left: 0;
  top: 0;
  width: 130px;
  height: 34px;
  text-indent: -9999px;
  background: url(../img/logo.png) 0 50% no-repeat;
  background-size: cover;
}
footer h3,
footer h6 {
  margin-bottom: 0;
  font-size: 14px;
  color: white;
  font-weight: 700;
  line-height: 20px;
}
footer span {
  margin-bottom: 20px;
  font-size: 12px;
  color: white;
  font-weight: 300;
  line-height: 20px;
}
footer p,
footer ul li {
  margin-bottom: 20px;
  font-size: 12px;
  color: white;
  font-weight: 300;
  line-height: 20px;
}
footer p a,
footer ul li a {
  color: white;
}
footer p a:hover,
footer ul li a:hover {
  color: #fcd4b2;
}
footer ul li {
  position: relative;
  margin-bottom: 3px;
  padding-left: 10px;
}
footer ul li:before {
  content: "\f105";
  position: absolute;
  left: 0;
  top: 0;
  font-family: FontAwesome;
  color: white;
  font-size: 12px;
}
footer ul.social {
  zoom: 1;
  margin-bottom: 20px;
}
footer ul.social:before,
footer ul.social:after {
  content: "\0020";
  display: block;
  height: 0;
  overflow: hidden;
}
footer ul.social:after {
  clear: both;
}
footer ul.social li {
  float: left;
  padding-left: 0;
  margin-right: 10px;
  font-size: 19px;
  line-height: 32px;
  text-align: center;
}
footer ul.social li a {
  display: block;
  width: 34px;
  height: 34px;
  border: #ffd5b1 solid 1px;
  border-radius: 50%;
}
footer ul.social li:before {
  display: none;
}
/*
LOGIN POPUP
------------------------------------------*/
.login-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 9999;
  display: none;
  width: 400px;
  height: 320px;
  margin-left: -200px;
  margin-top: -150px;
  background-color: white;
  -webkit-box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.2);
}
.login-popup .login-header {
  zoom: 1;
  padding: 8px;
  background-color: #f58220;
}
.login-popup .login-header:before,
.login-popup .login-header:after {
  content: "\0020";
  display: block;
  height: 0;
  overflow: hidden;
}
.login-popup .login-header:after {
  clear: both;
}
.login-popup .login-header .logo {
  float: left;
  width: 130px;
  height: 34px;
  margin: 3px 0;
  text-indent: -9999px;
  background: url(../img/logo.png) 0 50% no-repeat;
  background-size: cover;
}
.login-popup .login-header .close {
  float: right;
  padding: 10px;
  color: white;
  font-size: 20px;
  -webkit-transition: color 300ms ease;
  -moz-transition: color 300ms ease;
  -o-transition: color 300ms ease;
  -ms-transition: color 300ms ease;
  transition: color 300ms ease;
}
.login-popup .login-header .close:hover i {
  color: rgba(255, 255, 255, 0.8);
}
.login-popup .login-form {
  zoom: 1;
  padding: 25px 25px 0;
  border-bottom: 1px solid #f3f3f3;
}
.login-popup .login-form:before,
.login-popup .login-form:after {
  content: "\0020";
  display: block;
  height: 0;
  overflow: hidden;
}
.login-popup .login-form:after {
  clear: both;
}
.login-popup .login-form p {
  margin-bottom: 20px;
}
.login-popup .login-form p label {
  display: inline-block;
  width: 48%;
}
.login-popup .login-form p input[type="text"],
.login-popup .login-form p input[type="password"] {
  width: 50%;
  padding: 5px;
  font-size: 16px;
  color: #4c5f69;
  background-color: #f3f3f3;
  border: #d0d0d0 solid 1px;
  border-radius: 2px;
}
.login-popup .login-form p.login-remember {
  float: left;
  width: 50%;
  padding: 12px 0;
}
.login-popup .login-form p.login-remember label {
  width: 100%;
}
.login-popup .login-form p.login-submit {
  float: right;
  width: 50%;
}
.login-popup .login-form p.login-submit .button-primary {
  float: right;
  height: 50px;
  padding: 0 30px;
  font-size: 17px;
  color: white;
  font-weight: 500;
  line-height: 50px;
  text-transform: uppercase;
  text-align: center;
  background-color: #f58220;
  border: 0;
  box-shadow: inset 0px -4px 0px 0px rgba(0, 0, 0, 0.3);
  -webkit-appearance: none;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  transition: all 300ms ease;
  cursor: pointer;
}
.login-popup .login-form p.login-submit .button-primary:hover {
  background-color: #c05d09;
}
.login-popup .registration-wrapper {
  padding: 12px 30px;
}
.login-popup .registration-wrapper a {
  color: #f58220;
}
.login-popup .registration-wrapper a:hover {
  color: #db6a0a;
  text-decoration: underline;
}
/*
HERO SECTION
------------------------------------------*/
.hero {
  position: relative;
  height: 800px;
}
.hero .slider-outer {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.hero .slider-outer .slide {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
}
.hero .slider-outer .slide .slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 541px;
  height: 143px;
  margin-top: -160px;
  margin-left: -265px;
  background: url(../img/logo-big.png);
}
.hero .controls {
  position: absolute;
  top: 35%;
  z-index: 1210;
  width: 56px;
  height: 56px;
  font-size: 20px;
  color: white;
  line-height: 54px;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.1);
  border: white solid 1px;
  border-radius: 50%;
  cursor: pointer;
}
.hero .controls.prev {
  left: 20px;
}
.hero .controls.next {
  right: 20px;
}
/*
CONTENT
------------------------------------------*/
.content {
  padding: 40px 0;
  zoom: 1;
}
.content:before,
.content:after {
  content: "\0020";
  display: block;
  height: 0;
  overflow: hidden;
}
.content:after {
  clear: both;
}
.content main {
  float: right;
  width: 70%;
}
.content aside {
  float: left;
  width: 25%;
}
.content aside .logo {
  display: none;
}
.content aside h6 {
  margin-bottom: 20px;
  font-size: 20px;
  color: #0178a6;
  line-height: 22px;
  font-weight: 300;
}
.content aside span {
  font-size: 16px;
  color: #4c5f69;
  line-height: 27px;
  font-weight: 400;
}
.content aside p {
  margin-bottom: 0;
}
.map-outer iframe {
  width: 100%;
  height: 555px;
}
section {
  padding: 70px 0;
}
section.centered {
  text-align: center;
}
section.orange {
  background-color: #f58220;
}
section.orange h2.inner-title {
  color: white;
}
section.orange h2.inner-title:after {
  background-color: white;
}
section.orange p {
  color: white;
}
section.orange p a {
  color: white;
}
section.grey {
  background-color: #f3f3f3;
}
.breadcrumbs {
  padding: 15px 0;
  background-color: #f3f3f3;
}
.breadcrumbs .wrapper {
  zoom: 1;
}
.breadcrumbs .wrapper:before,
.breadcrumbs .wrapper:after {
  content: "\0020";
  display: block;
  height: 0;
  overflow: hidden;
}
.breadcrumbs .wrapper:after {
  clear: both;
}
.breadcrumbs .wrapper .left {
  float: left;
  padding: 2px 0;
}
.breadcrumbs .wrapper .left li {
  float: left;
  font-size: 12px;
  line-height: 20px;
  color: #929292;
}
.breadcrumbs .wrapper .left li a {
  color: #4f4f4f;
}
.breadcrumbs .wrapper .left li a:hover {
  color: #f58220;
}
.breadcrumbs .wrapper .left li a:hover .fa {
  color: #4f4f4f;
}
.breadcrumbs .wrapper .left li a:after {
  content: "/";
  margin: 0 10px;
  color: #929292;
}
.breadcrumbs .wrapper .left li a .fa {
  margin-right: 2px;
  font-size: 14px;
}
.breadcrumbs .wrapper .search {
  display: none;
  margin: 0;
}
.products {
  zoom: 1;
  margin: 0 -20px 20px;
}
.products:before,
.products:after {
  content: "\0020";
  display: block;
  height: 0;
  overflow: hidden;
}
.products:after {
  clear: both;
}
.products article {
  float: left;
  width: 25%;
  padding: 0 20px;
  margin-bottom: 30px;
}
.products article img {
  display: block;
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
}
.products article h4 {
  min-height: 85px;
  margin-bottom: 10px;
  font-size: 18px;
  color: black;
}
.products article h4 a {
  color: black;
}
.products article h4 a:hover {
  color: #f58220;
}
.products article small {
  display: block;
  margin-bottom: 20px;
  font-size: 10px;
  color: #99a2a7;
}
.products article p {
  font-size: 12px;
  line-height: 20px;
}
.products article .more {
  display: inline-block;
  font-size: 14px;
  color: #f58220;
  line-height: 20px;
}
.products article .more .fa {
  width: 20px;
  height: 20px;
  margin-left: 2px;
  vertical-align: middle;
  line-height: 16px;
  color: #f58220;
  text-align: center;
  border: #c1c1c1 solid 1px;
  border-radius: 50%;
  background-color: white;
}
.products article .more:hover {
  color: #a75108;
}
.logos {
  padding: 40px 0 0;
  text-align: center;
  border-top: #f3f3f3 solid 1px;
}
.logos h5 {
  margin-bottom: 30px;
  font-size: 12px;
  color: #c6c6c6;
  text-decoration: underline;
  text-transform: uppercase;
  font-weight: 500;
}
.logos ul {
  text-align: center;
}
.logos ul li {
  display: inline-block;
  margin: 0 20px 50px;
}
.logos ul li img {
  display: block;
}
.cta-outer {
  padding: 50px 0 30px;
  background-color: #f3f3f3;
}
.cta-outer.white {
  background-color: #fff;
  border-bottom: 1px solid #f3f3f3;
  border-top: 1px solid #f3f3f3;
}
.cta-outer .wrapper {
  zoom: 1;
}
.cta-outer .wrapper:before,
.cta-outer .wrapper:after {
  content: "\0020";
  display: block;
  height: 0;
  overflow: hidden;
}
.cta-outer .wrapper:after {
  clear: both;
}
.cta-outer .col {
  float: left;
  width: 50%;
  padding-right: 40px;
}
.cta-outer .col:last-child {
  padding-right: 0;
  padding-left: 40px;
}
.cta-outer .col h3 {
  margin-bottom: 13px;
  font-size: 40px;
  color: black;
  font-weight: 100;
}
.cta-outer .col p {
  margin-bottom: 30px;
  font-size: 14px;
  color: black;
  line-height: 21px;
  font-weight: 300;
}
.cta-outer .col p a {
  color: #f58220;
  font-weight: 500;
}
.cta-outer .col p a .fa {
  width: 20px;
  height: 20px;
  margin-left: 2px;
  vertical-align: middle;
  line-height: 16px;
  color: #f58220;
  text-align: center;
  border: #c1c1c1 solid 1px;
  border-radius: 50%;
  background-color: white;
}
.cta-outer .col p a:hover {
  color: #a75108;
}
.cta-outer.hero-cta {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1200;
  width: 100%;
  padding: 50px 0 30px;
  background-color: transparent;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(0, 0, 0, 0.6)));
  background: -webkit-linear-gradient(top, transparent, rgba(0, 0, 0, 0.6));
  background: -moz-linear-gradient(top, transparent, rgba(0, 0, 0, 0.6));
  background: -ms-linear-gradient(top, transparent, rgba(0, 0, 0, 0.6));
  background: -o-linear-gradient(top, transparent, rgba(0, 0, 0, 0.6));
}
.cta-outer.hero-cta .col h3,
.cta-outer.hero-cta .col p a {
  color: white;
}
.cta-outer.hero-cta .col p {
  color: #eee;
}
.cta-outer.hero-cta .col h3 {
  padding-top: 30px;
  border-top: rgba(255, 255, 255, 0.5) solid 1px;
}
/**
BLOG
------------------------------------------*/
.blog main .postWrapper {
  padding-bottom: 60px;
  position: relative;
}
.blog main .postWrapper:after {
  content: '';
  position: absolute;
  bottom: 55px;
  left: 10%;
  width: 80%;
  height: 1px;
  background-color: #f58220;
  -moz-opacity: 0.6;
  -khtml-opacity: 0.6;
  -webkit-opacity: 0.6;
  opacity: 0.6;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=60);
  filter: alpha(opacity=60);
}
.blog main .postWrapper:last-child:after {
  display: none;
}
.blog main .postWrapper img {
  float: left;
  max-width: 150px;
  height: auto;
  margin: 0 15px 0 0;
  -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.25);
}
.blog main .postWrapper h2 {
  margin-bottom: 5px;
}
.blog main .postWrapper small {
  display: block;
  margin-bottom: 25px;
}
.blog main .postWrapper p {
  margin-bottom: 30px;
}
.blog aside .menu li:before {
  display: none;
}
.blog aside .widget .button {
  box-shadow: none;
}
.single main .postWrapper img {
  max-width: 50%;
  margin: 3px 20px 15px 10px;
}
.single main .postWrapper img.aligncenter {
  margin: 0 auto;
  display: block;
}
.single main .back-arrow {
  display: block;
  margin: 0 auto 40px;
  width: 140px;
  height: 40px;
  background: url("../img/back-arrow.png");
  background-position: center;
  background-repeat: no-repeat;
}
.single main .back-arrow span {
  display: block;
  padding-top: 50px;
  text-align: center;
  text-transform: uppercase;
}
.single main .back-arrow:hover {
  background-image: url("../img/back-arrow-hover.png");
}
.single aside a.button {
  box-shadow: none;
}
/*
WOOCOMMERCE
------------------------------------------*/
.archive .content {
  padding: 40px 0 0;
}
.archive .archive-description {
  text-align: center;
}
.products {
  padding-top: 14px;
}
.products li.product {
  width: 220px !important;
  margin-right: 30px !important;
  margin-bottom: 40px !important;
  height: 390px;
}
.products li.product:nth-child(3n) {
  margin-right: 0!important;
}
.products li.product.first {
  clear: none!important;
}
.products li.product a {
  display: block;
}
.products li.product a.button {
  position: relative;
  float: left;
  height: auto;
  padding: 0 54px 0 0;
  margin-top: 0 !important;
  margin-bottom: 15px;
  color: #f58220;
  text-transform: none;
  font-weight: 300;
  font-size: 14px;
  line-height: 20px;
  background-color: transparent;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  transition: all 300ms ease;
}
.products li.product a.button:after {
  content: "\f105";
  position: absolute;
  top: 50%;
  right: 5px;
  width: 25px;
  height: 25px;
  margin-top: -12.5px;
  padding-left: 2px;
  font-family: FontAwesome;
  font-size: 18px;
  line-height: 23px;
  color: #f58220;
  text-align: center;
  background-color: white;
  border-radius: 50%;
  border: 1px solid #c6c6c6;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  transition: all 500ms ease;
}
.products li.product a.button:hover {
  text-decoration: underline;
}
.products li.product a.button:hover:after {
  color: white;
  background-color: #f58220;
  border-color: #f58220;
}
.products li.product a.button.added {
  display: none;
}
.products li.product a.added_to_cart {
  display: block;
  position: relative;
  width: 135px;
  height: auto;
  padding: 3px 54px 3px 0;
  margin-top: 0 !important;
  color: #f58220;
  text-transform: none;
  font-weight: 300;
  font-size: 14px;
  line-height: 20px;
  background-color: transparent;
  overflow: hidden;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  transition: all 300ms ease;
}
.products li.product a.added_to_cart:after {
  content: "\f105";
  position: absolute;
  top: 50%;
  right: 5px;
  width: 25px;
  height: 25px;
  margin-top: -12.5px;
  padding-left: 2px;
  font-family: FontAwesome;
  font-size: 18px;
  line-height: 23px;
  color: #f58220;
  text-align: center;
  background-color: white;
  border-radius: 50%;
  border: 1px solid #c6c6c6;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  transition: all 500ms ease;
}
.products li.product a.added_to_cart:hover {
  text-decoration: underline;
}
.products li.product a.added_to_cart:hover:after {
  color: white;
  background-color: #f58220;
  border-color: #f58220;
}
.products li.product a.loading {
  text-align: left;
  width: auto;
}
.products li.product a .onsale {
  display: none;
}
.products li.product a img {
  display: block;
  max-width: 100%;
  height: auto;
  max-height: 165px;
  margin-bottom: 20px;
}
.products li.product a h3 {
  min-height: 110px;
  margin-bottom: 10px;
  font-size: 18px;
  color: black;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  transition: all 300ms ease;
}
.products li.product a h3 a {
  color: black;
}
.products li.product a h3 a:hover {
  color: #f58220;
}
.products li.product a small {
  display: block;
  margin-bottom: 20px;
  font-size: 10px;
  color: #99a2a7;
}
.products li.product a > p {
  display: none;
  height: 60px;
  font-size: 12px;
  line-height: 20px;
  overflow: hidden;
}
.products li.product a:hover h3 {
  color: #f58220;
}
.woocommerce header.title {
  position: relative;
  background-color: transparent;
  box-shadow: none;
}
.woocommerce header.title .edit {
  width: 100%;
  padding-bottom: 10px;
}
.woocommerce ul.products li.product .price {
  display: none;
}
.shop-content {
  zoom: 1;
  padding: 60px 0;
  background-color: #f3f3f3;
}
.shop-content:before,
.shop-content:after {
  content: "\0020";
  display: block;
  height: 0;
  overflow: hidden;
}
.shop-content:after {
  clear: both;
}
.shop-content .enrty {
  position: relative;
}
.shop-content main {
  width: 75%;
  padding-left: 25px;
  margin-bottom: 70px;
  border-left: 2px solid #dddddd;
}
.shop-content main .woocommerce-result-count {
  float: right;
  font-size: 14px;
  color: #c6c6c6;
}
.shop-content main .woocommerce-ordering {
  float: left;
  position: relative;
  vertical-align: middle;
  width: auto;
  height: 30px;
  background-color: white;
  border: #c6c6c6 solid 1px;
}
.shop-content main .woocommerce-ordering:before {
  content: "\f078";
  position: absolute;
  top: 6px;
  right: 7px;
  z-index: 1;
  font-family: FontAwesome;
  font-size: 12px;
  color: #4c5f69;
  -moz-opacity: 0.5;
  -khtml-opacity: 0.5;
  -webkit-opacity: 0.5;
  opacity: 0.5;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=50);
  filter: alpha(opacity=50);
}
.shop-content main .woocommerce-ordering select {
  position: relative;
  overflow: hidden;
  z-index: 2;
  width: 100%;
  height: 26px;
  padding: 0 20px 0 10px;
  color: #c6c6c6;
  font-size: 14px;
  white-space: nowrap;
  text-overflow: ellipsis;
  box-shadow: none;
  background: transparent;
  background-image: none;
  border: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.shop-content main .woocommerce-ordering select option {
  color: #4c5f69;
  background-color: white;
}
.shop-content main .woocommerce-ordering select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #717171;
}
.shop-content main .woocommerce-ordering select::-ms-expand {
  display: none;
}
.shop-content aside {
  position: relative;
  width: 25%;
  padding-right: 25px;
}
.shop-content aside h3 {
  font-size: 22px;
  margin-bottom: 30px;
}
.shop-content aside .menu {
  margin-bottom: 50px;
}
.shop-content aside .menu li {
  position: relative;
  padding-left: 10px;
}
.shop-content aside .menu li:after {
  content: "\f107";
  position: absolute;
  top: 10px;
  right: 5px;
  width: 25px;
  height: 25px;
  margin-top: -12.5px;
  padding-left: 2px;
  font-family: FontAwesome;
  font-size: 15px;
  line-height: 23px;
  color: #4c5f69;
  text-align: center;
  font-weight: 300;
  cursor: pointer;
}
.shop-content aside .menu li.active {
  display: block;
}
.shop-content aside .menu li.active:after {
  content: "\f106";
}
.shop-content aside .menu li:before {
  display: none;
}
.shop-content aside .menu li a {
  display: block;
  width: 100%;
  font-size: 14px;
  color: #4c5f69;
  line-height: 24px;
  font-weight: 700;
  border-bottom: 1px solid #c6c6c6;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  transition: all 300ms ease;
}
.shop-content aside .menu li a:hover {
  color: #f58220;
}
.shop-content aside .menu li ul {
  display: none;
  margin-bottom: 30px;
  padding: 5px 0 5px 5px;
  background-color: white;
  overflow: auto;
}
.shop-content aside .menu li ul li:after {
  display: none;
}
.shop-content aside .menu li ul li.current-menu-item > a {
  color: #f58220;
}
.shop-content aside .menu li ul li.active > a {
  color: #f58220;
}
.shop-content aside .menu li ul li.active > a:before {
  content: "\f106";
}
.shop-content aside .menu li ul li .active > a {
  color: #f58220;
}
.shop-content aside .menu li ul li a {
  display: block;
  position: relative;
  border-bottom: 0;
}
.shop-content aside .menu li ul li a:before {
  content: "\f105";
  position: absolute;
  top: 50%;
  left: -20px;
  width: 25px;
  height: 25px;
  margin-top: -13.5px;
  padding-left: 2px;
  font-family: FontAwesome;
  font-size: 15px;
  line-height: 23px;
  color: #f58220;
  text-align: center;
  font-weight: 300;
}
.shop-content aside .menu li ul li ul {
  max-height: inherit;
  margin-bottom: 0;
  padding-top: 0;
  overflow-x: hidden;
}
.shop-content aside .menu li ul li ul li a {
  font-weight: 400;
}
.shop-content aside .woocommerce_featured_products_widget ul li {
  zoom: 1;
  display: block;
  padding: 20px 0;
  border-bottom: 1px solid #c6c6c6;
}
.shop-content aside .woocommerce_featured_products_widget ul li:before,
.shop-content aside .woocommerce_featured_products_widget ul li:after {
  content: "\0020";
  display: block;
  height: 0;
  overflow: hidden;
}
.shop-content aside .woocommerce_featured_products_widget ul li:after {
  clear: both;
}
.shop-content aside .woocommerce_featured_products_widget ul li:first-child {
  padding-top: 0;
}
.shop-content aside .woocommerce_featured_products_widget ul li:last-child {
  border-bottom: 0;
}
.shop-content aside .woocommerce_featured_products_widget ul li .featured-product-wrapper {
  zoom: 1;
}
.shop-content aside .woocommerce_featured_products_widget ul li .featured-product-wrapper:before,
.shop-content aside .woocommerce_featured_products_widget ul li .featured-product-wrapper:after {
  content: "\0020";
  display: block;
  height: 0;
  overflow: hidden;
}
.shop-content aside .woocommerce_featured_products_widget ul li .featured-product-wrapper:after {
  clear: both;
}
.shop-content aside .woocommerce_featured_products_widget ul li .featured-product-wrapper img {
  float: left;
  max-width: 85px;
  height: auto;
  margin-right: 15px;
}
.shop-content aside .woocommerce_featured_products_widget ul li .featured-product-wrapper small {
  display: block;
  margin-bottom: 12px;
  font-size: 10px;
  color: #99a2a7;
}
.shop-content aside .woocommerce_featured_products_widget ul li a.button {
  position: relative;
  float: left;
  height: auto;
  padding: 0 34px 0 0;
  margin-top: 20px;
  color: #f58220;
  text-transform: none;
  font-weight: 300;
  font-size: 14px;
  line-height: 20px;
  background-color: transparent;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  transition: all 300ms ease;
}
.shop-content aside .woocommerce_featured_products_widget ul li a.button:after {
  right: 5px;
  width: 20px;
  height: 20px;
  margin-top: -10.5px;
  padding-left: 1px;
  font-size: 15px;
  line-height: 17px;
}
.shop-content aside .woocommerce_featured_products_widget ul li a.button:hover {
  background-color: transparent;
  text-decoration: underline;
}
.shop-content aside .woocommerce_featured_products_widget ul li a.button:hover:after {
  color: white;
  background-color: #f58220;
  border-color: #f58220;
}
.shop-content aside .woocommerce_featured_products_widget ul li a h5 {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
  line-height: normal;
  color: black;
  font-weight: bold;
}
.shop-content aside .woocommerce_featured_products_widget ul li a h5:hover {
  color: #f58220;
  text-decoration: none;
}
.shop-content .featured-projects {
  float: left;
  width: 100%;
  border-top: 10px solid #fff;
  padding: 60px 0 0;
}
.shop-content .featured-projects h3 {
  text-align: center;
  color: #0a4766;
}
.pagination {
  zoom: 1;
}
.pagination:before,
.pagination:after {
  content: "\0020";
  display: block;
  height: 0;
  overflow: hidden;
}
.pagination:after {
  clear: both;
}
.pagination .navigation {
  zoom: 1;
  text-align: center;
}
.pagination .navigation:before,
.pagination .navigation:after {
  content: "\0020";
  display: block;
  height: 0;
  overflow: hidden;
}
.pagination .navigation:after {
  clear: both;
}
.pagination .navigation .screen-reader-text {
  display: none;
}
.pagination .navigation .nav-links {
  zoom: 1;
  display: inline-block;
}
.pagination .navigation .nav-links:before,
.pagination .navigation .nav-links:after {
  content: "\0020";
  display: block;
  height: 0;
  overflow: hidden;
}
.pagination .navigation .nav-links:after {
  clear: both;
}
.pagination .navigation .nav-links a,
.pagination .navigation .nav-links span {
  float: left;
  width: 32px;
  height: 32px;
  padding: 9px 11px;
  margin: 0 5px;
  color: #4c5f69;
  border-radius: 50%;
}
.pagination .navigation .nav-links a:hover,
.pagination .navigation .nav-links span:hover {
  color: white;
  background-color: #f58220;
}
.pagination .navigation .nav-links a.current,
.pagination .navigation .nav-links span.current {
  color: white;
  background-color: #f58220;
}
.pagination .navigation .nav-links a.prev,
.pagination .navigation .nav-links span.prev,
.pagination .navigation .nav-links a.next,
.pagination .navigation .nav-links span.next {
  padding: 7px 11px;
  width: auto;
  color: #f58220;
  background-color: transparent;
}
.pagination .navigation .nav-links a.prev i,
.pagination .navigation .nav-links span.prev i,
.pagination .navigation .nav-links a.next i,
.pagination .navigation .nav-links span.next i {
  color: #f58220;
}
.pagination .navigation .nav-links a.prev:hover,
.pagination .navigation .nav-links span.prev:hover,
.pagination .navigation .nav-links a.next:hover,
.pagination .navigation .nav-links span.next:hover {
  color: #db6a0a;
}
.pagination .navigation .nav-links a.prev:before,
.pagination .navigation .nav-links span.prev:before {
  content: "\f104";
  padding: 5px 8px 3px 1px;
  font-size: 18px;
  color: #f58220;
  font-family: FontAwesome;
}
.pagination .navigation .nav-links a.next:after,
.pagination .navigation .nav-links span.next:after {
  content: "\f105";
  padding: 5px 8px 3px 1px;
  margin-left: 10px;
  font-size: 18px;
  color: #f58220;
  font-family: FontAwesome;
}
.pagination .navigation .nav-links a.dots:hover,
.pagination .navigation .nav-links span.dots:hover {
  background-color: transparent;
  color: #4c5f69;
}
.woocommerce nav.woocommerce-pagination ul {
  border: 0;
}
.woocommerce nav.woocommerce-pagination ul li {
  border: 0;
  margin: 0 2px;
}
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  width: 40px;
  height: 40px;
  color: #4c5f69;
  line-height: 1.5;
  border-radius: 50%;
}
.woocommerce nav.woocommerce-pagination ul li a:hover,
.woocommerce nav.woocommerce-pagination ul li span:hover {
  color: white;
  background-color: #f58220;
}
.woocommerce nav.woocommerce-pagination ul li a.current,
.woocommerce nav.woocommerce-pagination ul li span.current {
  color: white;
  background-color: #f58220;
}
.woocommerce nav.woocommerce-pagination ul li a.prev,
.woocommerce nav.woocommerce-pagination ul li span.prev,
.woocommerce nav.woocommerce-pagination ul li a.next,
.woocommerce nav.woocommerce-pagination ul li span.next {
  width: auto;
  background-color: transparent;
}
.woocommerce nav.woocommerce-pagination ul li a.prev i,
.woocommerce nav.woocommerce-pagination ul li span.prev i,
.woocommerce nav.woocommerce-pagination ul li a.next i,
.woocommerce nav.woocommerce-pagination ul li span.next i {
  color: #f58220;
}
.woocommerce nav.woocommerce-pagination ul li a.prev:hover,
.woocommerce nav.woocommerce-pagination ul li span.prev:hover,
.woocommerce nav.woocommerce-pagination ul li a.next:hover,
.woocommerce nav.woocommerce-pagination ul li span.next:hover {
  color: #f58220;
}
.woocommerce nav.woocommerce-pagination ul li a.dots:hover,
.woocommerce nav.woocommerce-pagination ul li span.dots:hover {
  background-color: transparent;
  color: #4c5f69;
}
.woocommerce table.shop_table {
  border-radius: 0;
}
.woocommerce table.shop_table .actions .button {
  display: inline-block !important;
  height: 50px !important;
  padding: 0 30px !important;
  font-size: 17px !important;
  color: white !important;
  font-weight: 500 !important;
  line-height: 50px !important;
  text-transform: uppercase !important;
  text-align: center !important;
  background-color: #f58220 !important;
  border: 0 !important;
  box-shadow: inset 0px -4px 0px 0px rgba(0, 0, 0, 0.3) !important;
  cursor: pointer !important;
  -webkit-appearance: none !important;
  -webkit-border-radius: 15px !important;
  -moz-border-radius: 15px !important;
  border-radius: 15px !important;
  -moz-background-clip: padding !important;
  -webkit-background-clip: padding-box !important;
  background-clip: padding-box !important;
  -webkit-transition: all 300ms ease !important;
  -moz-transition: all 300ms ease !important;
  -o-transition: all 300ms ease !important;
  -ms-transition: all 300ms ease !important;
  transition: all 300ms ease !important;
}
.woocommerce table.shop_table .actions .button:hover {
  background-color: #c05d09 !important;
}
.woocommerce table.shop_table .actions .button.center {
  display: block !important;
  width: 200px !important;
  margin: 0 auto  !important;
}
.woocommerce div.product form.cart .button {
  display: block;
  float: none;
  margin: 90px auto 0;
}
.empty-cart {
  text-align: center;
}
.woocommerce .cart-collaterals .cart_totals,
.woocommerce-page .cart-collaterals .cart_totals {
  float: none;
  width: 100%;
  text-align: center;
}
.woocommerce .cart-collaterals .cart_totals table tbody tr,
.woocommerce-page .cart-collaterals .cart_totals table tbody tr {
  text-align: center;
}
.woocommerce-checkout .woocommerce header {
  position: relative;
  height: auto;
  width: auto;
  background-color: transparent;
  box-shadow: none;
  z-index: 1;
}
.woocommerce-checkout .shipping-info {
  color: #d2d2d2;
  text-align: center;
}
.woocommerce-checkout .woocommerce-checkout-payment {
  background-color: transparent !important;
}
.woocommerce-checkout .woocommerce-checkout-payment .wc_payment_methods .wc_payment_method label {
  color: #f58220 !important;
}
.woocommerce-checkout .woocommerce-checkout-payment .wc_payment_methods .wc_payment_method div.payment_box {
  float: left;
  display: inline-block !important;
  width: auto !important;
  margin: 0 !important;
  padding: 2px 5px 0 0 !important;
  background-color: transparent !important;
}
.woocommerce-checkout .woocommerce-checkout-payment .wc_payment_methods .wc_payment_method div.payment_box:before {
  display: none!important;
}
.woocommerce-checkout .woocommerce-checkout-payment .wc_payment_methods .wc_payment_method div.payment_box p {
  text-transform: uppercase;
}
.checkout h3 {
  text-align: center;
  color: black;
}
.woocommerce-order-received .woocommerce h2 {
  text-align: center;
  color: black;
}
.woocommerce-order-received .woocommerce h3 {
  color: #f58220;
}
#order_review_heading {
  padding-top: 40px;
}
.woocommerce table thead,
.woocommerce-checkout-review-order table thead,
.woocommerce table tbody,
.woocommerce-checkout-review-order table tbody,
.woocommerce table tfoot,
.woocommerce-checkout-review-order table tfoot {
  text-align: center;
}
.woocommerce table thead tr th:first-child,
.woocommerce-checkout-review-order table thead tr th:first-child,
.woocommerce table tbody tr th:first-child,
.woocommerce-checkout-review-order table tbody tr th:first-child,
.woocommerce table tfoot tr th:first-child,
.woocommerce-checkout-review-order table tfoot tr th:first-child,
.woocommerce table thead tr .product-name,
.woocommerce-checkout-review-order table thead tr .product-name,
.woocommerce table tbody tr .product-name,
.woocommerce-checkout-review-order table tbody tr .product-name,
.woocommerce table tfoot tr .product-name,
.woocommerce-checkout-review-order table tfoot tr .product-name {
  text-align: left;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}
.woocommerce table thead tr:nth-child(2n),
.woocommerce-checkout-review-order table thead tr:nth-child(2n),
.woocommerce table tbody tr:nth-child(2n),
.woocommerce-checkout-review-order table tbody tr:nth-child(2n),
.woocommerce table tfoot tr:nth-child(2n),
.woocommerce-checkout-review-order table tfoot tr:nth-child(2n) {
  background-color: rgba(0, 0, 0, 0.05);
}
.woocommerce table thead tr th,
.woocommerce-checkout-review-order table thead tr th {
  color: #f58220;
}
.woocommerce table thead tr th.product-name,
.woocommerce-checkout-review-order table thead tr th.product-name {
  text-align: left;
}
.woocommerce table thead tr th.product-remove,
.woocommerce-checkout-review-order table thead tr th.product-remove {
  border-right: 0;
}
.woocommerce .order_details li:before {
  display: none;
}
.woocommerce a.remove {
  color: #f58220 !important;
}
.woocommerce a.remove:hover {
  background: #f58220 !important;
}
.woocommerce .shop_attributes tbody tr th:first-child {
  border-right: 0;
}
.woocommerce .shop_attributes tbody tr:nth-child(2n) {
  background-color: #fff;
}
.woocommerce .woocommerce-message {
  border-top-color: #f58220;
}
.woocommerce .woocommerce-message:before {
  color: #f58220;
}
/*
SINGLE PRODUCT
------------------------------------------*/
.content.single-product {
  padding: 0;
}
.content.single-product .shop-content {
  padding: 60px 0 0;
  background-color: #fff;
}
.content.single-product .shop-content .enrty .single-product-wrapper {
  position: relative;
  zoom: 1;
  padding-bottom: 50px;
}
.content.single-product .shop-content .enrty .single-product-wrapper:before,
.content.single-product .shop-content .enrty .single-product-wrapper:after {
  content: "\0020";
  display: block;
  height: 0;
  overflow: hidden;
}
.content.single-product .shop-content .enrty .single-product-wrapper:after {
  clear: both;
}
.content.single-product .shop-content .enrty .single-product-wrapper main .product {
  zoom: 1;
}
.content.single-product .shop-content .enrty .single-product-wrapper main .product:before,
.content.single-product .shop-content .enrty .single-product-wrapper main .product:after {
  content: "\0020";
  display: block;
  height: 0;
  overflow: hidden;
}
.content.single-product .shop-content .enrty .single-product-wrapper main .product:after {
  clear: both;
}
.content.single-product .shop-content .enrty .single-product-wrapper main .product .onsale {
  display: none;
}
.content.single-product .shop-content .enrty .single-product-wrapper main .product .images a img {
  border: 2px solid #f3f3f3;
}
.content.single-product .shop-content .enrty .single-product-wrapper main .product .summary h1 {
  margin-bottom: 45px;
  font-size: 34px;
  line-height: normal;
  text-transform: none;
  text-align: left;
}
.content.single-product .shop-content .enrty .single-product-wrapper main .product .summary h1:after {
  display: none;
}
.content.single-product .shop-content .enrty .single-product-wrapper main .product .summary .product_meta .posted_in {
  display: block;
  margin-bottom: 10px;
  font-style: italic;
  font-size: 14px;
  line-height: 27px;
  color: #4c5f69;
}
.content.single-product .shop-content .enrty .single-product-wrapper main .product .summary .product_meta .posted_in a {
  color: #f58220;
}
.content.single-product .shop-content .enrty .single-product-wrapper main .product .summary .product_meta .posted_in a:hover {
  text-decoration: underline;
}
.content.single-product .shop-content .enrty .single-product-wrapper main .product .price {
  display: block;
  font-size: 13px;
  font-weight: 300;
  color: #8d8d8d;
  margin-bottom: 10px;
}
.content.single-product .shop-content .enrty .single-product-wrapper main .product .price ins,
.content.single-product .shop-content .enrty .single-product-wrapper main .product .price del {
  display: block;
  font-size: 20px;
  color: black;
  font-weight: 800;
  text-decoration: none;
  line-height: 22px;
}
.content.single-product .shop-content .enrty .single-product-wrapper main .product .price del {
  margin-bottom: 10px;
}
.content.single-product .shop-content .enrty .single-product-wrapper main .product .price ins .amount {
  color: #f58220;
}
.content.single-product .shop-content .enrty .single-product-wrapper main .product .price .amount {
  display: block;
  font-size: 20px;
  color: black;
  font-weight: 800;
  text-decoration: none;
  line-height: 22px;
}
.content.single-product .shop-content .enrty .single-product-wrapper main .product .sku_wrapper {
  float: right;
  margin-top: -22px;
  font-size: 12px;
  line-height: 15px;
  color: #4c5f69;
}
.content.single-product .shop-content .enrty .single-product-wrapper main .product .sku_wrapper.no-pirce {
  margin-top: 6px;
}
.content.single-product .shop-content .enrty .single-product-wrapper main .product .stock {
  margin-bottom: 0;
  text-align: left;
  font-size: 13px;
  line-height: 22px;
  color: #4c5f69;
}
.content.single-product .shop-content .enrty .single-product-wrapper main .product .custom-attributes table {
  border: 0;
}
.content.single-product .shop-content .enrty .single-product-wrapper main .product .custom-attributes table tbody tr.alt th,
.content.single-product .shop-content .enrty .single-product-wrapper main .product .custom-attributes table tbody tr.alt td {
  background-color: transparent;
}
.content.single-product .shop-content .enrty .single-product-wrapper main .product .custom-attributes table tbody tr th,
.content.single-product .shop-content .enrty .single-product-wrapper main .product .custom-attributes table tbody tr td {
  float: left;
  width: auto;
  padding: 0;
  text-align: left;
  font-size: 13px;
  line-height: 22px;
  color: #4c5f69;
  font-weight: 400;
  border-bottom: 0;
}
.content.single-product .shop-content .enrty .single-product-wrapper main .product .custom-attributes table tbody tr td p {
  padding: 0;
  text-align: left;
  font-size: 13px;
  line-height: 22px;
  color: #4c5f69;
  font-weight: 400;
}
.content.single-product .shop-content .enrty .single-product-wrapper main .product .short-description p {
  margin: 40px 0;
  font-size: 14px;
  line-height: 21px;
}
.content.single-product .shop-content .enrty .single-product-wrapper aside .woocommerce_featured_products_widget {
  display: none;
}
.content.single-product .shop-content .enrty .single-product-wrapper aside .menu-sidebar-menu-container {
  display: block;
}
.content.single-product .shop-content .featured-products {
  padding: 60px 0;
  background-color: #f3f3f3;
}
.content.single-product .shop-content .featured-products ul.products li:nth-child(3n) {
  margin-right: 30px !important;
}
.content.single-product .shop-content .featured-products ul.products li:nth-child(4n) {
  margin-right: 0 !important;
}
/*
SELECT POPUP
------------------------------------------*/
.select-popup {
  display: none;
}
/*
CATALOGS
------------------------------------------*/
.catalog .pdf-viewer-wrapper {
  zoom: 1;
  margin-bottom: 50px;
}
.catalog .pdf-viewer-wrapper:before,
.catalog .pdf-viewer-wrapper:after {
  content: "\0020";
  display: block;
  height: 0;
  overflow: hidden;
}
.catalog .pdf-viewer-wrapper:after {
  clear: both;
}
.catalog .pdf-viewer-wrapper .pdf-viewer-front {
  position: relative;
  float: left;
  width: 250px;
  margin-right: 40px;
  border: 1px solid #f58220;
}
.catalog .pdf-viewer-wrapper .pdf-viewer-front .wrapper {
  width: auto;
  margin: 0;
}
.catalog .pdf-viewer-wrapper .pdf-viewer-front .wrapper .rig.columns-3 li {
  display: block;
  width: 97%;
  margin: 0 0 0 7px;
  padding: 0;
}
.catalog .pdf-viewer-wrapper .pdf-viewer-front .wrapper .rig.columns-3 li:before {
  display: none;
}
.catalog .pdf-viewer-wrapper .pdf-viewer-front h4 {
  position: absolute;
  top: 20px;
  z-index: 2;
  width: 100%;
  text-align: center;
  color: #f58220;
  font-weight: 800;
  font-style: italic;
}
.catalog .pdf-viewer-wrapper .pdf-viewer-front span {
  position: absolute;
  bottom: 40px;
  z-index: 2;
  width: 100%;
  text-align: center;
  color: #db6a0a;
  font-size: 30px;
  font-style: italic;
}
.catalog .pdf-viewer-wrapper .description {
  text-align: center;
  padding: 30px;
}
.catalog .pdf-viewer-wrapper .description a {
  font-weight: 600;
  font-style: italic;
}
.catalog .pdf-viewer-wrapper .description a:hover {
  text-decoration: underline;
}
/*
RESPONSIVE
------------------------------------------*/
@media screen and (max-width: 1080px) {
  .wrapper {
    width: auto;
    margin-left: 20px;
    margin-right: 20px;
  }
  .wrapper.narrow {
    width: auto;
  }
  .top-header {
    display: none;
  }
  header .logo {
    display: block;
  }
  header nav {
    position: relative;
  }
  header nav .mobile-menu {
    display: block;
    float: right;
  }
  header nav ul {
    position: absolute;
    top: 60px;
    right: -345px;
    width: 300px;
    height: 305px;
    background-color: #f58220;
    overflow-y: scroll;
    overflow-x: hidden;
    -webkit-box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.4);
    -moz-box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.4);
    box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.4);
  }
  header nav ul li {
    float: none;
    display: block;
    line-height: 50px;
    font-weight: 600;
    border-bottom: 1px solid white;
  }
  header nav ul li:last-child {
    border-bottom: none;
  }
  header nav ul li.login {
    border-left: none;
  }
  header nav ul li > ul {
    display: block;
    left: 0;
    top: 50px;
    width: 100%;
    height: auto;
    background-color: #f69038;
    overflow: hidden;
  }
  header nav ul li > ul li {
    font-weight: 400;
  }
  header nav ul li > ul li a {
    padding: 10px 0 !important;
  }
  header nav ul li:first-child a,
  header nav ul li:last-child a {
    padding: 0;
  }
  /*
    SELECT POPUP
    ------------------------------------------*/
  .select-popup {
    display: block;
    position: relative;
    width: 100%;
    float: left;
    margin-bottom: 50px;
  }
  .select-popup .current-category {
    display: block;
    width: 250px;
    height: 50px;
    margin: 0 auto;
    padding: 0 30px;
    font-size: 17px;
    color: white;
    font-weight: 500;
    line-height: 50px;
    text-transform: uppercase;
    text-align: center;
    background-color: #f58220;
    border: 0;
    box-shadow: inset 0px -4px 0px 0px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    -webkit-appearance: none;
    outline: none;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    -webkit-transition: all 300ms ease 1s linear;
    -moz-transition: all 300ms ease 1s linear;
    -o-transition: all 300ms ease 1s linear;
    -ms-transition: all 300ms ease 1s linear;
    transition: all 300ms ease 1s linear;
  }
  .select-popup .current-category:hover {
    background-color: #db6a0a;
  }
  .select-popup .sidebar-menu {
    display: none;
    position: absolute;
    width: 90%;
    left: 5%;
    top: -130px;
    padding: 10px;
    background-color: #f3f3f3;
    border-radius: 9px;
    z-index: 9999;
    -webkit-box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.2);
  }
  .select-popup .sidebar-menu li {
    position: relative;
  }
  .select-popup .sidebar-menu li:after {
    content: "\f107";
    position: absolute;
    top: 20px;
    right: 36px;
    width: 0;
    height: 0;
    margin-top: -12.5px;
    padding-left: 2px;
    font-family: FontAwesome;
    font-size: 15px;
    line-height: 23px;
    color: #4c5f69;
    text-align: center;
    font-weight: 300;
    cursor: pointer;
  }
  .select-popup .sidebar-menu li.active {
    display: block;
  }
  .select-popup .sidebar-menu li.active:after {
    content: "\f00d";
  }
  .select-popup .sidebar-menu li:before {
    content: ' ';
    position: absolute;
    top: 10px;
    right: 70px;
    width: 1px;
    height: 20px;
    background-color: #c6c6c6;
  }
  .select-popup .sidebar-menu li a {
    display: block;
    width: 100%;
    padding: 10px;
    font-size: 14px;
    color: #4c5f69;
    line-height: 24px;
    font-weight: 700;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    transition: all 300ms ease;
  }
  .select-popup .sidebar-menu li a:hover {
    color: #f58220;
  }
  .select-popup .sidebar-menu li ul {
    display: none;
    margin-bottom: 30px;
    padding: 5px 0 5px 20px;
    background-color: white;
    overflow: auto;
  }
  .select-popup .sidebar-menu li ul li:after,
  .select-popup .sidebar-menu li ul li:before {
    display: none;
  }
  .select-popup .sidebar-menu li ul li.current-menu-item > a {
    color: #f58220;
  }
  .select-popup .sidebar-menu li ul li.active > a {
    color: #f58220;
  }
  .select-popup .sidebar-menu li ul li.active > a:before {
    content: "\f106";
  }
  .select-popup .sidebar-menu li ul li .active > a {
    color: #f58220;
  }
  .select-popup .sidebar-menu li ul li a {
    display: block;
    position: relative;
    border-bottom: 0;
  }
  .select-popup .sidebar-menu li ul li a:before {
    content: "\f105";
    position: absolute;
    top: 50%;
    left: -20px;
    width: 25px;
    height: 25px;
    margin-top: -13.5px;
    padding-left: 2px;
    font-family: FontAwesome;
    font-size: 15px;
    line-height: 23px;
    color: #f58220;
    text-align: center;
    font-weight: 300;
  }
  .select-popup .sidebar-menu li ul li ul {
    max-height: inherit;
    margin-bottom: 0;
    padding-top: 0;
    overflow-x: hidden;
  }
  .select-popup .sidebar-menu li ul li ul li a {
    font-weight: 400;
  }
  .entry img {
    display: block;
    width: 50%;
    height: auto;
    margin: 0 auto;
  }
  .shop-content main,
  .shop-content aside {
    width: 100%;
  }
  .shop-content main {
    margin-bottom: 25px;
    padding-bottom: 25px;
    padding-left: 0;
    border-left: 0;
  }
  .shop-content aside {
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    padding: 0 20%;
  }
  .shop-content aside .menu-sidebar-menu-container {
    display: none !important;
  }
  footer .logo {
    left: 20px;
  }
  footer .col {
    width: 50%;
    height: 200px;
    padding: 0 20px;
    text-align: center;
  }
  footer .col .location_widget {
    padding-top: 45px;
  }
  footer .col .logo {
    left: 50%;
    margin-left: -65px;
  }
  footer .col .footer-menu {
    margin-bottom: 30px;
  }
  footer .col .footer-menu > li {
    font-weight: 600;
    text-decoration: underline;
    font-size: 16px;
    margin: 10px 0;
  }
  footer .col .footer-menu > li:before {
    display: none;
  }
  footer .col:last-child {
    width: 50%;
  }
  footer .col:last-child img {
    display: block;
    margin: 0 auto;
  }
  footer .col .social {
    display: inline-block;
  }
  .products.upsells {
    width: 500px;
    margin: 0 auto;
  }
  .products.upsells h2 {
    text-align: center;
  }
  .products.upsells .products li {
    margin: 0 15px 40px !important;
  }
  .woocommerce ul.products {
    padding: 0 10px;
  }
  .woocommerce ul.products li.product:nth-child(2n),
  .woocommerce-page ul.products li.product:nth-child(2n) {
    float: left;
  }
  .content.single-product .shop-content .featured-products ul.products li:nth-child(3n) {
    margin-right: 15px !important;
  }
  .content.single-product .shop-content .featured-products ul.products li:nth-child(4n) {
    margin-right: 15px!important;
  }
  .map-outer {
    padding: 10px 25px;
  }
  .map-outer iframe {
    width: 100%;
    height: 300px;
  }
  .shop-content aside h3 {
    text-align: center;
  }
  .shop-content aside .woocommerce_featured_products_widget ul li .featured-product-wrapper {
    width: 80%;
    margin: 0 auto;
  }
  .shop-content aside .woocommerce_featured_products_widget ul li a.button {
    display: block;
    float: none;
    width: 140px;
    padding: 10px 30px 10px 0;
    margin: 20px auto 0;
    background-color: #f58220;
    color: white;
    font-weight: 600;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    border-radius: 35px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
  }
  .shop-content aside .woocommerce_featured_products_widget ul li a.button:after {
    right: 10px;
  }
  .shop-content aside .woocommerce_featured_products_widget ul li a.button:hover {
    text-decoration: none;
    background-color: #db6a0a;
  }
  .pdf-viewer-wrapper .pdf-viewer-front {
    float: none;
    margin: 0 auto;
  }
  .pdf-viewer-wrapper .pdf-viewer-front .wrapper .rig .html-code img {
    width: 100%;
    margin: 0;
  }
  .breadcrumbs .wrapper .left {
    zoom: 1;
    float: none;
    display: block;
    padding-bottom: 25px;
  }
  .breadcrumbs .wrapper .left:before,
  .breadcrumbs .wrapper .left:after {
    content: "\0020";
    display: block;
    height: 0;
    overflow: hidden;
  }
  .breadcrumbs .wrapper .left:after {
    clear: both;
  }
  .breadcrumbs .wrapper .search {
    display: block;
    float: none;
  }
  .breadcrumbs .wrapper .search .search-field {
    width: 80%;
  }
}
@media screen and (max-width: 800px) {
  .shop-content main .products {
    width: 470px;
    margin: 0 auto;
    padding: 0;
  }
  .shop-content main .products li:nth-child(3n) {
    margin-right: 30px !important;
  }
  .shop-content main .products li:nth-child(2n) {
    margin-right: 0 !important;
  }
  .shop-content .featured-projects {
    padding: 30px;
  }
  .content.single-product .shop-content .enrty .single-product-wrapper main .product {
    padding: 0 85px;
  }
}
@media screen and (max-width: 760px) {
  .hero .slider-outer .slide .slide-content {
    top: 30%;
    width: 302px;
    height: 80px;
    margin-top: -90px;
    margin-left: -151px;
    background: url(../img/logo-big.png);
    background-size: contain;
    background-repeat: no-repeat;
  }
  .hero .controls {
    display: none;
  }
  .entry img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 auto;
  }
  .entry ul.related-posts li.more a:after {
    width: 74%;
  }
  .entry blockquote {
    padding-top: 25px;
  }
  .cta-outer .col {
    width: 100%;
    padding: 0;
  }
  .cta-outer .col h3 {
    text-align: center;
  }
  .cta-outer .col p a {
    display: block;
    float: none;
    width: 140px;
    padding: 10px 10px 10px 20px;
    margin: 0 auto;
    background-color: #f58220;
    color: white;
    font-weight: 600;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    border-radius: 35px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
  }
  .cta-outer .col p a i {
    right: 10px;
  }
  .cta-outer .col:last-child {
    padding-left: 0;
  }
  .products article {
    width: 50%;
  }
  .logos ul li span {
    display: block;
  }
  .logos ul li span img {
    max-width: 100%;
    height: auto;
  }
  .login-popup {
    top: 35%;
    width: 340px;
    margin-left: -170px;
  }
  .content main,
  .content aside {
    width: 100%;
  }
  .content aside .location_widget {
    text-align: center;
  }
  .content.single-product .shop-content .enrty .single-product-wrapper main .product {
    padding: 0 55px;
  }
  .content.single-product .shop-content .enrty .single-product-wrapper main .product .sku_wrapper {
    display: block;
    float: none;
    margin-top: 0;
    line-height: 22px;
  }
  .cart .quantity input[type="number"] {
    padding: 2px 5px;
  }
  .woocommerce a.remove.mobile {
    width: auto;
    height: auto;
    font-size: 15px;
    text-align: right;
  }
  .woocommerce a.remove.mobile:hover {
    background-color: transparent !important;
    color: #db6a0a !important;
  }
  .woocommerce .order_details li {
    display: block;
    float: none;
    padding: 15px;
    border-bottom: 1px dashed #d3ced2;
    border-right: 0;
    text-align: center;
  }
  .woocommerce .order_details li:before {
    display: none;
  }
  .woocommerce table.shop_table .actions .button {
    width: 220px !important;
  }
  .woocommerce .woocommerce-message:before {
    bottom: 15px;
    top: inherit;
  }
  .woocommerce .woocommerce-message a.button {
    float: none;
    display: block !important;
    width: 200px;
    margin: 0 auto 20px !important;
  }
  .products.upsells .products li .add_to_cart_button,
  .products.upsells .products li .addtocartbutton,
  .products.upsells .products li .added_to_cart {
    display: block;
    float: none;
    width: 150px;
    padding: 10px 40px 10px 20px;
    margin: 0 auto;
    background-color: #f58220;
    color: white;
    font-weight: 600;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    border-radius: 35px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
  }
  .products.upsells .products li .add_to_cart_button:after,
  .products.upsells .products li .addtocartbutton:after,
  .products.upsells .products li .added_to_cart:after {
    right: 10px;
  }
  .products.upsells .products li .add_to_cart_button:hover,
  .products.upsells .products li .addtocartbutton:hover,
  .products.upsells .products li .added_to_cart:hover {
    background-color: #db6a0a;
    text-decoration: none;
  }
  .products.upsells .products li .add_to_cart_button:hover:after,
  .products.upsells .products li .addtocartbutton:hover:after,
  .products.upsells .products li .added_to_cart:hover:after {
    background-color: #db6a0a;
    border-color: #db6a0a;
  }
  .products.upsells .products li .added_to_cart {
    width: 160px;
  }
  .catalog .pdf-viewer-wrapper .pdf-viewer-front {
    float: none;
    margin: 0 auto;
  }
  .catalog .pdf-viewer-wrapper .pdf-viewer-front .wrapper .rig .html-code img {
    width: 100%;
    margin: 0;
  }
  .blog main .postWrapper img {
    max-width: 100px;
  }
}
@media screen and (max-width: 560px) {
  .shop-content main .products {
    width: 100%;
    padding-top: 40px!important;
  }
  .shop-content main .products li {
    float: none!important;
    display: block;
    margin: 0 auto!important;
    height: auto;
    margin-bottom: 50px !important;
  }
  .shop-content main .products li:nth-child(3n) {
    margin-right: auto !important;
  }
  .shop-content main .products li:nth-child(2n) {
    margin-right: auto !important;
  }
  .shop-content main .products li .button,
  .shop-content main .products li .added_to_cart {
    display: block;
    float: none;
    width: 160px;
    padding: 10px 40px 10px 20px;
    margin: 0 auto;
    background-color: #f58220;
    color: white;
    font-weight: 600;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    border-radius: 35px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
  }
  .shop-content main .products li .button:after,
  .shop-content main .products li .added_to_cart:after {
    right: 10px;
  }
  .shop-content main .products li .button:hover,
  .shop-content main .products li .added_to_cart:hover {
    background-color: #db6a0a;
    text-decoration: none;
  }
  .shop-content main .products li .button:hover:after,
  .shop-content main .products li .added_to_cart:hover:after {
    background-color: #db6a0a;
    border-color: #db6a0a;
  }
  .shop-content main .products li .button.added,
  .shop-content main .products li .added_to_cart.added {
    display: none;
  }
  .shop-content main .products li a h3 {
    min-height: inherit;
  }
  .shop-content aside {
    padding: 0;
  }
  .home .wrapper .products article {
    width: 80%;
    margin: 0 10% 30px;
    padding: 0;
    text-align: center;
  }
  .home .wrapper .products article h4 {
    min-height: inherit;
  }
  .home .wrapper .products article .more {
    display: block;
    float: none;
    width: 140px;
    padding: 10px 10px 10px 20px;
    margin: 0 auto;
    background-color: #f58220;
    color: white;
    font-weight: 600;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    border-radius: 35px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
  }
  .home .wrapper .products article .more i {
    right: 10px;
  }
  .home .wrapper .products article:last-child {
    padding-bottom: 50px;
    border-bottom: 1px solid #f58220;
  }
  .form li .half {
    float: none;
    display: block;
    width: 100%;
    padding-bottom: 20px;
  }
  .form li .half:last-child {
    padding-left: 0;
  }
  .form li .half:first-child {
    padding-right: 0;
  }
  .button {
    display: block;
    margin: 0 auto;
  }
  .products.upsells {
    width: 250px;
  }
  .content.single-product .shop-content .featured-products {
    padding-top: 20px;
  }
  .content.single-product .shop-content .enrty .single-product-wrapper main .product {
    padding: 0 25px;
  }
  .entry ul.related-posts li.more a:after {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  .hero .slider-outer .slide .slide-content {
    top: 25%;
  }
  .products article {
    width: 300px;
    margin: 0 auto 30px;
    display: block;
    float: none;
  }
  .products article .more {
    display: block;
    float: none;
    width: 160px;
    height: auto;
    padding: 10px 10px 10px 20px;
    margin: 0 auto;
    background-color: #f58220;
    color: white;
    font-weight: 600;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    border-radius: 35px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
  }
  .products article .more .fa {
    float: right;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    transition: all 300ms ease;
  }
  .products article .more:hover {
    background-color: #db6a0a;
    text-decoration: none;
    color: white;
  }
  .products article .more:hover .fa {
    background-color: #db6a0a;
    border-color: #db6a0a;
    color: white;
  }
  footer .col {
    width: 100%;
    height: auto;
    text-align: center;
  }
  footer .col .logo {
    left: 50%;
    margin-left: -65px;
  }
  footer .col .footer-menu {
    margin-bottom: 30px;
  }
  footer .col .footer-menu > li {
    font-weight: 600;
    text-decoration: underline;
    font-size: 16px;
    margin: 10px 0;
  }
  footer .col .footer-menu > li:before {
    display: none;
  }
  footer .col:last-child {
    width: 100%;
  }
  footer .col:last-child img {
    display: block;
    margin: 0 auto;
  }
  footer .col .social {
    display: inline-block;
    margin-top: 30px;
  }
  .login-popup {
    width: 280px;
    margin-left: -140px;
    height: auto;
  }
  .login-popup .login-form p {
    text-align: center;
  }
  .login-popup .login-form p label {
    width: 100%;
  }
  .login-popup .login-form p.login-remember {
    padding: 0;
    width: 100%;
  }
  .login-popup .login-form p.login-submit {
    width: 100%;
  }
  .login-popup .login-form p.login-submit .button-primary {
    float: none;
    width: 100%;
  }
  .login-popup .login-form p input[type="password"],
  .login-popup .login-form p input[type="text"] {
    width: 100%;
  }
  .login-popup .registration-wrapper a {
    display: block;
    width: 100%;
    text-align: center;
  }
  .shop-content main .woocommerce-result-count {
    display: none;
  }
  .shop-content main .woocommerce-ordering {
    float: none;
    display: block;
    width: 80%;
    margin: 0 auto;
  }
  .shop-content aside {
    padding: 0 20px;
  }
  .woocommerce .woocommerce-message {
    text-align: center;
    padding: 1em!important;
  }
  .woocommerce .woocommerce-message:before {
    display: none;
  }
  .catalog .pdf-viewer-wrapper .pdf-viewer-front .wrapper .rig.columns-3 li {
    margin: 0;
  }
  .woocommerce nav.woocommerce-pagination ul li a {
    display: none;
  }
  .woocommerce nav.woocommerce-pagination ul li a.prev,
  .woocommerce nav.woocommerce-pagination ul li a.next {
    display: inline-block;
  }
  .woocommerce nav.woocommerce-pagination ul li .dots {
    display: none;
  }
}
@media screen and (max-height: 430px) {
  header nav ul {
    height: 170px;
  }
}
