/* COLORS 

Blue		#003DA6
Yellow		#FFF200
Black		#000000
D Grey		#333333
L Grey		#E5E5E5
Orange		#F05A24

*/
:root{
    --dark-gray:#1a1a1a;
    --mid-gray:#E4E4E4;
    --white-100:#F1F1F1;
    --black-200:#333;
    --white:#fff;
    --navy:#00215A;
    --blue:#003DA6;
    --light-blue:#F7FAFF;
}

/* FONTS */
@import url('https://fonts.googleapis.com/css?family=Raleway:300,400,500, 600');

/* GENERAL */
html{
    font-size: 100%;
  scroll-behavior: smooth;
  height: auto;
  font-family: 'Raleway', sans-serif;
}
body{
	background: #fff;
	font-family: 'Raleway', sans-serif;
  	font-size: 1rem;
  	font-weight: 400;
}

.h1-big{
    font-size: 3rem;
}
h1, h2, .h2-title{
	font-size: 2.5rem;
    font-family: 'Raleway', sans-serif;
}
h3, .h3-title{
    font-size: 1.875rem;
    margin-bottom: 10px;
    font-family: 'Raleway', sans-serif;
}
h4, .h4 {
	font-family: 'Raleway', sans-serif;
	font-size: 1.125rem;
	font-weight: 500;
}
h5, h6, h7{
    font-family: 'Raleway', sans-serif;
}
.centered{
	text-align: center;
}
.button{
	background-color: #013ca6;
	color: #fff;
	border-radius: 4px;
	padding: 10px 20px;
	display: inline-block;
	opacity: 1;
	transition: opacity 0.5s;
    -webkit-transition: opacity 0.5s;
    -moz-transition: opacity 0.5s;
    -o-transition: opacity 0.5s;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}
.button:hover, .button:focus{
  opacity: 0.8;
  text-decoration: none;
  color: #fff;
}
a{
	color: #003DA6;
	font-weight: 500;
}
a:hover{
	text-decoration: none;
}

.dot {
    list-style: none;
    margin-left: 0px;
    padding-left: 0px;
    overflow: auto;
}
.dot li{
  position: relative;
  padding-left: 18px;
    margin-bottom: 20px;
}
.dot li:before{
  	content:'';
    position: absolute;
    background: url('img/dot-ul.png') no-repeat;
    background-size: 100%;
    height: 4px;
    width: 4px;
    top: 10px;
    left: 0px;
    vertical-align: top;
    line-height: 100%;
}
.strong {
	font-weight: 500;
}

/* HEADER */

header .logo {
    max-width: 120px;
    width: 100%;
}
.navbar-default .navbar-brand{
      padding: 5px 15px;
}
.navbar-default{
	background-color: #fff;
	border:none;
	margin-bottom: 0px;
  min-height: 78px;
  z-index: 1040;
}
.navbar-default .navbar-collapse, .navbar-default .navbar-form{
	border: none;
}
.navbar-brand{
	height: auto;
}
.navbar-default .navbar-nav > li > a{
	color: #333;
	font-weight: 400;
}
.navbar-default .navbar-nav > li.active > a, .navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus, .navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus{
	color: #003DA6;
	background-color: transparent;
}
.navbar-nav > li > a {
    padding-top: 25.5px;
    padding-bottom: 28px;
    border-bottom: 4px solid #fff;
}
.navbar-nav > li.active > a, .navbar-nav > li > a:hover{
  border-bottom: 4px solid #013ca6;
}


/* FOOTER */
footer{
	font-weight: 400;
}
footer #inner-footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 60px 0 70px 0;
}
footer .copyright {
    color: #808080;
    background-color: #000;
    padding: 15px 0;
    text-align: center;
    font-weight: 400;
}
footer .menu{
	list-style: none;
	padding-left: 10px;
}
footer .menu a{
	color: #fff;
	font-weight: 400;
}
footer .menu li{
	margin-bottom: 10px;
}
footer .img-wrap {
    float: left;
    margin-right: 15px;
}
footer .cng-icon {
    max-width: 65px;
    width: 100%;
}
footer .social-icons{
	list-style: none;
}
footer .social-icons .fb{
	background: url('./img/facebook-icon.png') no-repeat center center transparent;
	background-size: 30px;
	width: 30px;
	height: 30px;
    display: block;
}
footer .social-icons .ig{
	background: url('./img/instagram-icon.png') no-repeat center center transparent;
	background-size: 30px;
	width: 30px;
	height: 30px;
    display: block;
}
footer .social-icons li {
    display: inline-block;
    margin-right: 20px;
}
footer .social-icons li:last-child{
	margin-right: 0px;
}
footer .descrption {
    background: var(--dark-gray);
    color: #999;
    font-size: 14px;
    padding: 40px 0;
    text-align: center;
}
footer .footer-service {
    background: var(--dark-gray);
    padding-top: 80px;
}
footer .footer-service .f-box{
    background: var(--white-100);
    border-radius: 16px;
    padding: 40px 48px 40px 50px;
    display: flex;
    flex-direction: row;
    color: var(--black-200);
    height: 100%;
    min-height: 179px;
}
footer .footer-service .f-box .img-wrap{
    width: 75px;
}
footer .footer-service .f-box .img-wrap .on-icon{
    max-width: 54px;
}
footer .footer-service .f-box .img-wrap .hol-icon{
    max-width: 51px;
}
footer .footer-service .f-box .text-wrap{
    width: calc(100% - 100px);
}
footer .footer-service .button {
    margin-top: 5px;
}
footer .footer-service .f-box p {
    margin-bottom: 0;
}
footer .footer-service .button.first-button {
    margin-right: 10px;
}


/* HOMEPAGE */
.sswr-home .hero{
    padding: 200px 0 120px 0;
    
    color: var(--white);
  position: relative;
}
.sswr-home .hero .banner-img-home{
    background: url('./img/hero-home.webp') no-repeat center right;
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
}
.sswr-home .hero .overlay{
    background: radial-gradient(50% 50% at 50% 50%, #001841 0%, rgba(0, 24, 65, 0.50) 50%, rgba(0, 24, 65, 0.00) 100%), linear-gradient(90deg, rgba(0, 24, 65, 0.90) 0%, rgba(0, 24, 65, 0.70) 38.89%, rgba(0, 24, 65, 0.35) 60.35%, rgba(0, 24, 65, 0.00) 100%);
    
    /*mask-image: linear-gradient(
    94deg,
    #000 5.71%,
    #000 36.69%,
    rgba(0, 0, 0, 0.99) 50.09%,
    rgba(0, 0, 0, 0.75) 58.49%,
    rgba(0, 0, 0, 0.55) 66.31%,
    rgba(0, 0, 0, 0.35) 79.57%,
    rgba(0, 0, 0, 0.00) 91.96%
  );*/
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: 100%;
}
.sswr-home .hero .intro{
    margin-bottom: 32px;
}
.sswr-home .services-section .anchor-wrapper{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-bottom: 80px;
    margin-top: 50px;
}
.sswr-home .services-section .service-anchor-box{
    padding: 32px 28px 42px 28px;
    max-width: 217px;
    max-width: 217px;
    margin: 0 16px;
    border-radius: 8px;
    border: 1px solid var(--blue);
    background: var(--navy);
    color: var(--white);
    text-align: center;
    position: relative;
}
.sswr-home .services-section .icon-wrapper{
    position: absolute;
    bottom: -20px;
    left: 50%;
    margin-left: -20px;
    width: 40px;
    height: 40px;
}
.sswr-home .services-section .icon-wrapper svg {
  width: 100%;
  height: auto;
  transition: opacity 0.3s ease;
  display: block;
}

.sswr-home .services-section .icon-wrapper .icon-hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.sswr-home .services-section .service-anchor-box:hover .icon-wrapper .icon-hover {
  opacity: 1;
  transition: opacity 0.3s ease;
}

.sswr-home .services-section .service-anchor-box:hover .icon-wrapper .icon-default {
  opacity: 0;
  transition: opacity 0.3s ease;
}
.sswr-home .services-section .service-box {
    border-radius: 16px;
    background: var(--mid-gray);
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 95px;
    overflow: hidden;
}
.sswr-home .services-section .service-box .img-wrapper{
    background: var(--mid-gray);
    padding: 90px;
    text-align: center;
    vertical-align: center;
    height: 100%;
}
.sswr-home .services-section .service-box .text-wrapper{
    padding: 70px 150px 85px 100px;
    background: var(--white-100);
}
.sswr-home .services-section .service-box .img-wrapper .img-responsive {
    max-height: 169px;
}
.sswr-home .services-section .service-box .service-desc p {
    margin-bottom: 32px;
    max-width: 96%;
    font-size: 1rem;
    font-weight: 400;
}
.p-0{
    padding: 0px;
}
.sswr-home .faq{
    background: var(--light-blue);
    padding-top: 120px;
    padding-bottom: 100px;
}
.sswr-home .banner{
	background: url('./img/homepage-banner-specialty.jpg') no-repeat center center transparent;
	background-size: cover;
	height: 390px;
	margin-top: 74px;
}

.sswr-home .img-wrap{
	text-align: center;
}
.sswr-home .services {
    padding: 120px 0 50px 0;
}
.sswr-home .services h1{
	margin-bottom: 25px;
}
.sswr-home .services .intro, .sswr-home .hero .intro{
	font-size: 1.125rem;
	font-weight: 400;
}
.sswr-home .services-wrap {
    width: 100%;
    overflow: auto;
    margin-bottom: 85px;
}
.sswr-home .faq-item .dot li {
    width: 50%;
    float: left;
}
.sswr-home .faq-item .gray {
    color: #666666;
    width: 80%;
    display: block;
}
.sswr-home .faq-item .super {
    color: #f05a24;
    font-size: 12px;
    font-weight: 500;
    vertical-align: super;
}
.sswr-home .food-recycling{
	background: url('./img/background-food-scrap-recycling.jpg') no-repeat center center transparent;
	background-size: cover;
	text-align: center;
	color: #fff;
	padding: 85px 0 100px 0;
}

.sswr-home .services-wrap .services-img {
    max-width: 260px;
    width: 100%;
}
.sswr-home .services-wrap .box{
	text-align: center;
	background-color: #e5e5e5;
    border-radius: 8px;
    overflow: visible;
    padding: 80px 40px 40px 40px;
    margin-top: 160px;
    position: relative;
}
.sswr-home .services-wrap .img-wrap {
    position: absolute;
    top: -95px;
    left: 50%;
    margin-left: -130px;
}
.sswr-home .services-wrap h4, .sswr-home .services-wrap .h4 {
    font-weight: 500;
}
.sswr-home .services-wrap .box .text-p {
    font-size: 14px;
    min-height: 105px;
}
.sswr-home .faq .row{
  display: flex;
  flex-wrap: wrap;
}

.sswr-home .faq .row > [class*="col-"]{
  display: flex;
}
.sswr-home .faq .faq-item {
    overflow: auto;
    width: 100%;
    clear: both;
       background: var(--white);
    border-radius: 16px;
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.11);
    padding: 60px 60px 50px 60px;
    margin-bottom: 30px;
    width: 100%;
  display: flex;
  flex-direction: column;

}
.sswr-home .faq .faq-item h2{
    font-size: 1.875rem;
    margin-bottom: 14px;
    font-weight: 500;

    font-family: 'Raleway', sans-serif;
}
.sswr-home .faq-item .faq-img {
    max-width: 230px;
    width: 100%;
    display: block;
    margin-bottom:20px;
}
.sswr-home .faq-item.second-faq .faq-img {
    margin-top: 40px;
}

