/**
 * BxSlider v4.0 - Fully loaded, responsive content slider
 * http://bxslider.com
 *
 * Written by: Steven Wanderski, 2012
 * http://stevenwanderski.com
 * (while drinking Belgian ales and listening to jazz)
 *
 * CEO and founder of bxCreative, LTD
 * http://bxcreative.com
 */


/** RESET AND LAYOUT
===================================*/

.bx-wrapper {
	position: relative;
	margin: 0 auto 60px;
	padding: 0;
	*zoom: 1;
}

.bx-wrapper img {
	max-width: 100%;
	display: block;
}

/** THEME
===================================*/

.bx-wrapper .bx-viewport {
	-moz-box-shadow: 0 0 5px #ccc;
	-webkit-box-shadow: 0 0 5px #ccc;
	box-shadow: 0 0 5px #ccc;
	border: solid #fff 5px;
	left: -5px;
	background: #fff;
}

.bx-wrapper .bx-pager,
.bx-wrapper .bx-controls-auto {
	position: absolute;
	bottom: -30px;
	width: 100%;
}

/* LOADER */

.bx-wrapper .bx-loading {
	min-height: 50px;
	background: url(images/bx_loader.gif) center center no-repeat #fff;
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2000;
}

/* PAGER */

.bx-wrapper .bx-pager {
	text-align: center;
	font-size: .85em;
	font-family: Arial;
	font-weight: bold;
	color: #666;
	padding-top: 20px;
}

.bx-wrapper .bx-pager .bx-pager-item,
.bx-wrapper .bx-controls-auto .bx-controls-auto-item {
	display: inline-block;
	*zoom: 1;
	*display: inline;
}

.bx-wrapper .bx-pager.bx-default-pager a {
	background: #666;
	text-indent: -9999px;
	display: block;
	width: 10px;
	height: 10px;
	margin: 0 5px;
	outline: 0;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}

.bx-wrapper .bx-pager.bx-default-pager a:hover,
.bx-wrapper .bx-pager.bx-default-pager a.active {
	background: #000;
}

/* DIRECTION CONTROLS (NEXT / PREV) */

.bx-wrapper .bx-prev {
	left: 10px;
	background: url(images/controls.png) no-repeat 0 -32px;
}

.bx-wrapper .bx-next {
	right: 10px;
	background: url(images/controls.png) no-repeat -43px -32px;
}



.bx-wrapper .bx-controls-direction a {
	position: absolute;
	top: 50%;
	margin-top: -16px;
	outline: 0;
	width: 32px;
	height: 32px;
	text-indent: -9999px;
	z-index: 9999;
}

.bx-wrapper .bx-controls-direction a.disabled {
	display: none;
}

/* AUTO CONTROLS (START / STOP) */

.bx-wrapper .bx-controls-auto {
	text-align: center;
}

.bx-wrapper .bx-controls-auto .bx-start {
	display: block;
	text-indent: -9999px;
	width: 10px;
	height: 11px;
	outline: 0;
	background: url(images/controls.png) -86px -11px no-repeat;
	margin: 0 3px;
}

.bx-wrapper .bx-controls-auto .bx-start:hover,
.bx-wrapper .bx-controls-auto .bx-start.active {
	background-position: -86px 0;
}

.bx-wrapper .bx-controls-auto .bx-stop {
	display: block;
	text-indent: -9999px;
	width: 9px;
	height: 11px;
	outline: 0;
	background: url(images/controls.png) -86px -44px no-repeat;
	margin: 0 3px;
}

.bx-wrapper .bx-controls-auto .bx-stop:hover,
.bx-wrapper .bx-controls-auto .bx-stop.active {
	background-position: -86px -33px;
}

/* PAGER WITH AUTO-CONTROLS HYBRID LAYOUT */

.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-pager {
	text-align: left;
	width: 80%;
}

.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-controls-auto {
	right: 0;
	width: 35px;
}

/* IMAGE CAPTIONS */

.bx-wrapper .bx-caption {
	position: absolute;
	bottom: 0;
	left: 0;
	background: #666\9;
	background: rgba(80, 80, 80, 0.75);
	width: 100%;
}

.bx-wrapper .bx-caption span {
	color: #fff;
	font-family: Arial;
	display: block;
	font-size: .85em;
	padding: 10px;
}/* line 1, ../../private/scss/_reset.scss */
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;
}

/* line 21, ../../private/scss/_reset.scss */
html, body {
  width: 100%;
  height: 100%;
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
}

/* line 27, ../../private/scss/_reset.scss */
html,
body,
textarea {
  line-height: 1.44;
  font-size: 14px;
}

/* line 33, ../../private/scss/_reset.scss */
a {
  cursor: pointer;
}

/* line 37, ../../private/scss/_reset.scss */
* {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers */
/* line 44, ../../private/scss/_reset.scss */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

/* line 1, ../../private/scss/_grid.scss */
.main-content {
  width: 940px;
  margin: 0 auto;
}

/* line 14, ../../private/scss/_grid.scss */
#about .main-content,
#franchises .main-content,
#what .main-content,
#recycling .main-content,
#quote .main-content,
#work .main-content,
#our-work-info .main-content,
#contact .main-content {
  padding-left: 40px;
  padding-right: 5px;
}
/* line 18, ../../private/scss/_grid.scss */
#about .main-content .title,
#franchises .main-content .title,
#what .main-content .title,
#recycling .main-content .title,
#quote .main-content .title,
#work .main-content .title,
#our-work-info .main-content .title,
#contact .main-content .title {
  padding-right: 40px;
}

/* line 25, ../../private/scss/_grid.scss */
#process .small-nav {
  padding-left: 40px;
}

/* line 1, ../../private/scss/_typography.scss */
h1 {
  font-size: 36px;
}

/* line 4, ../../private/scss/_typography.scss */
h2 {
  font-weight: 400;
  font-size: 32px;
}

/* line 8, ../../private/scss/_typography.scss */
h3 {
  font-size: 28px;
}

/* line 11, ../../private/scss/_typography.scss */
h4 {
  font-size: 24px;
}

/* line 14, ../../private/scss/_typography.scss */
h5 {
  font-size: 22px;
  font-weight: 700;
}

/* line 18, ../../private/scss/_typography.scss */
h6 {
  font-size: 18px;
}

/* line 23, ../../private/scss/_typography.scss */
.title h1 {
  font-size: 36px;
  font-weight: 400;
}
/* line 27, ../../private/scss/_typography.scss */
.title h2 {
  font-size: 32px;
  color: #221E1F;
  line-height: 38px;
}
/* line 32, ../../private/scss/_typography.scss */
.title h5 {
  font-size: 22px;
  color: #333333;
}

/* line 38, ../../private/scss/_typography.scss */
.small-nav a {
  font-weight: 600;
  font-size: 12px;
}

/* line 44, ../../private/scss/_typography.scss */
.banner-normal .content {
  font-size: 36px;
  font-weight: 700;
}

/* line 50, ../../private/scss/_typography.scss */
.project {
  font-size: 12px;
  font-weight: 600;
}

/* line 1, ../../private/scss/_header.scss */
.-overlay {
  position: absolute;
  z-index: 1000000;
  top: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
  height: 5000px;
  background-position: center top;
}

/* line 11, ../../private/scss/_header.scss */
.-overlay.-overlay {
  opacity: 0.3;
  background-repeat: no-repeat;
}

/* line 16, ../../private/scss/_header.scss */
.header {
  width: 100%;
  background-color: white;
  height: 192px;
}