.sswr-home .cta .cta-app {
    max-width: 140px;
    width: 100%;
}
.sswr-home .cta .or-icon {
    max-width: 80px;
    width: 100%;
}
.sswr-home .cta {
    background-color: var(--navy);
    text-align: center;
    padding: 90px 0 80px 0;
    color: var(--white);
}
.sswr-home .cta .app-icon-img {
    max-width: 135px;
    width: 100%;
}
.sswr-home .cta h4, .sswr-home .cta h3 {
    font-size: 30px;
    font-weight: 500;
    margin-top: 35px;
    margin-bottom: 35px;
}
.sswr-home .cta .or-img{
	background:url('./img/dashes.png') no-repeat center center transparent;
	background-size: 1px;
    position: relative;
    height: 320px;
}
.sswr-home .cta .or-icon {
    max-width: 81px;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -40px;
    margin-top: -40px;
}
.sswr-home .cta h2 {
    margin-bottom: 40px;
}
.sswr-home .cta .app-icon:first-of-type {
    margin-right: 20px;
}
.sswr-home .food-recycling p {
    font-size: 22px;
    font-weight: 500;
}

.food-popup{
  position: fixed;
  right: 80px;
  bottom: -490px;
  width: 360px;
  border-radius: 10px 10px 0 0;
  z-index: 12;
}
.food-popup .text-content{
  padding: 25px 50px 60px 50px;
  text-align: center;
  background: #fff;
}
.food-popup .text-content .button-wrap{
  padding: 10px;
}
.food-popup .popup-banner{
  border-radius: 10px 10px 0 0;
  background: url(./img/foodcycle-img.jpg) no-repeat top center transparent;
  background-size: cover;
  height: 120px;
}
.food-popup .popup-banner.hidden-img{
  background: #013ca6;
}
.food-popup .text-content h2{
  font-size: 30px;
  font-weight: 500;
  padding: 0 10px;
}
.food-popup .button-wrap a{
  color: #000;
  text-decoration: none;
}
.food-popup .button-wrap .button{
      width: 100%;
    margin-bottom: 20px;
    color: #fff;
}
.food-popup .hidden-popup{
  display: none;
}
.food-popup .hidden-popup a{
  display: inline-block;
  width: 100%;
}
.food-popup .hidden-popup .arrow-open{
  background: url(img/arrow-inactive.png) no-repeat center center transparent;
  background-size: 20px;
  display: inline-block;
  width: 21px;
  height: 20px;
  float: right;
  padding: 20px;
}
.food-popup .hidden-popup h4 {
    color: #fff;
    padding: 10px 20px;
    font-weight: 500;
    float: left;
    margin-top: 0px;
}


#content-wrapper{
  position: relative;
}

/* CONTACT PAGE */
.contact-page .banner{
  background: url(./img/contact-banner.png) repeat-x center bottom #e5e5e5;
  background-size: contain;
  height: 295px;
  position: relative;
  padding-top: 240px;
}
.contact-page .contact-link {
    color: #333;
    font-weight: 300;
}
.contact-page .truck{
    margin-left: 50px;
}
.contact-page .truck .truck-img{
    max-width: 228px;
    width: 100%;
}
.contact-page .contact-box {
    background-color: #999999;
    padding-top: 90px;
    padding-bottom: 120px;
}
.contact-page .text-wrapper {
    padding: 60px 60px 65px 60px;

}
.contact-page .first-col{
  display: table-cell;
  width: 40%;
  vertical-align: top;
  margin-right: -2px;
  height: auto;    
  background: #fff;
    border-radius: 10px 0 0 10px;
}
.contact-page .second-col{
  display: table-cell;
  width: 60%;
  vertical-align: top;
  margin-left: -3px;
  height: auto;
  background: #e6e6e6;
  border-radius: 0 10px 10px 0;
}
.contact-page .form-wrapper{
  height: 100%;
    padding: 90px 60px 20px 80px;
    
}
.contact-page .wpcf7-form {
    width: 100%;
}
.contact-page .wpcf7 form .wpcf7-response-output{
  display: none !important;
}
.contact-page input.wpcf7-form-control{
  width: 100%;
  height: 40px;
  border: none;
  border-radius: 5px;
  margin-top: 5px;
  padding: 5px;
}
.contact-page .info-items .text-wrap {
    display: inline-block;
    vertical-align: middle;
    width: calc(100% - 60px);
}
.contact-page .info-items .img-wrap {
    display: inline-block;
    width: 50px;
}
.contact-page label{
      font-weight: 400;
    font-size: 14px;
    color: #333;
    line-height: 150%;
    width: 100%;
}
.contact-page textarea{
      width: 100% !important;
    border: 0px;
    border-radius: 5px;
    margin-top: 5px;
}
.contact-page .icon-img {
    max-width: 33px;
    width: 100%;
}
.contact-page .info-items .item {
    margin-bottom: 25px;
}
.contact-page .intro {
    margin-bottom: 40px;
}
.contact-page .hours {
    margin-top: 40px;
}
.contact-page h1{
    font-weight: 500;
    margin-top: 0px;
}
.contact-page .submit-wrap{
  text-align: right;
  position: relative;
}
  .contact-page div.wpcf7 .ajax-loader{
      position: absolute;
      bottom: -26px;
      right: 66px;
  }
.contact-page input.wpcf7-form-control.wpcf7-submit {
    width: auto;
    background: #013ca6;
    color: #fff;
    padding: 8px 30px;
    text-align: right;
}
.contact-page div.wpcf7-validation-errors{
  border: none;
    margin-top: 0px;
}
.contact-page div.wpcf7-validation-errors, .contact-page div.wpcf7-mail-sent-ng, .contact-page div.wpcf7-mail-sent-ok{
    border: none;
}
.contact-page div.wpcf7-mail-sent-ok{
    display: none !important;
}
.contact-page .wpcf7-response-output{
  float: left;
}
.sswr-default .overview {
    padding: 150px 0;
    text-align: center;
}

/* Multifamily Page */
.multifamily-page .cubic-yard-img {
    width: 100%;
    max-width: 454px;
    padding-top: 65px;
}
.multifamily-page .centered.subtitle{
  margin-top: 5px;
}
.multifamily-page .multifamily-collection h3, .multifamily-page .multifamily-collection .h3 {
    margin-bottom: 50px;
}
.multifamily-page .other-products-trash {
    width: 100%;
    max-width: 370px;
    margin-top: 20px;
}
.multifamily-page .carts-img {
    width: 100%;
    max-width: 331px;
    margin-top: 200px;
}
.multifamily-page .multifamily-recycle-collection .collection {
    margin-top: 45px;
    text-align: left;
}
.multifamily-page .multifamily-recycle-collection .collection img {
    width: 100%;
    max-width: 250px;
}
.multifamily-page .dark-blue {
    color: #004682;
}
.multifamily-page section.grey-bg-top{
	background-color: #f1f1f1;
	padding: 120px 0 !important;
	top: -60px;
    position: relative;
    z-index: 1;
}
.residential-banner, .commercial-banner {
    z-index: 2;
    position: relative;
}
.multifamily-page section.grey-bg{
	background-color: #f1f1f1;
	padding: 120px 0 !important;
}
.multifamily-page .food-scraps-def h3, .multifamily-page .food-scraps-def .h3 {
    margin-top: 40px;
}
.multifamily-page .food-scraps-def {
    padding: 70px 0 80px 0;
}
.multifamily-page .food-carts .food-bins-img {
    width: 100%;
    max-width: 331px;
}
.multifamily-page .not-allowed .food-scraps-img, .multifamily-page .food-scraps-def .food-scraps-img {
    max-width: 256px;
    width: 100%;
}
.multifamily-page .food-carts .food-carts-img {
    width: 100%;
    max-width: 370px;
    margin-bottom: 60px;
    margin-top: 20px;
}
.multifamily-page .employee-resources .pdf-icon {
    max-width: 140px;
    width: 100%;
    margin: 50px 0 25px 0;
}
.multifamily-page .food-pail-img {
    /*max-width: 204px;*/
	max-width: 194px;
    width: 100%;
}
.multifamily-page .food-scraps-def.mfd-no-padding{
	padding-bottom: 40px !important;
}
.multifamily-page .clear {
    clear: both;
}

/* Residential Recycling */

.residential-recycling h3, .residential-recycling .h3 {
    font-size: 22px;
    font-weight: 500;
    font-family: 'Raleway', sans-serif;
}

.residential-recycling h3.no-padding, .residential-recycling .h3.no-padding {
  padding-bottom: 0px;
}

.residential-recycling ul {
 line-height: 1.7em;
}


.residential-recycling .banner{
    background: url(./img/residential-banner-2.jpg) repeat-x center bottom #e5e5e5;
    /* background-size: 1799px; */
    height: 300px;
    position: relative;
    padding-top: 240px;
    margin-top: 0px;
    background-size: cover;
}

.multifamily-page .banner{
  background: url(./img/multifamily-banner.jpg) repeat-x center bottom #e5e5e5;
  background-size: 1400px;
}
.commercial-page .banner{
  background: url(./img/commercial-banner.jpg) repeat-x center bottom #e5e5e5;
  background-size: 1400px;
}

.dumpster-page .banner, .overview-page .banner {
    background: url(./img/residential-banner-2.jpg) repeat-x center bottom #e5e5e5;
    height: 300px;
    position: relative;
    padding-top: 240px;
    margin-top: 0px;
    background-size: cover;
}

.residential-recycling .truck, .dumpster-page .truck, .overview-page .truck{
   text-align: center;
   margin-top: 20px;
}
.residential-recycling .truck .truck-img, .dumpster-page .truck .truck-img, .overview-page .truck .truck-img{
    max-width: 250px;
    width: 100%;
}
.multifamily-page .truck .truck-img{
  width: 100%;
  max-width: 250px;
}

.residential-banner h1 {
    background: #013ca6;
    color: white;
    padding: 20px 0px;
    position: relative;
    margin: 0 auto 20px auto;
    font-family: 'Raleway', sans-serif;
    max-height: 80px;
}

.residential-banner h1::before {
    content: '';
    position: absolute;
    background: url(/wp-content/themes/sswr/img/left-flag-banner.png) no-repeat center left transparent;
    background-repeat: no-repeat;
    background-size: contain;
    height: 100%;
    width: 100%;
    left: -20px;
    top: 0px;
}

.residential-banner h1::after {
    content: '';
    position: absolute;
    background: url(/wp-content/themes/sswr/img/right-flag-banner.png) no-repeat center right transparent;
    background-repeat: no-repeat;
    background-size: contain;
    height: 100%;
    width: 100%;
    right: -20px;
    top: 0px;
}
.residential-page .road{
 background: #999999;
    height: 170px;
    margin: 0px 0 -40px 0;
    width: 100%;
}
.residential-page .yard-trimming .provide-trim-img{
  width: 100%;
  max-width: 440px;
  margin: 30px auto 90px auto;
  display: block;
}
.residential-page .yard-trimming .trimmings-img{
  width: 100%;
  max-width: 619px;
  margin-top: 30px;
}
.residential-page .yard-trimming .restricted-img{
  width: 100%;
  max-width: 250px;
}
.residential-page .yard-trimming .tree-img{
  width: 100%;
  max-width: 200px;
}
.residential-page .restricted-section {
    padding-top: 100px;
    padding-bottom: 60px;
}
.residential-page .tree-section{
  padding-bottom: 160px;
}
.residential-page .carts-section .p-intro{
  margin-bottom: 40px;
}



section.curbside-collection {
    padding: 40px 0px;
}
.residential-page .curbside-collection img{
  width: 100%;
  margin: auto auto 15px auto;
  max-width: 245px;
}
.residential-page .items-collected-img{
  width: 100%;
  max-width: 325px;
  margin-top: 35px;
}
.residential-page .img-not-collected{
  max-width: 252px; 
  width: 100%;
}
.residential-page .split-cart .main-title h3, .residential-page .split-cart .main-title .h3 {
    margin-bottom: 40px;
}
.residential-page .also-collected h3, .residential-page .also-collected .h3 {
    margin-bottom: 30px;
}
section.split-cart {
    padding: 40px 0px;
}

.residential-recycling h3.green, .residential-recycling .h3.green {
    color: #0e6710;
    padding-bottom: 0px;
}

.residential-recycling h3.blue, .residential-recycling .h3.blue {
    color: #2f588c;
    padding-bottom: 0px;
}

.residential-recycling h3.black, .residential-recycling .h3.black {
    color: #333333;
    padding-bottom: 0px;
}

.residential-recycling h3.yellow, .residential-recycling .h3.yellow {
    color: #5b5511;/*#e8d918;*/
    padding-bottom: 0px;
}