/* line 21, ../../private/scss/_header.scss */
.header .banner {
  width: 960px;
  margin: auto;
}
/* line 24, ../../private/scss/_header.scss */
.header .banner .middle-nav {
  clear: both;
}
/* line 25, ../../private/scss/_header.scss */
.header .banner .middle-nav .nation {
  font-size: 18px;
  color: #CBCBCB;
  font-family: "daniel",cursive;
  margin-left: 53px;
  height: 28px;
  margin-top: 3px;
}
/* line 34, ../../private/scss/_header.scss */
.header .banner .middle-nav .left {
  float: left;
  margin-left: 22px;
  margin-top: 2px;
}
/* line 39, ../../private/scss/_header.scss */
.header .banner .middle-nav .right {
  float: right;
  width: 308px;
  margin-top: 10px;
}
/* line 43, ../../private/scss/_header.scss */
.header .banner .middle-nav .right .quote {
  display: inline-block;
  vertical-align: top;
  float: left;
}
/* line 47, ../../private/scss/_header.scss */
.header .banner .middle-nav .right .quote p {
  color: #CBCBCB;
  font-size: 17.5px;
  font-weight: 600;
}
/* line 53, ../../private/scss/_header.scss */
.header .banner .middle-nav .right .phone-img {
  display: inline-block;
  vertical-align: top;
  float: left;
}
/* line 57, ../../private/scss/_header.scss */
.header .banner .middle-nav .right .phone-img img {
  margin-top: 5px;
}
/* line 61, ../../private/scss/_header.scss */
.header .banner .middle-nav .right .phone {
  display: inline-block;
  vertical-align: top;
  margin-left: 10px;
}
/* line 65, ../../private/scss/_header.scss */
.header .banner .middle-nav .right .phone p {
  color: #FF3333;
  font-size: 17.5px;
  font-weight: 600;
}
/* line 72, ../../private/scss/_header.scss */
.header .banner .middle-nav .same-line {
  display: inline-block;
  vertical-align: top;
}
/* line 77, ../../private/scss/_header.scss */
.header .banner .bottom-nav {
  clear: both;
  background-image: url(/images/nav.png);
  background-position: center;
  background-repeat: no-repeat;
  width: 960px;
  height: 50px;
  margin-top: 97px;
  z-index: 40;
  position: relative;
  top: 7px;
  white-space: nowrap;
}
/* line 89, ../../private/scss/_header.scss */
.header .banner .bottom-nav div {
  padding: 0px 28px;
  padding-right: 24px\9;
  text-align: center;
  margin-top: 14px;
  display: inline-block;
  vertical-align: top;
  border-right: 1px solid #cccccc;
  float: left;
  white-space: nowrap;
}
/* line 99, ../../private/scss/_header.scss */
.header .banner .bottom-nav div a {
  text-decoration: none;
  color: #333333;
  font-size: 12px;
  font-weight: 700;
}
/* line 106, ../../private/scss/_header.scss */
.header .banner .bottom-nav div:last-child {
  border-right: none;
}
/* line 108, ../../private/scss/_header.scss */
.header .banner .bottom-nav div:last-child a {
  color: #FF3333;
}

/* line 115, ../../private/scss/_header.scss */
.top-nav {
  float: right;
  margin-top: 34px;
  width: 265px;
  margin-right: 17px;
  text-align: right;
}
/* line 121, ../../private/scss/_header.scss */
.top-nav .same-line {
  display: inline-block;
  vertical-align: top;
  width: 85px;
  margin-top: -7px;
}
/* line 126, ../../private/scss/_header.scss */
.top-nav .same-line a {
  font-size: 12px;
  text-decoration: none;
  color: black;
  font-weight: 400;
}
/* line 131, ../../private/scss/_header.scss */
.top-nav .same-line a.active {
  color: #CCC;
}

/* line 3, ../../private/scss/_main.scss */
.banner-middle {
  z-index: 30;
  position: relative;
  background-repeat: no-repeat;
  width: 100%;
  height: 383px;
  background-position: center;
  background-size: cover;
}
/* line 12, ../../private/scss/_main.scss */
.banner-middle .content {
  width: 960px;
  margin: auto;
  z-index: 10;
  position: relative;
  height: 383px;
  padding-top: 66px;
}
/* line 19, ../../private/scss/_main.scss */
.banner-middle .content .img {
  display: inline-block;
  vertical-align: top;
  margin-left: 58px;
  margin-top: -2px;
}
/* line 25, ../../private/scss/_main.scss */
.banner-middle .content .title {
  display: inline-block;
  vertical-align: top;
  width: 502px;
  margin-left: 44px;
}
/* line 31, ../../private/scss/_main.scss */
.banner-middle .content .title p {
  color: white;
  font-size: 24px;
  line-height: 33px;
  text-transform: uppercase;
}
/* line 38, ../../private/scss/_main.scss */
.banner-middle .content .link {
  float: right;
  width: 501px;
}
/* line 41, ../../private/scss/_main.scss */
.banner-middle .content .link a {
  color: white;
  font-size: 18px;
  text-decoration: none;
}

/* line 49, ../../private/scss/_main.scss */
.no-found {
  width: 900px;
  height: 350px;
  margin: auto;
  margin-top: 90px;
  font-size: 22px;
  font-weight: bold;
}

/* line 57, ../../private/scss/_main.scss */
#home-nav {
  width: 83px;
  float: left;
}

/* line 61, ../../private/scss/_main.scss */
#about-nav {
  width: 107px;
  float: left;
}

/* line 65, ../../private/scss/_main.scss */
.banner-normal {
  z-index: 30;
  position: relative;
  background-repeat: no-repeat;
  width: 100%;
  height: 107px;
  background-position: center top;
  background-size: cover;
}
/* line 73, ../../private/scss/_main.scss */
.banner-normal .content {
  width: 960px;
  margin: auto;
  z-index: 10;
  position: relative;
  height: 107px;
  padding-top: 31px;
  padding-left: 42px;
  color: white;
}

/* line 85, ../../private/scss/_main.scss */
.bx-wrapper .bx-prev {
  left: -40px;
  background: url(/images/left.png);
  background-repeat: no-repeat;
}

/* line 90, ../../private/scss/_main.scss */
.bx-wrapper .bx-next {
  right: -40px;
  background: url(/images/right.png);
  background-repeat: no-repeat;
}

/* line 95, ../../private/scss/_main.scss */
.bx-wrapper .bx-controls-direction a {
  width: 20px;
  height: 37px;
}

/* line 99, ../../private/scss/_main.scss */
.bx-wrapper .bx-viewport {
  -webkit-box-shadow: 0 0 5px transparent;
  box-shadow: 0 0 5px transparent;
  border: none;
  background-color: transparent;
}

/* line 105, ../../private/scss/_main.scss */
.slide {
  -moz-box-shadow: 10px 10px 5px black;
  -webkit-box-shadow: 10px 10px 5px black;
  box-shadow: 10px 10px 5px black;
  border: none;
}

/* line 111, ../../private/scss/_main.scss */
.bx-wrapper {
  z-index: 20;
}

/* line 115, ../../private/scss/_main.scss */
.footer {
  background-image: url(/images/footer-bg.png);
  background-position: 11% center;
  background-repeat: repeat-x;
  width: 100%;
  height: 404px;
  clear: both;
}
@media only screen and (max-width: 1024px) {
  /* line 115, ../../private/scss/_main.scss */
  .footer {
    background-position: 101% center;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1279px) {
  /* line 115, ../../private/scss/_main.scss */
  .footer {
    background-position: 101% center;
  }
}
@media only screen and (min-width: 1280px) and (max-width: 1440px) {
  /* line 115, ../../private/scss/_main.scss */
  .footer {
    background-position: -133% center;
  }
}
@media only screen and (min-width: 1440px) {
  /* line 115, ../../private/scss/_main.scss */
  .footer {
    background-position: 37% center;
  }
}
/* line 134, ../../private/scss/_main.scss */
.footer .container {
  width: 960px;
  margin: auto;
}
/* line 137, ../../private/scss/_main.scss */
.footer .container .site {
  float: right;
  text-align: right;
  color: #999999;
  font-size: 14px;
  margin-top: 83px;
  margin-right: 21px;
  letter-spacing: 0.6px;
}
/* line 145, ../../private/scss/_main.scss */
.footer .container .site a {
  text-decoration: none;
  color: #999999;
  font-size: 14px;
}

/* line 154, ../../private/scss/_main.scss */
#events-s_pag {
  margin-right: 20px;
}

/* line 157, ../../private/scss/_main.scss */
.clearfix {
  float: none;
  clear: both;
}

/* line 161, ../../private/scss/_main.scss */
.grey {
  color: #999999;
}

/* line 165, ../../private/scss/_main.scss */
.dialable {
  color: inherit;
  text-decoration: inherit;
}