.residential-page .black-arrow {
    background: url(/wp-content/uploads/2019/05/black-arrow-v002.jpg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 180px;
    height: 150px;
    display: inline-block;
    position: absolute;
    left: -150px;
    top: 30px;
}

.residential-page .yellow-arrow {
    /*background: url(/wp-content/uploads/2019/05/yellow-arrow-v002.jpg);*/
	background: url(/wp-content/uploads/2021/12/brown-arrow.jpg);
    background-repeat: no-repeat;
    background-size: contain;
    /*width: 180px;*/
	width: 125px;
    height: 150px;
    display: inline-block;
    position: absolute;
    left: -150px;
    /*top: 30px;*/
	top: 56px;
}

.residential-page .green-arrow {
    background: url(/wp-content/themes/sswr/img/dark-blue-arrow-@2x.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 180px;
    height: 150px;
    display: inline-block;
    position: absolute;
    left: -150px;
    top: 30px;
}
.residential-page .grey-arrow {
    background: url(/wp-content/themes/sswr/img/left-green-arrow.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 120px;
    height: 150px;
    display: inline-block;
    position: absolute;
    left: 200px;
    bottom: 50px;
}

.residential-page .blue-arrow {
    background: url(/wp-content/uploads/2017/06/blue-arrow.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 100px;
    height: 120px;
    display: inline-block;
    position: absolute;
    left: -120px;
    top: 0px;
}
.multifamily-page .blue-dark-arrow {
  background: url(./img/dark-arrow.png) no-repeat center center transparent;
  background-size: 266px;
  position: absolute;
  top: 40px;
  left: -160px;
  width: 266px;
  height: 141px;

}

.multifamily-page .blue-light-arrow {
  background: url(./img/light-arrow.png) no-repeat center center transparent;
  background-size: 100px;
  position: absolute;
  top: 40px;
  left: -120px;
  width: 100px;
  height: 165px;

}
.residential-page .grey-small-arrow{
   background: url(./img/small-gray-arrow.png) no-repeat center center transparent;
  background-size: 87px;
  position: absolute;
  bottom: 152px;
    left: 40px;
  width: 87px;
  height: 45px;
}

.residential-page .split-cart .split-can {
    max-width: 255px;
    width: 100%;
}
.residential-page .split-cart .blue-split-can {
	margin-left: 40px;
}
.residential-page .wrapper-paper-img{
  position: relative;
}
.residential-page .paper-bag-img{
  max-width: 90px;
  width: 100%;
  position: absolute;
  bottom: 10px;
  left: 315px;
}

.split-cart .grey-box {
    margin: 80px 40px 0px 10px;
}
.multifamily-split-cart .grey-box{
  margin-left: 100px;
  margin-top: 60px;
}

.residential-page .also-collected {
    padding: 40px 0px;
}

.residential-page .not-allowed {
    padding: 40px 0px 80px;
}
.residential-page .food-scraps-def {
    padding: 0px 0 130px 0;
}
.residential-page .also-collected .dot li, .residential-page .not-allowed .dot li, .residential-page .food-scraps-def .dot li, .residential-page .split-cart .dot li, .residential-page .extra-bag .dot li {
  margin-bottom: 15px;
}
.residential-recycling ul.left {
    float: left;
    width: 50%;
    padding-right: 15px;
}
.residential-recycling ul.left-float {
	float:none !important;
}
.dot li.h4:before {
    content: '';
    position: absolute;
    background: url(img/dot-ul.png) no-repeat;
    background-size: 100%;
    height: 4px;
    width: 4px;
    top: 10px;
    left: 0px;
    vertical-align: top;
    line-height: 100%;
}

/* Residential - Garbage Page */

.residential-garbage.foodcycle .banner {
    background: url(/wp-content/uploads/2017/09/foodcycling-tile.png) repeat-x #e5e5e5;
    background-size: cover;
    height: 295px;
    position: relative;
    padding-top: 290px;
    background-position: bottom;
}


.residential-garbage .banner{
  background: url(/wp-content/uploads/2017/07/residential-background.png) repeat-x center bottom #e5e5e5;
  background-size: contain;
  height: 295px;
  position: relative;
  padding-top: 240px;
}
.residential-garbage .truck{
   text-align: center;
}
.residential-garbage .truck .truck-img{
    max-width: 250px;
    width: 100%;
}

.residential-page .garbage-collection {
    padding: 40px 0px;
}

.residential-page .video-wrap {
	padding-top: 50px;
	padding-bottom:10px !important;
}

.residential-garbage h3, .residential-garbage .h3  {
    font-size: 22px;
    font-weight: 500;
    font-family: 'Raleway', sans-serif;
}

.residential-garbage h3.no-padding, .residential-garbage .h3.no-padding {
  padding-bottom: 0px;
}

.residential-garbage ul.left {
    float: left;
    width: 50%;
}

.residential-garbage img.garbage-bins-img {
    max-width: 640px;
    width: 100%;
    padding: 40px 0px;
}
.residential-garbage img.bin-bag-img {
  max-width: 333px;
  width: 100%;
}

.residential-garbage img.split-bin-bag-img {
    max-width: 430px;
    width: 100%;
}

.residential-garbage img.food-pail-img {
    max-width: 204px;
    width: 100%;
}

.residential-garbage img.foodcycle-video-img {
    max-width: 940px;
    width: 100%;
    padding: 40px 0px;
}


.residential-garbage img.no-garbage-img {
max-width: 252px;width: 100%;
}

/* Residential Overview */
.overview-page section {
	padding: 120px 0px;
}
.overview-page .top-links {
	background: var(--white-100);
	padding: 165px 0px 105px 0px;
	margin-top: -60px;
}
.overview-page .top-links .intro {
	font-size: 1.125rem;
	line-height: 150%;
}
.overview-page .top-links h2 {
	margin: 0 0 16px 0;
}
.overview-page .top-links .dot ul {
    margin-top: 15px;
}
.overview-page .top-links .o-list li {
	margin-bottom: 15px;
}
.overview-page .top-links ul.dot li:last-child {
  margin-bottom: 0px;
}
.overview-page .top-links ul.dot li:first-child {
  margin-top: 15px;
}
.overview-page .top-links .o-list li::marker {
    color: var(--blue);
    font-weight: bold;
}
.overview-page .top-links .box {
    background: var(--navy);
    padding: 25px 20px;
    margin-bottom: 15px;
    border-radius: 10px;
	color: #fff;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.overview-page .top-links .box .title {
	font-size: 1.5rem;
	padding-right: 15px;
	max-width: 70%;
}
.overview-page .top-links .box img {
    max-width: 16px;
    margin-right: 10px;
}
.overview-page .top-links .box a {
   color: #fff;
   text-align: center;
}
.overview-page .services h2 {
	font-size: 3rem;
}
.overview-page .services {
	padding-bottom: 25px;
}
.overview-page .services-section .anchor-wrapper{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    margin-bottom: 80px;
    margin-top: 50px;
}
.overview-page .services-section .service-anchor-box{
    padding: 32px 28px 42px 28px;
    max-width: 217px;
    margin: 0 16px;
    border-radius: 8px;
    border: 1px solid var(--blue);
    background: var(--navy);
    color: var(--white);
    text-align: center;
    position: relative;
	flex-basis: 25%;
}
.overview-page .service-anchors .anchor-wrapper h4 {
    min-height: 40px;
    align-content: center;
    height: calc(100% - 10px);
}
.overview-page .services-section .icon-wrapper{
    position: absolute;
    bottom: -20px;
    left: 50%;
    margin-left: -20px;
    width: 40px;
    height: 40px;
}
.overview-page .services-section .icon-wrapper svg {
  width: 100%;
  height: auto;
  transition: opacity 0.3s ease;
  display: block;
}

.overview-page .services-section .icon-wrapper .icon-hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.overview-page .services-section .service-anchor-box:hover .icon-wrapper .icon-hover {
  opacity: 1;
  transition: opacity 0.3s ease;
}

.overview-page .services-section .service-anchor-box:hover .icon-wrapper .icon-default {
  opacity: 0;
  transition: opacity 0.3s ease;
}
.overview-page .services-section .service-box {
    border-radius: 16px;
    background: var(--mid-gray);
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 95px;
    overflow: hidden;
}
.overview-page .services-section .service-box .text-wrapper h3 {
	margin-bottom: 16px !important;
}
.overview-page .services-section .service-box .img-wrapper{
    background: var(--mid-gray);
    padding: 60px;
    text-align: center;
    vertical-align: center;
    height: 100%;
}
.overview-page .services-section .service-box .text-wrapper{
    padding: 70px 150px 85px 100px;
    background: var(--white-100);
}
.overview-page .services-section .service-box .img-wrapper .img-responsive {
    max-height: 225px;
	margin: auto;
}
.overview-page .services-section .service-box .service-desc p {
    margin-bottom: 32px;
    max-width: 96%;
    font-size: 1rem;
    font-weight: 400;
}

li.indent {
    margin-left: 20px;
    padding-right: 100px;
}


.residential-garbage img.prohibited-img {
max-width: 252px;width: 100%;
}

.residential-garbage img.syringe-img {
max-width: 162px;width: 100%;
}

.residential-page .sharps, .residential-page .resources {
    padding: 40px 0px;
}

.resources h3.padding, .resources .h3.padding {
    padding-bottom: 30px;
}

.residential-page .extra-bag {
    padding: 40px 0px;
    overflow: auto;
}

.aspect-ratio {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56%;
}

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


.resources p.links {
    padding-top: 30px;
}



/* Commercial - Cardboard */
.commercial-page .cardboard {
  padding: 100px 0;
}
.commercial-page .cardboard-bins .cardboard-dimension-bin{
  width: 100%;
  max-width: 476px;
  margin: 40px auto 0 auto;
  display: block;
}
.commercial-page .cardboard .cardboard-img{
  max-width: 438px;
  width: 100%;
}
.commercial-page .cardboard-bins {
    padding-bottom: 110px;
}
.commercial-page .employee-resources {
    padding-bottom: 175px;
}
.commercial-page .employee-resources.food-collection{
  padding-bottom: 50px;
}
.commercial-page .employee-resources .pdf-icon {
    max-width: 140px;
    width: 100%;
    margin: 50px 0 25px 0;
}
.commercial-page .employee-resources h4 {
    font-weight: 400;
}
.commercial-page .not-allowed .more-info {
    clear: both;
}
.commercial-page .not-allowed .food-scraps-img, .commercial-page .food-scraps-def .food-scraps-img {
    max-width: 256px;
    width: 100%;
}
.commercial-page .not-allowed .not-acceptable-img {
    max-width: 287px;
    width: 100%;
}
.commercial-page .not-allowed .leftovers-img {
    max-width: 250px;
    width: 100%;
}
.commercial-page .garbage-pickup .commercial-garbage-bin {
    max-width: 480px;
}
.commercial-page .garbage-pickup .more-info{
  margin-top:   40px;
}
.commercial-page .food-scraps-def {
    padding: 70px 0 80px 0;
}
.commercial-page .food-scraps-def h3, .commercial-page .food-scraps-def .h3{
  margin-top: 40px;
}
.commercial-page .food-carts .food-bins-img{
  width: 100%;
  max-width: 331px;
}
.commercial-page .food-carts .food-carts-img {
    width: 100%;
    max-width: 370px;
    margin-bottom: 60px;
    margin-top: 20px;
}
.commercial-page .food-carts {
    padding-bottom: 100px;
}
.commercial-page .commercial-faq{
  background: url('./img/img-large-bin.png') no-repeat left center transparent;
  background-size: 1500px;
  background-position: calc(-750px - 10vw) center;
  padding:75px 0 160px 0;
}
.commercial-page .commercial-faq h3, .commercial-page .commercial-faq .h3 {
    margin-top: 40px;
}
.commercial-page .img-dimensions-bin {
    width: 100%;
    max-width: 1132px;
    margin-bottom: 40px;
  }
.commercial-page .bins-controls .thumb-bins {
    max-width: 72px;
    width: 100%;
}
.commercial-page .box-controls .box-8 {
    max-width: 100px;
    width: 100%;
}
.commercial-page .box-controls .box-15 {
    max-width: 100px;
    width: 100%;
}
.commercial-page .box-controls .box-20 {
    max-width: 100px;
    width: auto;
}
.box-controls .box-30 {
    max-width: 100px;
    width: 100%;
}
.box-controls .box-40 {
    max-width: 100px;
    width: 100%;
}
.commercial-page .bins-controls{
  background:url('./img/1-6-cubic-bins.jpg') no-repeat center bottom transparent;
  background-size: contain;
  height: 150px;
  position: relative;
  width: 40%;
  float: left;
}
.commercial-page .box-controls{
  background:url('./img/8-40-cubic-boxes.jpg') no-repeat center bottom transparent;
  background-size: contain;
  height: 152px;
  position: relative;
  width: 54%;
  margin-left: 10px;
  float: left;
}
.commercial-page .bins-controls .img-wrap, .commercial-page .box-controls .img-wrap {
    position: absolute;
    bottom: 55px;
}
.commercial-page .bins-controls #bin-1 {
    left: 0px;
}

.commercial-page .bins-controls #bin-2 {
    left: 90px;
}
.commercial-page .bins-controls #bin-3 {
    left: 187px;
}
.commercial-page .bins-controls #bin-4 {
    left: 284px;
}

.commercial-page .bins-controls #bin-6 {
    left: 380px;
}
.commercial-page .box-controls #box-30 {
    left: 450px;
}
.commercial-page .box-controls #box-8{
  left: 5px;
}
.commercial-page .box-controls #box-15{
  left: 125px;
}
.commercial-page .box-controls #box-20{
  left: 248px;
}
.commercial-page .box-controls #box-30{
  left: 375px;
}
.commercial-page .box-controls #box-40{
  left: 500px;
}

.commercial-page .bin-dimensions {
    padding-bottom: 130px;
}
.commercial-page .bins-controls .img-wrap img, .commercial-page .box-controls .img-wrap img{
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    opacity: 0.6;
}
.commercial-page .bins-controls .img-wrap > a:hover img, .commercial-page .box-controls .img-wrap > a:hover img, .commercial-page .bins-controls .img-wrap > a.active img, .commercial-page .box-controls .img-wrap > a.active img{
  -webkit-filter: none;
  filter: none;
  opacity: 1;
}

.commercial-page section.grey-bg-top{
	background-color: #f1f1f1;
	padding: 120px 0 !important;
	top: -60px;
    position: relative;
    z-index: -10;
}

.commercial-page section.grey-bg{
	background-color: #f1f1f1;
	padding: 120px 0 !important;
}


.page-template-template-residential #menu-item-125 > a, .page-template-template-residential #menu-item-955 > a, .page-template-template-multifamily #menu-item-153 > a, .page-template-template-commercial #menu-item-196 > a{
  color: #003DA6;
  background-color: transparent;
  border-bottom: 4px solid #013ca6;
}

/* EVENTS */
.events-page .banner{
  background: url(/wp-content/uploads/2018/02/banner-events-2.png) no-repeat center bottom #e5e5e5;
  background-size: contain;
  height: 350px;
  width: 100%;
  margin-top: 74px;
}
.table-events .col-date {
    width: 115px;
}
.table-events th.col-date{
  width: 125px;
}
.table-events .col-location {
    width: 265px;
}
table.table-events {
    width: 100%;
}
.table-events .arrow-active-up {
    background: url(img/arrow-active.png) no-repeat right center transparent;
    background-size: 12px;
    display: inline-block;
    width: 12px;
    height: 12px;
    -ms-transform: rotate(180deg); /* IE 9 */
    -webkit-transform: rotate(180deg); /* Chrome, Safari, Opera */
    transform: rotate(180deg);
}
.table-events .arrow-active-down {
    background: url(img/arrow-active.png) no-repeat right center transparent;
    background-size: 12px;
    display: inline-block;
    width: 12px;
    height: 12px;
}
.table-events .arrow-inactive {
    background: url(img/arrow-inactive.png) no-repeat right center transparent;
    background-size: 12px;
    display: inline-block;
    width: 12px;
    height: 12px;
}
.table-events .order-link {
    padding: 5px 10px;
}
.table-events a{
  color: #000;
  text-decoration: none !important;
}
.table-events .col-title a{
  color: #003da6;
}
.table-events td, .table-events th {
    padding: 20px 15px;
}
.table-events td{
  border: 2px solid #fff;
  font-weight: 500;
}
.events-page .events_section {
    background: #f2f2f2;
    padding: 55px 0 90px 0;
	text-align: center;
}
.events-page .events-img {
	margin: auto;
}
.events-page .events_section {
    background: #f2f2f2;
    padding: 55px 0 90px 0;
}
.events-page .events_section h1{
  margin-bottom: 35px;
}
.events-page .event-info .col-1, .event-info .col-2 {
    width: 50%;
    margin-top: 16px;
    float: left;
}
.event-info a span.name {
    color: #003DA6;
}

.table-events .event-info .name {
    width: 100%;
    display: block;
}

/* Interior Pages */

.interior-page {
    margin-top: 100px;
}

/* ERROR PAGE */

.error-page {
    margin-top: 150px;
}

/* BREADCRUMBS */
.breadcrumbs {
    background: #013ca6;
    margin-top: 78px;
}
.breadcrumbs .menu {
    list-style: none;
    padding: 0px;
    text-align: center;
    margin: 0px;
}
.breadcrumbs li {
    display: inline-block;
}
.breadcrumbs li a {
    color: #fff;
    display: inline-block;
    padding: 10px 13px;
    text-transform: uppercase;
    font-size: 14px;
}
.breadcrumbs li.active a, .breadcrumbs li a:hover, .breadcrumbs li a:focus, .breadcrumbs li.current-post-ancestor a{
  background-color: #3463b8;
  text-decoration: none;
}

.lightbox-sswr .container{
  width: 90%;
  padding-top: 70px;
  padding-bottom: 100px;
  max-width: 750px;
}
.lightbox-sswr .icon-lightbox{
  max-width: 140px;
  width: 100%;
}
.lightbox-sswr h2{
  font-weight: 500;
  font-size: 30px;
}
.lightbox-sswr .person-picture {
    max-width: 210px;
    width: 100%;
    border-radius: 8px;
}
.lightbox-sswr .name {
    font-weight: 500;
    display: block;
}
.lightbox-sswr .title {
    font-size: 14px;
    margin-bottom: 20px;
    display: block;
}
.fancybox-close{
  background: url('./img/close-icon.png') no-repeat center center transparent;
  background-size: 18px;
  top: 10px;
  right: 10px;
}
.fancybox-overlay{
  background: rgba(0,0,0,0.9);
}
.fancybox-type-iframe .fancybox-close {
    top: -32px;
    right: 5px;
}
.fancybox-type-iframe .fancybox-title-float-wrap{
  display: none;
}

/* About Page */
.about-page .history {
    margin-top: 74px;
    background: #f1f1f1;
    padding: 90px 0 120px 0;
}
.about-page .history .wrap-img{
  position: relative;
}
.about-page .history-img{
  max-width: 578px;
    width: 100%;
    position: absolute;
    top: 0px;
    left: 50%;
    margin-left: -290px;
}
.about-page .history .video {
    margin-top: 50px;
    display: inline-block;
    background: url(./img/play-video-icon.png) no-repeat center left transparent;
    background-size: 50px;
    padding-left: 70px;
    line-height: 50px;
}

.about-page .stats {
    padding: 105px 0;
}
.about-page .stats .img-wrap, .about-page .stats .text-wrap {
    text-align: center;
}
.about-page .stats h4 {
    color: #003da6;
    font-size: 50px;
    font-weight: 500;
}
.about-page .stats .stat-img{
  width: 100%;
  max-width: 184px;
}
.about-page .stats .img-wrap{
  text-align: center;
}
.about-page .stats-row {
    margin-top: 40px;
    overflow: auto;
    width: 100%;
    clear: both;
    float: left;
}
.about-page .community .wrapper-grey {
    float: left;
    width: 100%;
    clear: both;
    background: #e2e2e2;
    border-radius: 8px;
    padding: 60px 0 80px 0;
}

.about-page .video-wrap {
	margin-bottom: 50px !important;
}
.about-page .community ul li {
    margin-bottom: 17px;
}
.about-page .community ul {
    list-style: none;
    padding: 0px;
    margin-bottom: 0px;
}
.about-page .community h2{
  margin-bottom: 40px;
}

.about-page .team-list .team-img {
    max-width: 210px;
    width: 100%;
}
.about-page .team-list .team-item {
    width: 20%;
    display: inline-block;
    margin-right: -4px;
    text-align: center;
    margin-top: 50px;
    min-width: 210px;
}
.about-page .customer-service .team-list .team-item {
    width: 33.33%;
}
.about-page .route-managers .team-list .team-item {
    width: 50%;
}
.about-page .team-list .team-img-wrap {
    max-width: 210px;
    margin: auto;
    background: #dcdcdc;
    overflow: auto;
    border-radius: 8px;
}
.about-page .team-list .team-item h4 {
    margin-top: 20px;
    font-size: 16px;
    color: #333333;
    font-weight: 400;
    margin-bottom: 5px;
}
.about-page .team-item .title {
    color: #333;
    font-size: 14px;
}
.about-page .team-list .team-item p {
    margin-bottom: 20px;
}
.about-page .team-list .team-item .team-text-wrap{
  margin-bottom: 16px;
}
.about-page .team-list .team-item .img-wrap {
    display: block;
    position: relative;
}
.about-page .team-list .team-item .link .img-wrap:before{
    content: '';
    background-color: rgba(0, 58, 128, 0.9);
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    opacity: 0;
}
.about-page .team-list .team-item .link .img-wrap:after{
  content: 'Read Bio';
    color: #fff;
    position: absolute;
    text-align: center;
    opacity: 0;
    left: 50%;
    margin-left: -33px;
    top: 50%;
}
.team-list .team-item .link:hover .img-wrap:before{
  opacity: 1;
  transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.team-list .team-item .link:hover .img-wrap:after{
  opacity: 1;
    transition: all 0.5s 0.4s;
    -webkit-transition: all 0.5s 0.3s;
}
.customer-service, .route-managers {
    float: left;
    margin-top: 80px;
}
.route-managers {
  width: 40%;
}
.customer-service {
  width: 60%;
}
.about-page .team-section{
  padding: 120px 0 135px 0;
}
.about-page .foodcycle {
    background: #f1f1f1;
    padding: 100px 0 110px 0;
}
.about-page .foodcycle .button {
    padding: 10px 50px;
    margin-top: 35px;
}
.about-page .team-pic{
    background:transparent;
    /*height: auto;*/
    margin-top: -170px;
    position: relative;
    z-index: 2;
  }
  .about-page .mobile-team-pic {
    width: 100%;
    max-width: 1400px;
    margin: auto;
    display: block;
  }
  .about-page .community {
    position: relative;
    z-index: 4;
  }

  .lightbox-sswr .wrapper-video{
    min-width: 600px;
    height: auto;
  }
  .lightbox-sswr .container-video{
    padding: 30px;
    overflow: auto;
  }



/*Go back to top link*/
#top-link-block.affix-top {
    position: absolute; /* allows it to "slide" up into view */
    bottom: -80px; /* negative of the offset - height of link element */
    right: 80px;
    visibility: hidden;
}
#top-link-block.affix {
    position: fixed; /* keeps it on the bottom once in view */
    bottom: 80px; 
    right: 80px; 
    z-index: 5;
    visibility: visible;
}
#top-link-block img{
  max-width: 80px;
  opacity: 1;
  transition: opacity 0.5s;
  -webkit-transition: opacity 0.5s;
  -moz-transition: opacity 0.5s;
  -o-transition: opacity 0.5s;
}
#top-link-block a:hover img{
  opacity: 0.8;
}

.new {
    vertical-align: super;
    font-size: 12px;
    color: #f05a24;
    font-weight: 500;
}

/* Thanksgiving popup */
.thanksgiving-popup {
    padding: 10px 40px;
    max-width: 350px;
}
.thanksgiving-popup h3, .thanksgiving-popup p, .thanksgiving-popup .h3{
  color: #fff;
  font-weight: 500;
}
.thanksgiving-popup .button{
	background: #a00000;
  /*background: #a63810;*/
}
#sgpb-popup-dialog-main-div{
      border-radius: 8px;
    border: 0px;
    box-shadow: none;
}

.banner-announcement {
    padding: 10px;
    /*background: #496149;*/
	/*background: #fffa9d;*/
	/*background: #fee062;*/
	/*background: #fee475;*/
	/*background: #074A32;*/
	background: #a00000;
    /*color: #333333;*/
	color:#ffffff;
    font-weight: 500;
}
.banner-announcement p{
padding-top: 10px;
}
.banner-announcement .button {
    margin-left: 10px;
    padding: 8px 10px;
	/*background: #a63810;*/
	/*background: #a00000;*/
	background: #074A32;
}
#leaf-banner{
	margin-right:10px;
}
/*.multifamily-page .food-scraps-def {
    padding: 70px 0 80px 0;
}*/



/** Dumpster Services **/
.dumpster-page section {
	padding: 120px 0px;
}
.dumpster-page .intro-section {
	padding: 0px;
}
.dumpster-page .dumpster {
	width: 100%;
}
.dumpster-page .bins{
    background-color: var(--light-blue);
    margin-top: 110px;
}
.dumpster-page .bins img {
	width: 100%;
	max-width: 270px;
	margin: auto;
	text-align: center;
}
.dumpster-page .bins .bottom-row img {
	max-width: 250px;
}
.dumpster-page .bins .bottom-row {
	margin-top: 130px;
}
.dumpster-page .bins .title {
	margin-bottom: 15px;
}
.dumpster-page .bins .bottom-row ul {
    column-count: 2;
}
.dumpster-page .bins .row p {
	margin-bottom: 15px;
}
/*.dumpster-page .bins .row ul li {
    padding-bottom: 10px;
} */
.dumpster-page .bins .dot li:last-child {
    margin-bottom: 10px;
}
.dumpster-page .schedule-section {
	padding-top: 120px;
    background-color: var(--navy);
    color: var(--white);
}
.dumpster-page .schedule-section .h2-title {
	margin: 0px auto 120px auto;
	
}
.dumpster-page .schedule-section .box-row {
	display: flex;
}
.dumpster-page .schedule-section .box {
    background: var(--white);
    padding: 80px 60px 40px 60px;
    text-align: center;
    border-radius: 16px;
	height: calc(100% - 5px);
    color: var(--black-200);
}
.dumpster-page .schedule-section .box img {
	max-height: 75px;
	margin-bottom: 40px;
}
.dumpster-page .schedule-section .box .title {
	font-size: 1.875rem;
	font-weight: 500;
	margin-bottom: 20px;
}
.dumpster-page .schedule-section .box .b-text {
    font-size: 1.125rem;
}
.dumpster-page .schedule-section .circle-icon {
    width: 75px;
    position: absolute;
    height: 95px;
    top: 2px;
    text-align: center;
    margin: auto;
    left: 50%;
    transform: translate(-50%, -50px);
	z-index: 2;
}
.dumpster-page .dumpster-controls, .dumpster-page .bin-dimensions {
	padding-bottom: 0px;
}
.dumpster-page .img-dimensions-bin {
    width: 100%;
    max-width: 1132px;
    margin-bottom: 80px;
  }