/* line 2, ../../private/scss/_image-carousel.scss */
.slide-ad .list_carousel {
  position: relative;
  padding: 15px 0 15px 0px;
  width: 960px;
  height: 200px;
  margin: auto;
}
/* line 8, ../../private/scss/_image-carousel.scss */
.slide-ad .list_carousel .slide-info {
  margin-left: 22%;
  margin-top: -80px;
  margin-bottom: 19px;
  width: 730px;
}
/* line 13, ../../private/scss/_image-carousel.scss */
.slide-ad .list_carousel .slide-info h4 {
  font-size: 18px;
  font-weight: bold;
  color: white;
}
/* line 18, ../../private/scss/_image-carousel.scss */
.slide-ad .list_carousel .slide-info p {
  font-size: 16px;
  color: white;
}
/* line 24, ../../private/scss/_image-carousel.scss */
.slide-ad .list_carousel ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: block;
}
/* line 30, ../../private/scss/_image-carousel.scss */
.slide-ad .list_carousel li {
  margin-right: 10px;
  margin-left: 10px;
  margin-top: 10px;
  margin-bottom: 30px;
  display: block;
  float: left;
  z-index: 100;
  position: relative;
  width: 220px;
}
/* line 41, ../../private/scss/_image-carousel.scss */
.slide-ad .list_carousel #home-s img {
  -webkit-box-shadow: 0px 13px 7px rgba(0, 0, 0, 0.13);
  -moz-box-shadow: 0px 13px 7px rgba(0, 0, 0, 0.13);
  box-shadow: 0px 13px 7px rgba(0, 0, 0, 0.13);
}

/* line 50, ../../private/scss/_image-carousel.scss */
.image_carousel {
  position: relative;
}

/* line 53, ../../private/scss/_image-carousel.scss */
.image_carousel img {
  -moz-box-shadow: #CCC 5px 5px 10px;
  -webkit-box-shadow: #CCC 5px 5px 10px;
  box-shadow: #CCC 5px 5px 10px;
  margin-right: 10px;
  margin-top: 10px;
  margin-bottom: 30px;
  display: block;
  float: left;
  z-index: 100;
  position: relative;
}

/* line 64, ../../private/scss/_image-carousel.scss */
.image_carousel #home-s img {
  -webkit-box-shadow: 0px 13px 7px rgba(0, 0, 0, 0.13);
  -moz-box-shadow: 0px 13px 7px rgba(0, 0, 0, 0.13);
  box-shadow: 0px 13px 7px rgba(0, 0, 0, 0.13);
}

/* line 71, ../../private/scss/_image-carousel.scss */
a.prev, a.next {
  width: 45px;
  height: 50px;
  display: block;
  position: absolute;
  top: 77px;
}

/* line 78, ../../private/scss/_image-carousel.scss */
a.prev {
  left: -38px;
  background-position: 0 0;
  background-image: url(/images/left.png);
  background-repeat: no-repeat;
}

/* line 85, ../../private/scss/_image-carousel.scss */
a.prev.disabled {
  background-image: url(/images/left.png);
}

/* line 88, ../../private/scss/_image-carousel.scss */
a.next {
  right: -54px;
  background-image: url(/images/right.png);
  background-repeat: no-repeat;
}

/* line 94, ../../private/scss/_image-carousel.scss */
a.next.disabled {
  background-image: url(/images/right.png);
}

/* line 98, ../../private/scss/_image-carousel.scss */
a.prev span, a.next span {
  display: none;
}

/* line 102, ../../private/scss/_image-carousel.scss */
.pagination {
  text-align: right;
  margin-top: -6px;
  padding-right: 30px;
}

/* line 107, ../../private/scss/_image-carousel.scss */
.pagination a {
  background: url(/images/page.png);
  background-repeat: no-repeat;
  width: 12px;
  height: 12px;
  margin: 0 9px 0 0;
  display: inline-block;
}

/* line 115, ../../private/scss/_image-carousel.scss */
.pagination a.selected {
  cursor: default;
}

/* line 118, ../../private/scss/_image-carousel.scss */
.pagination a span {
  display: none;
}

/* line 1, ../../private/scss/_small-nav.scss */
.small-nav {
  margin-top: 50px;
}
/* line 3, ../../private/scss/_small-nav.scss */
.small-nav img {
  position: relative;
  top: -1px;
}
/* line 7, ../../private/scss/_small-nav.scss */
.small-nav a {
  text-decoration: none;
  color: #333333;
}
/* line 10, ../../private/scss/_small-nav.scss */
.small-nav a:last-child {
  color: #FF3333;
}
/* line 14, ../../private/scss/_small-nav.scss */
.small-nav a, .small-nav img {
  margin-right: 10px;
  display: inline-block;
}

/* line 2, ../../private/scss/pages/_home.scss */
#home {
  background-image: url(/images/bg-letter.png);
  background-position: center 185px;
  background-repeat: no-repeat;
  min-width: 1070px;
  overflow: hidden;
}

/* line 10, ../../private/scss/pages/_home.scss */
#home .image_carousel img {
  margin-left: 10px;
}

/* line 14, ../../private/scss/pages/_home.scss */
#home .banner-middle .title {
  font-weight: 600;
  float: right;
  margin-top: 50px;
}

/* line 21, ../../private/scss/pages/_home.scss */
#home .title {
  margin-top: 0;
}
/* line 25, ../../private/scss/pages/_home.scss */
#home .main-text {
  width: 960px;
  margin: auto;
  margin-top: 150px;
}
/* line 29, ../../private/scss/pages/_home.scss */
#home .main-text .left {
  width: 544px;
  display: inline-block;
  vertical-align: top;
  margin-left: 40px;
  float: left;
}
/* line 35, ../../private/scss/pages/_home.scss */
#home .main-text .left .text {
  font-size: 18px;
  color: #221E1F;
}
/* line 38, ../../private/scss/pages/_home.scss */
#home .main-text .left .text > div {
  min-height: 330px;
}
/* line 41, ../../private/scss/pages/_home.scss */
#home .main-text .left .text p {
  letter-spacing: 0.1px;
  line-height: 24px;
}
/* line 46, ../../private/scss/pages/_home.scss */
#home .main-text .left .title {
  margin-bottom: 20px;
}
/* line 48, ../../private/scss/pages/_home.scss */
#home .main-text .left .title h1 {
  display: initial;
  font-size: 36px;
  color: #221E1F;
  font-weight: bold;
}
/* line 54, ../../private/scss/pages/_home.scss */
#home .main-text .left .title h1:last-child {
  color: #ED2028;
}
/* line 59, ../../private/scss/pages/_home.scss */
#home .main-text .right {
  width: 291px;
  display: inline-block;
  vertical-align: top;
  margin-top: -36px;
  margin-right: 30px;
}
/* line 65, ../../private/scss/pages/_home.scss */
#home .main-text .right .image-container {
  width: 291px;
  height: 365px;
}
/* line 71, ../../private/scss/pages/_home.scss */
#home .funny-word {
  margin-left: 31px;
  margin-top: -54px;
}
/* line 74, ../../private/scss/pages/_home.scss */
#home .funny-word .f-left {
  display: inline-block;
  vertical-align: top;
}
/* line 78, ../../private/scss/pages/_home.scss */
#home .funny-word .f-right {
  display: inline-block;
  vertical-align: top;
  font-family: "daniel",cursive;
  width: 170px;
  font-size: 26.29px;
  margin-top: 21px;
  margin-left: 20px;
  letter-spacing: 1px;
}

/* line 91, ../../private/scss/pages/_home.scss */
.slide-ad {
  background-color: rgba(0, 0, 0, 0.2);
  width: 100%;
  height: 219px;
  padding-top: 20px;
}
/* line 96, ../../private/scss/pages/_home.scss */
.slide-ad .center {
  width: 960px;
  margin: auto;
}

/* line 101, ../../private/scss/pages/_home.scss */
.text-slide {
  bottom: 100px;
  position: relative;
  left: 24px;
}
/* line 105, ../../private/scss/pages/_home.scss */
.text-slide p {
  font-size: 22px;
  color: white;
  font-weight: bold;
  line-height: 26px;
}
/* line 111, ../../private/scss/pages/_home.scss */
.text-slide a {
  text-decoration: none;
  font-size: 12px;
  color: #999999;
  text-transform: uppercase;
  font-weight: bold;
}

/* line 119, ../../private/scss/pages/_home.scss */
.red-overlay {
  width: 220px;
  height: 147px;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(132, 0, 0, 0.9);
  opacity: 0.8;
  filter: alpha(opacity=80);
}