.dumpster-page .dumpster-controls img {
    max-width: 150px !important;
    width: 100% !important;
}
.dumpster-page .dumpster-controls{
  background:url('./img/dumpster-debris-boxes-line.png') no-repeat center bottom transparent;
  background-size: contain;
  height: 175px;
  position: relative;
  width: 85%;
  margin: auto;
  float: none;
  display: flex;
  justify-content: space-between;
}
.dumpster-page .dumpster-controls .img-wrap {
	flex-basis: auto;
}
.dumpster-page .dumpster-controls .img-wrap img{
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    opacity: 0.6;
}
.dumpster-page .dumpster-controls .img-wrap > a:hover img, .dumpster-page .dumpster-controls .img-wrap > a.active img{
  -webkit-filter: none;
  filter: none;
  opacity: 1;
}
.dumpster-page .schedule-section .dashed {
    position: absolute;
    top: -16px;
    z-index: 1;
    width: 100%;
    right: 0px;
    left: 50%;
}

/*** MEDIA QUERIES ***/

/* ONLY DESKTOP */
@media screen and (min-width: 1025px){
	
}
@media screen and (max-width: 1500px){
  .commercial-page .commercial-faq{
    background-position: calc(-750px - 20vw) center;
  }
}
@media screen and (max-width: 1300px){
  .commercial-page .commercial-faq{
    background-position: calc(-750px - 25vw) center;
  }
}
@media screen and (max-width: 1200px){

    /* footer */
    footer .footer-service .f-box .h3-title {
       font-size: 1.5rem;
    }
    footer .footer-service .f-box .img-wrap {
       width: 65px;
    }
    footer .footer-service .f-box .text-wrap {
       width: calc(100% - 80px);
    }
    footer .footer-service .f-box{
        padding: 40px 30px 40px 30px;
        min-height: 193px;
    }
	/* Home */
	.sswr-home .services-wrap .box .text-p{
		min-height: 130px;
	}

  /*contact*/

  .contact-page .submit-wrap {
    text-align: left;
    position: relative;
  }
  .contact-page .form-wrapper{
        padding: 100px 60px 73px 80px;
  }
  .contact-page .banner {
    background: url(./img/contact-banner.png) repeat-x center bottom #e5e5e5;
    background-size: 120%;
  }
  .contact-page div.wpcf7 .ajax-loader{
    right: inherit;
    left: 63px;
}
  .residential-page .grey-arrow{
    left: 181px;
    bottom: 76px;
  }

  .breadcrumbs li a{
    padding: 10px 10px;
    font-size: 13px;
  }

  /* Multifamily */
  .multifamily-page .cubic-yard-img{
    padding-top: 44px;
  }
  .multifamily-page .blue-dark-arrow{
    background-size: 246px;
    top: 40px;
    left: -150px;
  }
  .multifamily-page .carts-img{
    margin-top:240px;
  }
  .multifamily-page br.hidden-mobile {
		display: none;
  }
  .residential-page .grey-small-arrow{
    left: 20px;
  }
  .residential-page .split-cart .blue-split-can {
	 margin-left: 0px;
  }
  .commercial-page .commercial-faq{
    background-position: calc(-750px - 35vw) center;
  }
  .commercial-page .box-controls{
    width: 55%;
  }
	
  .commercial-page .bins-controls .img-wrap img, .commercial-page .box-controls .img-wrap img{
    -ms-transform: scale(0.78);
    -ms-transform-origin:bottom;
    -o-transform: scale(0.78);
    -o-transform-origin:bottom;
    -moz-transform: scale(0.78);
    -webkit-transform: scale(0.78);
    -webkit-transform-origin: bottom;
    transform: scale(0.78);
    transform-origin: bottom;
  }
  .commercial-page .bins-controls #bin-2 {
    left: 72px;
  }
  .commercial-page .bins-controls #bin-3 {
    left: 151px;
  }
  .commercial-page .bins-controls #bin-4 {
    left: 228px;
  }
  .commercial-page .bins-controls #bin-6 {
    left: 303px;
  }
  .commercial-page .box-controls #box-15 {
    left: 100px;
  }
  .commercial-page .box-controls #box-20 {
    left: 197px;
  }
  .commercial-page .box-controls #box-30 {
    left: 300px;
  }
  .commercial-page .box-controls #box-40 {
    left: 405px;
  }	
  .commercial-page .garbage-pickup .commercial-garbage-bin {
    max-width: 480px;
    width: 100%;
  }

  /* About Page */
  .about-page .team-list .team-item{
    min-width: 0px;
    padding: 0 10px;
  }
  .about-page .history-img{
    margin-left: -50%;
  }


}

/***
****  TABLET DEVICES ****
****/

@media screen and (max-width: 1024px) {
	/*header*/
	.navbar-header{
		width: 100%;
	}
	.navbar-default .navbar-collapse{
		float: none !important;
	}
	.navbar-default .navbar-toggle .icon-bar{
		color: #000;
	}
	.navbar-toggle {
      display: block;
      margin-right: 0px;
      margin-top: 18px;
  	}
  .navbar-toggle .icon-bar {
      width: 28px;
      height: 2px;
      transition: all 0.2s;
  }
  .navbar-toggle .top-bar {
      transform: rotate(45deg);
      -webkit-transform: rotate(45deg);
      -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
      
      transform-origin: 5px 10%;
      -webkit-transform-origin: 5px 10%;
      -moz-transform-origin: 5px 10%;
    -o-transform-origin: 5px 10%;
  }
  .navbar-toggle .middle-bar {
      opacity: 0;
  }
  .navbar-toggle .bottom-bar {
      transform: rotate(-45deg);
      -webkit-transform: rotate(-45deg);
      -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
      transform-origin: 5px 90%;
      -webkit-transform-origin: 5px 90%;
      -moz-transform: 5px 90%;
    -o-transform: 5px 90%;
  }

  .navbar-toggle.collapsed .top-bar {
      transform: rotate(0);
      -webkit-transform: rotate(0);
      -moz-transform: rotate(0);
    -o-transform: rotate(0);
  }
  .navbar-toggle.collapsed .middle-bar {
      opacity: 1;
  }
  .navbar-toggle.collapsed .bottom-bar {
      transform: rotate(0);
      -webkit-transform: rotate(0);
      -moz-transform: rotate(0);
    -o-transform: rotate(0);
  }
  .navbar-default .navbar-toggle .icon-bar{
    background-color: #000;
  }
  .navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus{
    background: transparent;
  }
  .navbar-nav > li{
    width: 100%;
    margin: 10px 0;
  }
  .navbar-default .navbar-nav > li.button-link > a{
    border-radius: 0px;
    margin-left: 0px;
  }

  .navbar-nav > li > a {
    padding-top: 5px;
    padding-bottom: 5px;
	}
  .navbar-default .navbar-nav > li.active > a, .navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus, .navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus{
    border-bottom: 0px;
    background: #f2f2f2;
  }
  .navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus{
     border-bottom: 0px;
    background: transparent;
    color: #003DA6;
  }
  .navbar-nav{
    width: 100%;
  }

  /* Commercial Page */
  .commercial-page .commercial-faq{
    background-position: calc(-750px - 40vw) center;
  }
}