/* line 129, ../../private/scss/pages/_home.scss */
.rotate-block {
  width: 291px;
  height: 365px;
  position: relative;
}
/* line 133, ../../private/scss/pages/_home.scss */
.rotate-block img.bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
}
/* line 139, ../../private/scss/pages/_home.scss */
.rotate-block img.re {
  -moz-transform: rotate(9deg);
  -ms-transform: rotate(9deg);
  -webkit-transform: rotate(9deg);
  transform: rotate(9deg);
  position: absolute;
  top: 45px;
  left: 44px;
  height: 265px;
}

/* line 5, ../../private/scss/pages/_about.scss */
#about .content .main-text {
  margin-top: 50px;
}
/* line 7, ../../private/scss/pages/_about.scss */
#about .content .main-text .left {
  width: 537px;
  display: inline-block;
  float: left;
}
/* line 11, ../../private/scss/pages/_about.scss */
#about .content .main-text .left p {
  font-size: 18px;
  color: #221E1F;
  line-height: 24px;
}
/* line 19, ../../private/scss/pages/_about.scss */
#about .content .main-text .right .image-text {
  margin-top: 55px;
  width: 284px;
  font-family: "daniel",cursive;
  color: #333333;
  font-size: 26.29px;
  text-align: center;
}
/* line 27, ../../private/scss/pages/_about.scss */
#about .content .main-text .right .image-text img {
  position: relative;
  top: -12px;
}

/* line 1, ../../private/scss/pages/_franchises.scss */
#franchises-nav {
  width: 63px;
}

/* line 7, ../../private/scss/pages/_franchises.scss */
#franchises .content .main-text {
  margin-top: 50px;
}
/* line 9, ../../private/scss/pages/_franchises.scss */
#franchises .content .main-text .left {
  width: 557px;
  display: inline-block;
}
/* line 12, ../../private/scss/pages/_franchises.scss */
#franchises .content .main-text .left p {
  font-size: 18px;
  color: #221E1F;
}
/* line 19, ../../private/scss/pages/_franchises.scss */
#franchises .content .main-text .right .image-text {
  margin-top: 40px;
  width: 180px;
  font-family: "daniel",cursive;
  color: #333333;
  font-size: 26.29px;
  text-align: center;
  margin-left: 59px;
}
/* line 28, ../../private/scss/pages/_franchises.scss */
#franchises .content .main-text .right .image-text img {
  position: relative;
  left: -30px;
}

/* line 1, ../../private/scss/pages/_our-processes.scss */
#process {
  clear: both;
}

/* line 3, ../../private/scss/pages/_what-we-do.scss */
#what .content .title {
  margin-bottom: 30px;
}
/* line 7, ../../private/scss/pages/_what-we-do.scss */
#what .content .what-nav div {
  display: inline-block;
}
/* line 9, ../../private/scss/pages/_what-we-do.scss */
#what .content .what-nav div a {
  letter-spacing: 0px;
  color: #333333;
  font-size: 16.37px;
  text-decoration: none;
}
/* line 18, ../../private/scss/pages/_what-we-do.scss */
#what .what-nav select {
  width: 280px;
  cursor: pointer;
}
/* line 23, ../../private/scss/pages/_what-we-do.scss */
#what select option {
  padding: 5px 10px;
}
/* line 27, ../../private/scss/pages/_what-we-do.scss */
#what .customSelect {
  background: transparent;
  width: 280px;
  padding: 7px;
  padding-left: 17px;
  font-size: 15px;
  text-decoration: none;
  height: 40px;
  border: 1px solid black;
  text-align: left;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: url(/images/select-triangle.png) no-repeat 255px;
}

/* line 42, ../../private/scss/pages/_what-we-do.scss */
#what .image_carousel {
  overflow: hidden;
  width: 395px;
  height: 309px;
}

/* line 47, ../../private/scss/pages/_what-we-do.scss */
.left-content-item {
  overflow: hidden;
  margin-bottom: 43px;
}
/* line 50, ../../private/scss/pages/_what-we-do.scss */
.left-content-item .link-to-next {
  float: left;
  margin-top: 20px;
}
/* line 54, ../../private/scss/pages/_what-we-do.scss */
.left-content-item .sub-content {
  margin-top: -16px;
}
/* line 57, ../../private/scss/pages/_what-we-do.scss */
.left-content-item .sub-content .left {
  width: 380px;
  float: left;
}
/* line 60, ../../private/scss/pages/_what-we-do.scss */
.left-content-item .sub-content .left .normal-image {
  margin-top: 21px;
}
/* line 62, ../../private/scss/pages/_what-we-do.scss */
.left-content-item .sub-content .left .normal-image img {
  -moz-box-shadow: 3px 3px 5px 6px #EEEEEE;
  -webkit-box-shadow: 3px 3px 5px 6px #EEEEEE;
  box-shadow: 3px 3px 5px 6px #EEEEEE;
  margin: 9px;
  width: 382px;
}
/* line 70, ../../private/scss/pages/_what-we-do.scss */
.left-content-item .sub-content .left .funny-word {
  margin-left: 20px;
}
/* line 72, ../../private/scss/pages/_what-we-do.scss */
.left-content-item .sub-content .left .funny-word .f-left {
  display: inline-block;
  vertical-align: top;
}
/* line 76, ../../private/scss/pages/_what-we-do.scss */
.left-content-item .sub-content .left .funny-word .f-right {
  display: inline-block;
  vertical-align: top;
  font-family: "daniel",cursive;
  width: 290px;
  font-size: 26.29px;
  margin-top: 21px;
  margin-left: 20px;
}
/* line 87, ../../private/scss/pages/_what-we-do.scss */
.left-content-item .sub-content .right {
  width: 455px;
  float: left;
  margin-left: 60px;
}
/* line 94, ../../private/scss/pages/_what-we-do.scss */
.left-content-item .sub-content .right .sub-title h2 {
  font-size: 32px;
  color: #221E1F;
  line-height: 38px;
}
/* line 101, ../../private/scss/pages/_what-we-do.scss */
.left-content-item .sub-content .right .context p {
  margin-top: 23px;
  font-size: 18px;
  color: #221E1F;
  line-height: 24px;
}

/* line 113, ../../private/scss/pages/_what-we-do.scss */
#transport .f-left {
  position: relative;
  left: 35px;
  top: -5px;
}

/* line 120, ../../private/scss/pages/_what-we-do.scss */
.right-content-item {
  margin-bottom: 20px;
}
/* line 122, ../../private/scss/pages/_what-we-do.scss */
.right-content-item .link-to-next {
  float: left;
  margin-top: 20px;
}
/* line 126, ../../private/scss/pages/_what-we-do.scss */
.right-content-item .sub-content {
  margin-top: -16px;
}
/* line 128, ../../private/scss/pages/_what-we-do.scss */
.right-content-item .sub-content .left {
  width: 498px;
  margin-right: 9px;
  float: left;
}
/* line 134, ../../private/scss/pages/_what-we-do.scss */
.right-content-item .sub-content .left .sub-title h2 {
  font-size: 32px;
  color: #221E1F;
  line-height: 38px;
}
/* line 141, ../../private/scss/pages/_what-we-do.scss */
.right-content-item .sub-content .left .context p {
  margin-top: 23px;
  font-size: 18px;
  color: #221E1F;
  line-height: 23px;
  padding-right: 20px;
}
/* line 150, ../../private/scss/pages/_what-we-do.scss */
.right-content-item .sub-content .right {
  width: 365px;
  margin-right: 20px;
  display: inline-block;
  float: right;
  vertical-align: top;
}
/* line 157, ../../private/scss/pages/_what-we-do.scss */
.right-content-item .sub-content .right .normal-image {
  margin-top: 21px;
}
/* line 159, ../../private/scss/pages/_what-we-do.scss */
.right-content-item .sub-content .right .normal-image img {
  -moz-box-shadow: 3px 3px 5px 6px #EEEEEE;
  -webkit-box-shadow: 3px 3px 5px 6px #EEEEEE;
  box-shadow: 3px 3px 5px 6px #EEEEEE;
  margin: 9px;
  width: 382px;
}
/* line 167, ../../private/scss/pages/_what-we-do.scss */
.right-content-item .sub-content .right .funny-word {
  margin-left: 46px;
  margin-top: 13px;
}
/* line 170, ../../private/scss/pages/_what-we-do.scss */
.right-content-item .sub-content .right .funny-word .f-left {
  display: inline-block;
  vertical-align: top;
  margin-left: 32px;
}
/* line 175, ../../private/scss/pages/_what-we-do.scss */
.right-content-item .sub-content .right .funny-word .f-right {
  display: inline-block;
  vertical-align: top;
  font-family: "daniel",cursive;
  width: 222px;
  font-size: 26.29px;
  margin-top: 21px;
  text-align: center;
}