/** SMALL TABLETS ****/
@media screen and (max-width:991px) {
	/* Footer */
	footer .address, footer .social-icons {
		margin-top: 30px;
	}
	footer .menu{
		padding-left: 0px;
	}
    footer .footer-service .f-box{
        margin-bottom: 30px;
        min-height: 0px;
		display: block;
    }
	footer .footer-service .f-box .img-wrap{
        width: 100%;
		margin-bottom: 10px;
    }
	footer .footer-service .f-box .text-wrap{
        width: 100%;
    }

  .residential-breadcrumbs.breadcrumbs li a {
    padding: 7px 10px;
    font-size: 9px;
  }

	/*Homepage*/
    .sswr-home .hero .overlay{
        width: 90%;
    }
	.sswr-home .services-wrap .img-wrap{
		max-width: 200px;
    	margin-left: calc(-90% / 2);
    	width: 100%;
	}
	.sswr-home .services-wrap .box{
		padding: 50px 20px 40px 20px;
	}
	.sswr-home .services-wrap .box .text-p {
    	min-height: 150px;
	}
	.sswr-home .cta .app-icon:first-of-type {
	    margin-bottom: 20px;
	    margin-right: 0px;
	    display: block;
	}
	.sswr-home .cta h4{
    	margin-top: 10px;
	}
    .sswr-home .services-section .service-box .text-wrapper {
        padding: 40px 70px 55px 50px;
    }
    .sswr-home .services-section .service-box .img-wrapper{
        padding: 40px;
    }
  .food-popup{
    right: 30px;
  }

  /*Contact*/
  .contact-page .banner {
    background: url(./img/contact-banner.png) repeat-x center bottom #e5e5e5;
    background-size: 136%;
    height: 226px;
    position: relative;
    padding-top: 173px;
  } 
  .residential-recycling .banner{
   height: 226px;
    position: relative;
    padding-top: 173px;
    margin-top: 76px;
  }

  .contact-page .text-wrapper {
    padding: 60px 30px 163px 30px;
  }
  .contact-page .form-wrapper{
        padding: 100px 30px 40px 30px;
  }

  /*Events page*/
  .events-page .banner{
    height: 280px;
  }

  /* Residential pages*/
  .residential-recycling ul.left{
    width: 100%;
    padding-right: 0px;
    margin-bottom: 0px;
  }
  .residential-banner h1{
    width: 100%;
    font-size: 32px;
  }
  .residential-page .curbside-collection .centered{
    margin-bottom: 30px;
  }
  .residential-page .blue-arrow, .residential-page .green-arrow, .residential-page .grey-arrow, .multifamily-page .blue-dark-arrow, .multifamily-page .blue-light-arrow, .residential-page .grey-small-arrow{
    display: none;
  }
   .residential-page .split-cart .grey-box {
	   margin-right: 0px;
	   margin-top: 20px;
	   margin: 20px 0px 0px 0px;
}
	.residential-page .paper-bag-img {
	  left: 260px;
	  max-width: 95px;
	  bottom: 0px;	  
	}
  .residential-recycling .truck{
   margin-top: 10px;
  }
  .multifamily-page .carts-img {
    margin-top: 150px;
  }
  .multifamily-split-cart .grey-box {
    margin-left: 20px;
    margin-top: 60px;
  }
  .multifamily-page .multifamily-recycle-collection .collection{
    text-align: center;
  }
  .multifamily-page .food-carts .food-carts-img {
    margin-bottom: 20px;
  }

  /* Commercial page*/
  .commercial-page .food-carts .food-carts-img {
    margin-bottom: 20px;
  }
  .commercial-page .commercial-faq {
    background-position: -1300px center;
  }
  .commercial-page .food-carts .food-bins-img,  .multifamily-page .food-carts .food-bins-img{
    margin-bottom: 40px;
  }
  .commercial-page .food-collection .text-wrap {
    height: 76px;
  }
  .commercial-page .bins-controls .img-wrap img, .commercial-page .box-controls .img-wrap img{
    -ms-transform: scale(0.60);
    -ms-transform-origin:bottom;
    -o-transform: scale(0.60);
    -o-transform-origin:bottom;
    -moz-transform: scale(0.60);
    -moz-transform-origin:bottom;
    -webkit-transform: scale(0.60);
    -webkit-transform-origin: bottom;
    transform: scale(0.60);
    transform-origin: bottom;
  }
  .commercial-page .bins-controls #bin-2 {
    left: 53px;
  }
  .commercial-page .bins-controls #bin-3 {
    left: 109px;
  }
  .commercial-page .bins-controls #bin-4 {
    left: 164px;
  }
  .commercial-page .bins-controls #bin-6 {
    left: 218px;
  }
  .commercial-page .box-controls #box-8 {
    left: -13px;
  }
  .commercial-page .box-controls #box-15 {
    left: 57px;
  }
  .commercial-page .box-controls #box-20 {
    left: 135px;
  }
  .commercial-page .box-controls #box-30 {
    left: 213px;
  }
  .commercial-page .box-controls #box-40 {
   left: 288px;
  }
  .commercial-page .box-controls{
    overflow: hidden;
  }
  .commercial-page .garbage-pickup .commercial-garbage-bin{
    margin-top: 40px;
  }
  .commercial-page .img-dimensions-bin{
    margin-bottom: 10px;
  }
  /* About */
  .about-page .team-pic{
    margin-top: -90px;
  }

  .food-popup-mobile {
    padding: 25px 0 50px 0;
    background: url(./img/background-food-scrap-recycling.jpg) no-repeat center center transparent;
    background-size: cover;
    text-align: center;
    color: #fff;
  }
  .food-popup-mobile .button{
    margin-top: 20px;
  }
  .dumpster-page .bins img {
	margin-bottom: 30px;
  }
  .dumpster-page .schedule-section .box {
	 margin-bottom: 80px;
  }
  	.dumpster-page .dumpster-controls .img-wrap {
      padding: 0px 5px;
  }
	.dumpster-page .dumpster-controls {
	  align-items: center;
	}
	.dumpster-page .dashed {
		display: none;
	}
	.dumpster-page .schedule-section .box-row {
	   display: block;
   }
	.overview-page .service-details .service-box .button {
		text-align: center;
	}
	.overview-page .services-section .service-box .text-wrapper {
       padding: 70px 60px 85px 60px;
   }
	.overview-page .top-links .intro {
		margin-bottom: 35px;
	}
}
/* Portrait IPAD */

@media screen and (max-width: 768px) {

  .about-page .history {
    padding: 90px 0 90px 0;
  }
  .about-page .stats {
    padding: 70px 0;
  }
  .about-page .history .video {
    margin-top: 50px;
    background-size: 55px;
    padding-left: 70px;
    line-height: 55px;
    font-size: 18px;
  }

}

/***
****  MOBILE DEVICES ****
****/