/* line 190, ../../private/scss/pages/_what-we-do.scss */
#events .sub-content .right .funny-word {
  position: relative;
}
/* line 193, ../../private/scss/pages/_what-we-do.scss */
#events .sub-content .right .funny-word .f-left {
  position: absolute;
  left: -30px;
  top: -10px;
}
/* line 199, ../../private/scss/pages/_what-we-do.scss */
#events .sub-content .right .funny-word .f-right {
  width: 280px;
}

/* line 6, ../../private/scss/pages/_recycling.scss */
#recycling .content .title h2 {
  font-size: 32px;
  color: #221E1F;
  line-height: 33px;
}
/* line 12, ../../private/scss/pages/_recycling.scss */
#recycling .content .title h5 {
  font-size: 22px;
  color: #333333;
  margin-bottom: 30px;
}
/* line 18, ../../private/scss/pages/_recycling.scss */
#recycling .content .main-text {
  margin-top: 50px;
}
/* line 20, ../../private/scss/pages/_recycling.scss */
#recycling .content .main-text .left {
  width: 520px;
  float: left;
}
/* line 24, ../../private/scss/pages/_recycling.scss */
#recycling .content .main-text .left p {
  font-size: 18px;
  color: #221E1F;
  line-height: 25px;
}
/* line 30, ../../private/scss/pages/_recycling.scss */
#recycling .content .main-text .right {
  width: 220px;
  display: inline-block;
  vertical-align: top;
  float: right;
  margin-right: 57px;
}
/* line 36, ../../private/scss/pages/_recycling.scss */
#recycling .content .main-text .right .image-text {
  margin-top: 40px;
  width: 180px;
  font-family: "daniel",cursive;
  color: #333333;
  font-size: 26.29px;
  text-align: center;
}

/* line 7, ../../private/scss/pages/_our-work-info.scss */
#our-work-info .content .title h2 {
  font-size: 32px;
  color: #221E1F;
  line-height: 33px;
}
/* line 12, ../../private/scss/pages/_our-work-info.scss */
#our-work-info .content .title h5 {
  font-size: 22px;
  color: #333333;
}
/* line 17, ../../private/scss/pages/_our-work-info.scss */
#our-work-info .content .main-text {
  margin-top: 50px;
}
/* line 19, ../../private/scss/pages/_our-work-info.scss */
#our-work-info .content .main-text .left {
  width: 488px;
  margin-right: 30px;
  float: left;
}
/* line 24, ../../private/scss/pages/_our-work-info.scss */
#our-work-info .content .main-text .left .image-text {
  width: 304px;
  font-family: "daniel", cursive;
  color: #333333;
  font-size: 26.29px;
  text-align: center;
  margin-left: 51px;
}
/* line 33, ../../private/scss/pages/_our-work-info.scss */
#our-work-info .content .main-text .left .image-text img {
  display: inline-block;
  margin-right: 20px;
}
/* line 39, ../../private/scss/pages/_our-work-info.scss */
#our-work-info .content .main-text .right {
  width: 370px;
  float: right;
}
/* line 43, ../../private/scss/pages/_our-work-info.scss */
#our-work-info .content .main-text .right h2 {
  line-height: 38px;
}
/* line 46, ../../private/scss/pages/_our-work-info.scss */
#our-work-info .content .main-text .right p {
  font-size: 18px;
  color: #221E1F;
  line-height: 23px;
}
/* line 51, ../../private/scss/pages/_our-work-info.scss */
#our-work-info .content .main-text .right .project {
  margin-top: 20px;
}
/* line 54, ../../private/scss/pages/_our-work-info.scss */
#our-work-info .content .main-text .right .project img {
  top: -1px;
  position: relative;
}

/* line 3, ../../private/scss/pages/_our-work.scss */
#work .content .work-nav {
  margin-top: 30px;
  margin-bottom: 50px;
}
/* line 7, ../../private/scss/pages/_our-work.scss */
#work .content .item-container {
  width: 940px;
  margin: auto;
  letter-spacing: 21px;
}
/* line 11, ../../private/scss/pages/_our-work.scss */
#work .content .item-container .item {
  width: 208px;
  height: 200px;
  display: inline-block;
  text-align: left;
  margin-bottom: 34px;
  position: relative;
}
/* line 19, ../../private/scss/pages/_our-work.scss */
#work .content .item-container .item:hover .project-title {
  display: block;
}
/* line 23, ../../private/scss/pages/_our-work.scss */
#work .content .item-container .item .red-overlay {
  position: absolute;
  width: 210px;
  height: 140px;
  top: 0;
  background-color: rgba(132, 0, 0, 0.9);
  opacity: 0.8;
  display: none;
  pointer-events: none;
  filter: alpha(opacity=80);
}
/* line 34, ../../private/scss/pages/_our-work.scss */
#work .content .item-container .item .project-title {
  position: absolute;
  letter-spacing: 0px;
  color: white;
  text-align: center;
  display: none;
  font-size: 14px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 55px;
  width: 210px;
  padding: 0px 10px;
  text-shadow: #444444 1px 2px 10px;
}
/* line 49, ../../private/scss/pages/_our-work.scss */
#work .content .item-container .item:hover .red-overlay {
  display: block;
}
/* line 52, ../../private/scss/pages/_our-work.scss */
#work .content .item-container .item a {
  text-decoration: none;
  color: #999999;
  font-size: 11px;
  letter-spacing: 0px;
  text-align: left;
}
/* line 60, ../../private/scss/pages/_our-work.scss */
#work .content .item-container .item > img {
  width: 208px;
  height: 163px;
  cursor: pointer;
}
/* line 68, ../../private/scss/pages/_our-work.scss */
#work .content .item-container .empty {
  letter-spacing: 0px;
  font-style: italic;
  font-size: 18px;
}
/* line 75, ../../private/scss/pages/_our-work.scss */
#work .work-nav select {
  width: 280px;
  cursor: pointer;
}
/* line 79, ../../private/scss/pages/_our-work.scss */
#work select option {
  padding: 5px 10px;
}
/* line 83, ../../private/scss/pages/_our-work.scss */
#work .customSelect {
  background: transparent;
  width: 280px;
  padding: 7px;
  padding-left: 17px;
  color: #EEEEEE;
  color: #333333;
  font-size: 15px;
  text-decoration: none;
  height: 40px;
  border: 1px solid black;
  text-align: left;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: url(/images/select-triangle.png) no-repeat 255px;
}

/* line 2, ../../private/scss/pages/_quote.scss */
#quote .red {
  color: #FF3333;
}
/* line 5, ../../private/scss/pages/_quote.scss */
#quote .bold {
  font-weight: 600;
}
/* line 12, ../../private/scss/pages/_quote.scss */
#quote .content .title h2 {
  font-size: 32px;
  color: #221E1F;
  line-height: 36px;
}
/* line 17, ../../private/scss/pages/_quote.scss */
#quote .content .title h5 {
  font-size: 22px;
  color: #333333;
}
/* line 22, ../../private/scss/pages/_quote.scss */
#quote .content .main-text {
  position: relative;
}
/* line 25, ../../private/scss/pages/_quote.scss */
#quote .content .main-text .left {
  width: 300px;
  float: left;
}
/* line 29, ../../private/scss/pages/_quote.scss */
#quote .content .main-text .left .line {
  margin-top: -7px;
}
/* line 31, ../../private/scss/pages/_quote.scss */
#quote .content .main-text .left .line h5 {
  font-size: 22px;
  margin-bottom: 20px;
  margin-top: 70px;
  margin-bottom: 30px;
}
/* line 37, ../../private/scss/pages/_quote.scss */
#quote .content .main-text .left .line p {
  line-height: 31px;
  font-size: 18px;
}
/* line 41, ../../private/scss/pages/_quote.scss */
#quote .content .main-text .left .line a {
  font-size: 18px;
  text-decoration: none;
  color: black;
}
/* line 48, ../../private/scss/pages/_quote.scss */
#quote .content .main-text .right {
  width: 484px;
  display: inline-block;
  vertical-align: top;
  float: right;
  margin-right: 21px;
  position: absolute;
  left: 420px;
}
/* line 57, ../../private/scss/pages/_quote.scss */
#quote .content .main-text .right .upload-info {
  font-family: "daniel",cursive;
  color: #333333;
  font-size: 26.29px;
  position: absolute;
  top: 464px;
  right: 43px;
  width: 209px;
  text-align: center;
}
/* line 66, ../../private/scss/pages/_quote.scss */
#quote .content .main-text .right .upload-info img {
  position: relative;
  top: -38px;
  right: -38px;
}
/* line 73, ../../private/scss/pages/_quote.scss */
#quote .content .main-text .right .sub-title h5 {
  font-size: 22px;
  margin-bottom: 20px;
  margin-top: 63px;
}
/* line 79, ../../private/scss/pages/_quote.scss */
#quote .content .main-text .right .basic {
  width: 205px;
  height: 38px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  border: 1px solid #A0A0A0;
  margin-bottom: 12px;
  padding-left: 10px;
  background: white;
}
/* line 90, ../../private/scss/pages/_quote.scss */
#quote .content .main-text .right .basic-area {
  width: 205px;
  height: 96px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  border: 1px solid #A0A0A0;
  padding-top: 7px;
  padding-left: 10px;
}
/* line 100, ../../private/scss/pages/_quote.scss */
#quote .content .main-text .right .button-contact {
  background-color: #656565;
  color: white;
  font-size: 13px;
  width: 136px;
  height: 38px;
  border: none;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 38px;
}
/* line 113, ../../private/scss/pages/_quote.scss */
#quote .content .main-text .right form p {
  font-size: 13px;
}
/* line 116, ../../private/scss/pages/_quote.scss */
#quote .content .main-text .right input[type="file"] {
  position: absolute;
  display: none;
}
/* line 120, ../../private/scss/pages/_quote.scss */
#quote .content .main-text .right .button-group {
  display: inline-block;
  vertical-align: top;
}
/* line 124, ../../private/scss/pages/_quote.scss */
#quote .content .main-text .right #display-file {
  height: 38px;
  width: 205px;
  text-decoration: none;
  border: 1px solid #A0A0A0;
  border-radius: 3px;
  vertical-align: top;
  margin-right: 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #aaa;
  text-indent: 5px;
}

/* line 2, ../../private/scss/pages/_contact.scss */
#contact .red {
  color: #FF3333;
}
/* line 6, ../../private/scss/pages/_contact.scss */
#contact .bold {
  font-weight: bold;
}
/* line 10, ../../private/scss/pages/_contact.scss */
#contact .content {
  margin: auto;
  width: 960px;
}
/* line 14, ../../private/scss/pages/_contact.scss */
#contact .content .title {
  width: 892px;
}
/* line 17, ../../private/scss/pages/_contact.scss */
#contact .content .title h2 {
  font-size: 32px;
  color: #221E1F;
  line-height: 33px;
}
/* line 23, ../../private/scss/pages/_contact.scss */
#contact .content .title h5 {
  font-size: 22px;
  color: #333333;
  font-weight: bold;
  margin-bottom: 42px;
}
/* line 32, ../../private/scss/pages/_contact.scss */
#contact .content .main-text .left {
  width: 450px;
  display: inline-block;
  vertical-align: top;
  margin-top: 21px;
  position: relative;
  float: left;
}
/* line 41, ../../private/scss/pages/_contact.scss */
#contact .content .main-text .left .info h5 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 28px;
  margin-top: 57px;
}
/* line 48, ../../private/scss/pages/_contact.scss */
#contact .content .main-text .left .info a {
  font-size: 18px;
  text-decoration: none;
  color: black;
}
/* line 55, ../../private/scss/pages/_contact.scss */
#contact .content .main-text .left .info > p {
  line-height: 30px;
  font-size: 18px;
}
/* line 60, ../../private/scss/pages/_contact.scss */
#contact .content .main-text .left .basic {
  width: 205px;
  height: 38px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  border: 1px solid #A0A0A0;
  padding-left: 10px;
  background: white;
}
/* line 71, ../../private/scss/pages/_contact.scss */
#contact .content .main-text .left .basic-area {
  width: 205px;
  padding-left: 10px;
  padding-top: 7px;
  height: 96px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  border: 1px solid #A0A0A0;
}
/* line 82, ../../private/scss/pages/_contact.scss */
#contact .content .main-text .left .button-contact {
  background-color: #656565;
  color: white;
  font-size: 13px;
  width: 130px;
  height: 38px;
  border: none;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 19px;
  font-weight: bold;
}
/* line 97, ../../private/scss/pages/_contact.scss */
#contact .content .main-text .left form p {
  font-size: 13px;
  margin-bottom: 2px;
  margin-top: 3px;
  letter-spacing: 1px;
}
/* line 104, ../../private/scss/pages/_contact.scss */
#contact .content .main-text .left form .font-18 {
  font-size: 18px;
}
/* line 108, ../../private/scss/pages/_contact.scss */
#contact .content .main-text .left input[type="file"] {
  position: absolute;
  display: none;
}
/* line 113, ../../private/scss/pages/_contact.scss */
#contact .content .main-text .left .button-group {
  display: inline-block;
  vertical-align: top;
}
/* line 118, ../../private/scss/pages/_contact.scss */
#contact .content .main-text .left #display-file {
  height: 38px;
  width: 205px;
  text-decoration: none;
  border: 1px solid #A0A0A0;
  border-radius: 3px;
  vertical-align: top;
  margin-right: 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #aaa;
  text-indent: 5px;
}
/* line 132, ../../private/scss/pages/_contact.scss */
#contact .content .main-text .left .upload-info {
  font-family: "daniel",cursive;
  color: #333333;
  font-size: 26.29px;
  position: absolute;
  top: 600px;
  right: 0px;
  width: 209px;
  text-align: center;
}
/* line 142, ../../private/scss/pages/_contact.scss */
#contact .content .main-text .left .upload-info img {
  position: relative;
  top: -31px;
  right: -38px;
}
/* line 149, ../../private/scss/pages/_contact.scss */
#contact .content .main-text .left .sub-title {
  position: relative;
}
/* line 152, ../../private/scss/pages/_contact.scss */
#contact .content .main-text .left .sub-title .require {
  font-size: 13px;
  position: absolute;
  top: 304px;
  right: 80px;
  letter-spacing: 1px;
}
/* line 159, ../../private/scss/pages/_contact.scss */
#contact .content .main-text .left .sub-title .require .contact-check {
  margin-top: 2px;
  letter-spacing: 1px;
}
/* line 166, ../../private/scss/pages/_contact.scss */
#contact .content .main-text .left .area {
  margin-top: 10px;
}
/* line 171, ../../private/scss/pages/_contact.scss */
#contact .content .main-text .right {
  width: 484px;
  display: inline-block;
  vertical-align: top;
  float: right;
  margin-top: 148px;
  margin-right: 15px;
}
/* line 182, ../../private/scss/pages/_contact.scss */
#contact .bottom-address {
  clear: both;
  width: 960px;
  text-align: left;
  top: 70px;
  position: relative;
  margin-bottom: 150px;
}
/* line 190, ../../private/scss/pages/_contact.scss */
#contact .bottom-address .same-line {
  display: inline-block;
  vertical-align: top;
  text-align: left;
  letter-spacing: 0px;
  margin-top: 50px;
  width: 300px;
}
/* line 198, ../../private/scss/pages/_contact.scss */
#contact .bottom-address .same-line h5 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 15px;
  width: 280px;
}
/* line 205, ../../private/scss/pages/_contact.scss */
#contact .bottom-address .same-line p {
  line-height: 31px;
  font-size: 18px;
}
/* line 210, ../../private/scss/pages/_contact.scss */
#contact .bottom-address .same-line a {
  line-height: 23px;
  font-size: 18px;
  text-decoration: none;
  color: black;
}