@media screen and (max-width: 767px){
	h1, h2{
		font-size: 34px;
	}
    footer .footer-service .button.first-button {
        margin-right: 0px;
        
        margin-bottom: 20px;
    }
    footer .footer-service .button{
        width: 100%;
        text-align: center;
    }
    footer .footer-service .f-box {
        padding: 30px;
    }
   #top-link-block.affix{
    bottom: 20px;
    right: 20px;
  }
  #top-link-block img {
    max-width: 40px;
  }
	/* header*/
  .navbar-fixed-top .navbar-collapse, .navbar-fixed-bottom .navbar-collapse{
    max-height: 440px;
  }
	.navbar-default .navbar-collapse{
		width: 100%;
    margin-left: 0;
	}
	header .navbar-default .container{
		padding-right: 0px;
	}
  .navbar-nav{
    width: 100%;
    margin: 7.25px 0;
    margin-left: -10px;
  }
  .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus, .navbar-default .navbar-nav .open .dropdown-menu > .active > a, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus{
  border-bottom: 0px;
    background: #f2f2f2;
    color: #003DA6;
  }
  .navbar-default .navbar-nav .open .dropdown-menu > li > a{
    color: #333;
  }
  
  .residential-breadcrumbs.breadcrumbs li a {
    padding: 5px 6px;
    display: inline-block;
    width: 100%;
    font-size: 10px;
  }
  .residential-breadcrumbs.breadcrumbs li {
    width: 49%;
  }


	/* Footer */
	footer .text-wrap, footer .img-wrap {
	    margin-bottom: 30px;
	    margin-top: 20px;
	}
	footer .social-icons{
		padding-left: 0px;
    	margin-top: 30px;
	}
	footer .address{
		margin-top: 5px;
	}
	footer #inner-footer{
		padding: 55px 0 50px 0;
	}
    .h1-big {
        font-size: 2.5rem;
    }
	/* Homepage */
	.sswr-home .hero .overlay{
        width: 100%;
        background: linear-gradient(180deg, #001841 0%, #001841 52.03%, rgba(0, 24, 65, 0.50) 80.2%, rgba(0, 24, 65, 0.00) 94.06%);
    }
    .sswr-home .hero {
        padding: 100px 0 170px 0;
    }
    .sswr-home .hero .banner-img-home{
        background: url('./img/hero-home-mobile.webp') no-repeat bottom center transparent;
        background-size: contain;
        top:inherit;
        bottom: 0px;
    }
    .sswr-home .hero .h1-big {
        margin-bottom: 20px;
    }
    .sswr-home .services-section .service-box, .overview-page .services-section .service-box{
        flex-direction: column;
        margin: 0 15px 55px 15px;
    }
    .sswr-home .services-section .service-box .img-wrapper .img-responsive, .overview-page .services-section .service-box .img-wrapper .img-responsive {
       max-height: 140px;
    }
    .sswr-home .services-section .service-anchor-box, .overview-page .services-section .service-anchor-box{
            margin: 0 12px;
    }
    .sswr-home .services-section .anchor-wrapper{
        flex-direction: column; 
        gap: 30px;
    }
	   .overview-page .services-section .anchor-wrapper{
        flex-direction: column; 
        gap: 30px;
		align-items: center;
    }
    .sswr-home .services-section .service-box .text-wrapper, .overview-page .services-section .service-box .text-wrapper {
        padding: 30px 40px 55px 40px;
    }
	.sswr-home .services {
	    padding: 70px 0 40px 0;
	}
	.sswr-home .services-wrap .img-wrap {
	    max-width: 260px;
	    margin-left: -130px;
	}
	.sswr-home .services-wrap .box{
		padding: 80px 20px 40px 20px;
		margin-top: 120px;
	}
	.sswr-home .services-wrap .box.box-2{
		margin-top: 180px;
	}
	.sswr-home .services-wrap .box .text-p {
	    min-height: 90px;
	}
	.sswr-home .faq .faq-item{
        padding: 40px 30px 40px;
	}
	.sswr-home .cta{
		padding: 50px 0 40px 0;
	}
	.sswr-home .cta .or-img{
		background: url(./img/dashes-h.png) no-repeat center center transparent;
	    background-size: 295px;
	    position: relative;
	    height: 140px;
	}
	.sswr-home .cta .or-icon {
	    max-width: 60px;
	    margin-left: -30px;
	    margin-top: -30px;
	}
	.sswr-home .faq{
    	padding-top: 60px;
	}
	.sswr-home .faq-item .faq-img {
	    max-width: 200px;
	}
	.sswr-home .cta h4{
		font-size: 28px;
		margin-top: 10px;
	}
	.sswr-home .food-recycling{
		padding: 65px 0 75px 0;
	}
	.sswr-home .services-wrap{
		margin-bottom: 65px;
	}
    .dumpster-page section {
        padding: 80px 0px;
    }
    .dumpster-page .bins{
        margin-top: 80px;
    }
    .dumpster-page .bins .bottom-row {
        margin-top: 70px;
    }
    .dumpster-page .schedule-section {
        padding-top: 90px;
            padding-bottom: 0;
    }

  .food-popup-mobile {
    padding: 25px 0 50px 0;
    background: url(./img/background-food-scrap-recycling.jpg) no-repeat center center transparent;
    background-size: cover;
    text-align: center;
    color: #fff;
  }
  .food-popup-mobile .button{
    margin-top: 20px;
  }

  /* Contact form */
  .contact-page .first-col{
    width: 100%;
    margin-right: 0px;
    display: inline-block;
     border-radius: 10px 10px 0 0px;
  }
  .contact-page .text-wrapper{
       
        padding: 40px 30px 60px 30px;
  }
  .contact-page .second-col{
    width: 100%;
    margin-left: 0px;
    border-radius: 0 0px 10px 10px;
    display: inline-block;
  }
  .contact-page .form-wrapper {
    padding: 50px 30px 30px 30px;
    
  }
  .contact-page .banner {
    background: url(./img/contact-banner.png) repeat-x center bottom #e5e5e5;
    background-size: 350%;
  }
  .residential-recycling .banner{
     background-size: 1500px;
     margin-top: 76px;
  }
  .multifamily-page .banner{
     background-size: 1200px;
  }

  .events-page .banner{
    height: 200px;
    background-size: 150%;
  }

  /* Residential apges */
  .residential-banner h1 {
    width: 89%;
    font-size: 22px;
    font-weight: 500;
	padding: 20px 10px;
  }
  .residential-garbage .residential-banner h1{
    width: 90%;
  }
  .residential-garbage img.syringe-img{
    margin-top: 20px;
  }
  .residential-page .road{
    height: 120px;
  }
  .residential-page .tree-section {
    padding-bottom: 90px;
  }
  .residential-page .yard-trimming .provide-trim-img{
    margin-bottom: 50px;
  }
  .residential-page .split-cart .grey-box{
    margin-left: 0;
    padding-left: 0px;
	margin-right: 30px;
	padding-bottom: 40px;
  }
  .residential-page .green-cart{
    background: url('./img/sswr-split-cart-black.jpg') no-repeat center right transparent;
    background-size: 126px;
    padding-right: 140px;
  }
  .residential-page .blue-cart{
    background: url('./img/sswr-split-cart-brown.jpg') no-repeat top left transparent;
    background-size: 128px;
    padding-left: 140px;
  }
  .residential-page .paper-bag-img{
    left: 110%;
  }
  .residential-page .items-collected-img{
    margin: 30px 0;
  }
  .residential-page .not-allowed {
    padding: 40px 0px 80px;
  }
  .overview-page .services-section .service-box .text-wrapper h3{
    font-size: 2rem;
  }

  .lightbox-sswr .container{
    width: 100%;
    max-width: 95%;
    padding-top: 40px;
    padding-bottom: 50px;
  }

  /* Multifamily Pages */
  .multifamily-page .cubic-yard-img{
    margin: auto;
    display: block;
  }
  .multifamily-page .blue-cart{
    background: url(./img/light-cart-mobile.png) no-repeat left 100px transparent;
    background-size: 115px;
    padding-left: 130px;
  }
  .multifamily-page .dark-blue-cart{
    background: url(./img/blue-cart-mobile.png) no-repeat right 100px transparent;
    background-size: 115px;
    padding-right: 130px;
  }
  .multifamily-page .other-products-trash{
    margin-bottom: 30px;
  }
  .multifamily-page img.food-scraps-img.space-mobile {
	margin-top: 20px;
	margin-bottom: 30px;
  }

  /* Commercial page */
  .commercial-page img.food-scraps-img.space-mobile {
	margin-top: 20px;
	margin-bottom: 30px;
  }
  .commercial-page .cardboard-bins .cardboard-dimension-bin{
    margin-bottom: 50px;
    margin-top: 10px;
  }
  .commercial-page .cardboard .cardboard-img{
    margin-bottom: 30px;
  }
  .commercial-page .cardboard {
    padding: 60px 0;
  }
  .commercial-page .employee-resources {
    padding-bottom: 85px;
  }
  .commercial-page .food-scraps-def,  .multifamily-page .food-scraps-def  {
    padding: 40px 0 10px 0;
  }
/*  .commercial-page .food-scraps-def .food-scraps-img {
    margin-bottom: 30px;
  }*/
  .commercial-page .food-carts {
    padding-bottom: 60px;
  }
  .commercial-page .commercial-faq{
    background:none;
    padding-bottom: 60px;
  }
  .commercial-page .bins-controls{
    width: 100%;
    float: none;
    max-width: 442px;
    margin: auto;
  }
  .commercial-page .box-controls {
    width: 100%;
    max-width: 674px;
    float: none;
    margin: auto;
  }
  .commercial-page .bins-controls .img-wrap img{
   -ms-transform: scale(1);
    -ms-transform-origin:bottom;
    -o-transform: scale(1);
    -o-transform-origin:bottom;
    -moz-transform: scale(1);
    -moz-transform-origin:bottom;
    -webkit-transform: scale(1);
    -webkit-transform-origin: bottom;
    transform: scale(1);
    transform-origin: bottom;
  }
  .commercial-page .bins-controls #bin-6 {
    left: 365px;
  }
  .commercial-page .bins-controls #bin-2 {
    left: 91px;
  }
  .commercial-page .bins-controls #bin-3 {
    left: 182px;
  }
  .commercial-page .bins-controls #bin-4 {
    left: 274px;
  }
  .commercial-page .box-controls .img-wrap img{
   -ms-transform: scale(0.8);
    -ms-transform-origin:bottom;
    -o-transform: scale(0.8);
    -o-transform-origin:bottom;
    -moz-transform: scale(0.8);
    -moz-transform-origin:bottom;
    -webkit-transform: scale(0.8);
    -webkit-transform-origin: bottom;
    transform: scale(0.8);
    transform-origin: bottom;
  }
  .commercial-page .box-controls #box-8 {
    left: 0px;
  }
  .commercial-page .box-controls #box-15 {
    left: 19%;
  }
  .commercial-page .box-controls #box-20 {
    left: 39%;
  }
  .commercial-page .box-controls #box-30 {
    left: 59%;
    right: auto;
  }
  .commercial-page .box-controls #box-40 {
    left: 80%;
  }

  /* About */
  .about-page .team-list .team-item, .customer-service, .about-page .customer-service .team-list .team-item, .route-managers, .about-page .route-managers .team-list .team-item{
    width: 100%;
  }
  .about-page .team-list .team-item{
    margin-top:30px;
  }
  .about-page .history-img{
        position: relative;
    margin: 30px 0 20px 0;
    left: 0px;
  }
  .about-page .history{
    padding:  40px 0 60px 0;
  }
  .about-page .stats {
    padding: 55px 0;
    }
  .about-page .team-pic{
    background:transparent;
    margin-top: -20px;
    position: relative;
    z-index: 2;
  }
  .about-page .mobile-team-pic {
    width: 100%;
    max-width: 1000px;
  }
  .about-page .community {
    position: relative;
    z-index: 4;
  }
  .about-page .team-section {
    padding: 60px 0 75px 0;
    }
  .about-page .foodcycle{
    padding: 50px 0 70px 0;
  }
  .lightbox-sswr .person-picture{
    margin-bottom: 20px;
  }
  .lightbox-sswr .wrapper-video{
    min-width: 0px;
    width: 100%;
  }
	.dumpster-page .dumpster-controls {
	  width: 95%;
	  height: 150px;
	}
	.overview-page .top-links {
		padding-top: 120px;
	}
	.overview-page section {
		padding: 80px 0px;
	}
	.overview-page .service-details .p-0 {
		width: 100%;
	}
	.overview-page .top-links .box .title {
		font-size: 1.25rem;
		 max-width: 60%;
	}
	
}
@media only screen and (max-width: 767px) and (orientation: landscape) {
 
}
@media only screen and (max-width: 640px) and (orientation: portrait) {
  .commercial-page .box-controls .img-wrap img{
  -ms-transform: scale(0.70);
    -ms-transform-origin:bottom;
    -o-transform: scale(0.70);
    -o-transform-origin:bottom;
    -moz-transform: scale(0.70);
    -moz-transform-origin:bottom;
    -webkit-transform: scale(0.70);
    -webkit-transform-origin: bottom;
    transform: scale(0.70);
    transform-origin: bottom;
  }
}

@media only screen and (max-width: 640px) and (orientation: landscape) {
	
}

@media only screen and (max-width: 600px){

}

/*** SMALLEST MOBILE DEVICES ****/
@media only screen and (min-width : 320px) and (max-width : 480px){
  /* residential pages */

  li.indent {
    padding-right: 20px;
  }
  .commercial-page .bins-controls .img-wrap img{
      -ms-transform: scale(0.70);
    -ms-transform-origin:bottom;
    -o-transform: scale(0.70);
    -o-transform-origin:bottom;
    -moz-transform: scale(0.70);
    -moz-transform-origin:bottom;
    -webkit-transform: scale(0.70);
    -webkit-transform-origin: bottom;
    transform: scale(0.70);
    transform-origin: bottom;
  }
  .commercial-page .bins-controls #bin-1 {
    left: -10px;
  }
  .commercial-page .bins-controls #bin-2 {
    left: 57px;
  }
  .commercial-page .bins-controls #bin-3 {
    left: 125px;
  }
  .commercial-page .bins-controls #bin-4 {
    left: 192px;
  }
  .commercial-page .bins-controls #bin-6 {
    left: 258px;
  }
  .commercial-page .bins-controls{
    height: 135px;
  }
  .commercial-page .bins-controls .img-wrap, .commercial-page .box-controls .img-wrap{
    bottom: 40px;
  }
  .commercial-page .box-controls .img-wrap img{
    /*  -ms-transform: none;
   
    -o-transform: none;
   
    -moz-transform: none;

    -webkit-transform: none;

    transform: none;*/

  }
  .commercial-page .box-controls .box-15 {
    max-width: 61px;
  }
  .commercial-page .box-controls .box-8 {
    max-width: 51px;
  }
  .commercial-page .box-controls .box-20 {
    max-width: 82px;
  }
  .commercial-page .box-controls .box-30 {
    max-width: 112px;
  }
  .commercial-page .box-controls #box-8 {
    left: 0px;
  }
  .commercial-page .box-controls #box-15 {
    left: 12.5%;
  }
  .commercial-page .box-controls #box-20 {
    left: 27%;
  }
  .commercial-page .box-controls #box-30 {
    left: 44%;
  }
  .commercial-page .box-controls #box-40 {
      left: 70%;
  }
  .commercial-page .box-controls{
    height: 120px;
  }


}

@media screen and (max-device-width:320px) and (device-height:568px) and (orientation: portrait){
    /* iPhone 5 only */

    /* Residential Pages*/
    .residential-banner h1::before, .residential-banner h1::after{
      display: none;
    }
    .residential-banner h1{
      padding: 10px;
    }
    li.indent {
    padding-right: 20px;
}
}