/* line 3, ../../private/scss/pages/_blog.scss */
#blog .content {
  text-transform: uppercase;
}
/* line 7, ../../private/scss/pages/_blog.scss */
#blog .main-content {
  overflow: hidden;
}
/* line 10, ../../private/scss/pages/_blog.scss */
#blog .main-content .small-nav {
  margin-top: 61px;
  margin-left: 34px;
}
/* line 15, ../../private/scss/pages/_blog.scss */
#blog .main-content .content-main .left-blog {
  display: inline-block;
  vertical-align: top;
  float: left;
  border-bottom: 1px solid #cccccc;
  width: 666px;
  margin-top: 47px;
  margin-left: 33px;
}
/* line 23, ../../private/scss/pages/_blog.scss */
#blog .main-content .content-main .left-blog .items {
  border-top: 1px solid #cccccc;
  overflow: hidden;
  padding-top: 39px;
  padding-bottom: 19px;
}
/* line 29, ../../private/scss/pages/_blog.scss */
#blog .main-content .content-main .left-blog .items .left-item {
  display: inline-block;
  vertical-align: top;
  float: left;
  color: #999999;
  width: 78px;
  font-size: 15px;
  line-height: 22px;
}
/* line 39, ../../private/scss/pages/_blog.scss */
#blog .main-content .content-main .left-blog .items .right-item {
  display: inline-block;
  vertical-align: top;
  float: right;
  width: 569px;
}
/* line 48, ../../private/scss/pages/_blog.scss */
#blog .main-content .content-main .right-archive {
  display: inline-block;
  vertical-align: top;
  float: right;
}

/* line 57, ../../private/scss/pages/_blog.scss */
#blog .items .right-item .title {
  font-size: 38px;
  margin-top: -14px;
  line-height: 51px;
}
/* line 61, ../../private/scss/pages/_blog.scss */
#blog .items .right-item .title a {
  color: black;
  text-decoration: none;
}
/* line 66, ../../private/scss/pages/_blog.scss */
#blog .items .right-item .content-text {
  margin-top: 22px;
  font-size: 19px;
  line-height: 25px;
}
/* line 71, ../../private/scss/pages/_blog.scss */
#blog .items .right-item .tags {
  margin-top: 38px;
}
/* line 73, ../../private/scss/pages/_blog.scss */
#blog .items .right-item .tags .tag-label {
  display: inline-block;
  vertical-align: top;
  color: black;
  font-weight: bold;
  font-size: 12px;
}
/* line 80, ../../private/scss/pages/_blog.scss */
#blog .items .right-item .tags .tag-list {
  display: inline-block;
  vertical-align: top;
  list-style: none;
  margin-left: 9px;
}
/* line 85, ../../private/scss/pages/_blog.scss */
#blog .items .right-item .tags .tag-list li {
  display: inline-block;
  vertical-align: top;
  color: red;
  font-weight: bold;
  font-size: 12px;
  border-right: 2px solid black;
  padding-right: 12px;
  padding-left: 7px;
  height: 13px;
  text-transform: uppercase;
}
/* line 97, ../../private/scss/pages/_blog.scss */
#blog .items .right-item .tags .tag-list li.last-child {
  border: none;
}

/* line 105, ../../private/scss/pages/_blog.scss */
#blog .right-archive {
  margin-right: 68px;
  margin-top: 41px;
}
/* line 108, ../../private/scss/pages/_blog.scss */
#blog .right-archive .label {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 22px;
}
/* line 113, ../../private/scss/pages/_blog.scss */
#blog .right-archive .time {
  margin-top: 8px;
  font-size: 13px;
  font-weight: bold;
}
/* line 118, ../../private/scss/pages/_blog.scss */
#blog .right-archive .time-line {
  margin-top: 10px;
  margin-bottom: 18px;
}
/* line 121, ../../private/scss/pages/_blog.scss */
#blog .right-archive .time-line li {
  list-style: none;
  margin-bottom: 10px;
}
/* line 124, ../../private/scss/pages/_blog.scss */
#blog .right-archive .time-line li a {
  color: #999999;
  text-decoration: none;
}

/* line 131, ../../private/scss/pages/_blog.scss */
.page-action {
  clear: both;
  padding-top: 5px;
}
/* line 134, ../../private/scss/pages/_blog.scss */
.page-action .older {
  display: inline-block;
  vertical-align: top;
  margin-left: 33px;
}
/* line 139, ../../private/scss/pages/_blog.scss */
.page-action .newer {
  display: inline-block;
  vertical-align: top;
  margin-right: 241px;
  float: right;
}
/* line 145, ../../private/scss/pages/_blog.scss */
.page-action .back {
  margin-top: -9px;
}
/* line 148, ../../private/scss/pages/_blog.scss */
.page-action a {
  color: black;
  font-weight: bold;
  font-size: 12px;
  text-decoration: none;
}
/* line 153, ../../private/scss/pages/_blog.scss */
.page-action a img {
  top: -1px;
  position: relative;
}

/* line 1, ../../private/scss/_common.scss */
.content > .title {
  margin-top: 30px;
}

/* line 5, ../../private/scss/_common.scss */
.title h5 {
  margin-bottom: 30px;
}

/* line 9, ../../private/scss/_common.scss */
.sidebar-image img {
  -moz-box-shadow: #CCC 5px 5px 10px;
  -webkit-box-shadow: #CCC 5px 5px 10px;
  box-shadow: #CCC 5px 5px 10px;
}

/* line 13, ../../private/scss/_common.scss */
.main-content,
#home {
  margin-bottom: 35px;
}

/* line 18, ../../private/scss/_common.scss */
.main-content .main-text .right {
  margin-top: 4px;
  width: 309px;
  float: right;
}

/* line 23, ../../private/scss/_common.scss */
.main-content .small-nav a {
  text-transform: uppercase;
}

/* line 1, ../../private/scss/_home-slider.scss */
#content-slider {
  width: 100%;
}

/* line 6, ../../private/scss/_home-slider.scss */
#content-slider ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: block;
}
/* line 12, ../../private/scss/_home-slider.scss */
#content-slider li {
  font-size: 30px;
  color: #666;
  text-align: left;
  width: 960px;
  height: 255px;
  padding: 0;
  margin: 6px;
  display: block;
  float: left;
}
/* line 22, ../../private/scss/_home-slider.scss */
#content-slider li img {
  float: left;
}
/* line 25, ../../private/scss/_home-slider.scss */
#content-slider li .title {
  font-family: "daniel",cursive;
}

/* line 3, ../../private/scss/_products.scss */
#products .banner-normal .content {
  width: 960px;
  margin: auto;
  z-index: 10;
  position: relative;
  height: 107px;
  padding-top: 36px;
  padding-left: 41px;
  color: white;
}
/* line 14, ../../private/scss/_products.scss */
#products .main-content {
  width: 960px;
}
/* line 16, ../../private/scss/_products.scss */
#products .main-content .small-nav {
  margin-top: 55px;
  margin-left: 41px;
  letter-spacing: 0.6px;
}
/* line 21, ../../private/scss/_products.scss */
#products .main-content .content {
  /* =Custom Select Menu */
  /* Sometimes you want to change the look of the menu/label
  when a selection with a value has been made. In this case,
  we're increasing the contrast of the font color. */
  /* Here we're adding a down arrow to make it look more
  like a select menu. */
  /* When the list of options is displayed we'll remove
  the bottom border-radius on the label so that it sits
  flush next the menu. */
  /* When the label has focus or is hovered over, increase
  the contrast of the border. */
  /* If you don't want the menu to be too tall, then 
  give it a max-height, but don't forget to allow it to
  scroll so all the options are visible. */
  /* When you hover over an option we'll change the 
  background color. We'll do the same when an option 
  is selected. */
}
/* line 22, ../../private/scss/_products.scss */
#products .main-content .content h1 {
  font-family: 'open sans';
  font-size: 22px;
  color: #333333;
  font-weight: bold;
  margin-left: 40px;
  margin-top: 68px;
}
/* line 30, ../../private/scss/_products.scss */
#products .main-content .content p {
  margin-left: 40px;
  font-size: 32px;
  font-family: 'open sans';
  position: relative;
  top: 40px;
  line-height: 1.3;
  letter-spacing: 0.7px;
  width: 895px;
  padding-bottom: 94px;
}
/* line 41, ../../private/scss/_products.scss */
#products .main-content .content .product-item {
  height: 261px;
}
/* line 43, ../../private/scss/_products.scss */
#products .main-content .content .product-item img {
  margin-left: 42px;
  width: 208px;
  height: 208px;
  float: left;
  margin-bottom: 43px;
}
/* line 51, ../../private/scss/_products.scss */
#products .main-content .content .product-item-text {
  float: right;
  width: 650px;
  border-bottom: 1px solid #000000;
  padding-bottom: 11px;
  position: relative;
  bottom: 43px;
  height: 251px;
}
/* line 59, ../../private/scss/_products.scss */
#products .main-content .content .product-item-text h1 {
  font-weight: 600;
  margin-left: 0px;
}
/* line 63, ../../private/scss/_products.scss */
#products .main-content .content .product-item-text p {
  font-size: 18px;
  width: 400px;
  position: relative;
  top: 9px;
  padding-bottom: 12px;
  letter-spacing: 0.3px;
  margin-left: 0px;
}
/* line 72, ../../private/scss/_products.scss */
#products .main-content .content .product-item-text span {
  font-weight: bold;
  margin-left: 0px;
}
/* line 76, ../../private/scss/_products.scss */
#products .main-content .content .product-item-text .price-d {
  font-weight: 100;
}
/* line 79, ../../private/scss/_products.scss */
#products .main-content .content .product-item-text h6 {
  font-size: 16.9px;
  font-weight: bold;
  width: 150px;
  float: right;
  position: relative;
  bottom: 39px;
}
/* line 88, ../../private/scss/_products.scss */
#products .main-content .content .product-total {
  width: 650px;
  float: right;
  text-align: right;
  font-family: 'open sans';
  margin-right: 10px;
}
/* line 94, ../../private/scss/_products.scss */
#products .main-content .content .product-total p {
  width: inherit;
  margin-left: 0px;
  padding-bottom: 6px;
  position: relative;
  top: 12px;
  font-size: 18px;
  letter-spacing: 0.9px;
}
/* line 103, ../../private/scss/_products.scss */
#products .main-content .content .product-total span {
  width: 141px;
  font-size: 18px;
  padding-left: 50px;
}
/* line 109, ../../private/scss/_products.scss */
#products .main-content .content .product-final {
  width: 650px;
  float: right;
  margin-top: 9px;
}
/* line 113, ../../private/scss/_products.scss */
#products .main-content .content .product-final p {
  font-size: 20.66px;
  font-weight: bold;
  color: #333333;
}
/* line 118, ../../private/scss/_products.scss */
#products .main-content .content .product-final span {
  font-size: 20.66px;
  font-weight: normal;
  padding-left: 34px;
  letter-spacing: 1px;
}
/* line 125, ../../private/scss/_products.scss */
#products .main-content .content .product-form {
  display: inline-block;
  width: 960px;
  overflow: hidden;
}
/* line 130, ../../private/scss/_products.scss */
#products .main-content .content .product-form-left {
  width: 438px;
  height: 200px;
  float: left;
}
/* line 134, ../../private/scss/_products.scss */
#products .main-content .content .product-form-left p {
  font-family: 'daniel';
  padding-bottom: 0px;
  font-size: 26.29px;
  height: 35px;
  position: relative;
  top: 100px;
  left: 149px;
  letter-spacing: 1.5px;
  width: 230px;
  color: #333333;
}
/* line 146, ../../private/scss/_products.scss */
#products .main-content .content .product-form-left img {
  width: initial;
  height: initial;
  position: relative;
  left: 363px;
  top: 20px;
}
/* line 154, ../../private/scss/_products.scss */
#products .main-content .content .product-form-right {
  width: 522px;
  float: right;
  padding-top: 21px;
}
/* line 158, ../../private/scss/_products.scss */
#products .main-content .content .product-form-right p {
  font-family: 'open sans';
  font-size: 13px;
  padding-bottom: 0px;
  width: initial;
  float: left;
  margin-left: 2px;
  margin-right: 13px;
  position: relative;
  left: 85px;
  margin-top: -6px;
  letter-spacing: 0.8px;
  color: #7d7d7d;
}
/* line 172, ../../private/scss/_products.scss */
#products .main-content .content .product-form-right input {
  border-radius: 4px;
  height: 38px;
  border-style: none;
  border: 1px solid #999999;
  width: 205px;
  margin-top: 6px;
  font-size: 16px;
  padding-left: 10px;
}
/* line 182, ../../private/scss/_products.scss */
#products .main-content .content .product-form-right .product-phone-number {
  width: 205px;
}
/* line 185, ../../private/scss/_products.scss */
#products .main-content .content .product-form-right .product-email {
  width: 274px;
}
/* line 188, ../../private/scss/_products.scss */
#products .main-content .content .product-form-right .product-row-two {
  position: relative;
  top: 18px;
}
/* line 191, ../../private/scss/_products.scss */
#products .main-content .content .product-form-right .product-row-two p {
  position: relative;
  left: 15px;
  margin-right: 14px;
}
/* line 199, ../../private/scss/_products.scss */
#products .main-content .content .product-submit p {
  text-align: right;
  font-weight: 600;
  font-family: 'open sans';
  font-size: 14px;
  padding-bottom: 0px;
  top: 7px;
  position: relative;
  line-height: 24px;
  left: 12px;
  letter-spacing: 0.01px;
}
/* line 211, ../../private/scss/_products.scss */
#products .main-content .content .product-submit .product-submit-button {
  background-color: #666666;
  color: #ffffff;
  float: right;
  border: 1px solid;
  border-radius: 4px;
  height: 32px;
  width: 138px;
  text-align: center;
  padding-top: 5px;
  margin-right: 9px;
  position: relative;
  top: 32px;
  font-weight: bold;
  text-decoration: none;
  font-family: 'open sans';
}
/* line 231, ../../private/scss/_products.scss */
#products .main-content .content .custom-select-menu {
  display: inline-block;
  margin-bottom: 8px;
  outline: none;
  position: relative;
  left: 560px;
  bottom: 44px;
}
/* line 240, ../../private/scss/_products.scss */
#products .main-content .content .custom-select-menu label {
  border: 1px solid #888;
  border-radius: 4px;
  color: #888;
  display: inline-block;
  padding: 7px 32px 8px 15px;
  position: relative;
  /* Prevents text-selection on the label. */
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  /* We're giving the label a specific width. 
  Don't forget to set a width for the list of options
  as well (see below). */
  width: 80px;
}
/* line 262, ../../private/scss/_products.scss */
#products .main-content .content .custom-select-menu label.selection-made {
  color: #000;
}
/* line 268, ../../private/scss/_products.scss */
#products .main-content .content .custom-select-menu label:after {
  background-image: url(/images/qty-arrow.png);
  background-position-x: 13px;
  background-position-y: 14px;
  content: '';
  position: absolute;
  right: 8px;
  top: 0px;
  height: 35px;
  width: 22px;
  background-repeat: no-repeat;
  border-left: 1px solid #999999;
  padding-left: 8px;
}
/* line 286, ../../private/scss/_products.scss */
#products .main-content .content .custom-select-menu label.opened {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
/* line 293, ../../private/scss/_products.scss */
#products .main-content .content .custom-select-menu:focus label,
#products .main-content .content .custom-select-menu:hover label {
  border-color: #999999;
}
/* line 301, ../../private/scss/_products.scss */
#products .main-content .content .custom-select-menu ul {
  background: #fff;
  border: 1px solid #999999;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  left: 10px;
  list-style: none;
  margin: 0 -10px;
  max-height: 200px;
  overflow-x: hidden;
  overflow-y: scroll;
  /* Allow it to scroll vertically. */
  position: absolute;
  top: 40px;
  width: 40px;
  /* Set a width equal to the label. */
  z-index: 2;
}
/* line 318, ../../private/scss/_products.scss */
#products .main-content .content .custom-select-menu li {
  background-color: #fff;
  cursor: pointer;
  padding: 7px 0px 10px 15px;
  z-index: 50;
}
/* line 328, ../../private/scss/_products.scss */
#products .main-content .content .custom-select-menu li:hover,
#products .main-content .content .custom-select-menu .selected {
  background-color: rgba(0, 0, 0, 0.05);
}

/*.overlay {
    background-image: url(/images/2_SM-products-1.2.png);
    opacity: 0.4;
    background-repeat: no-repeat;
    position: absolute;
    z-index: 100000;
    top: 0px;
    left: 0px;
    width: 100%;
    pointer-events: none;
    height: 5000px;
    background-position: center top;
}*/
