/*
  Theme Name: Hollow
  Theme URI: http://bigtuna.com
  Description: BigTuna WordPress Theme
  Version: 1.0.0
  Author: BigTuna
  Author URI: http://bigtuna.com
  Tags: HTML5, CSS3
*/
@charset "utf-8";

.hollow-header-02 {
  display: block;
  position: relative;
  z-index: 9000;
  background: #FFF;
  color: #f6f6f6;
  width: 100%;
  border-bottom: 1px solid #FFF;
}
.hollow-header-02.sticky {
  position: fixed;
  top: 0;
}
.hollow-header-02 .logo img {
  max-width:100%;
  -webkit-transition: all .32s ease;
  -o-transition: all .32s ease;
  transition: all .32s ease;
}
.hollow-header-02.sticky .logo img {
  display: none;
}
.hollow-header-02 .va-middle {
  float: left;
}
.hollow-header-02 .phone {
  text-align: left;
  font-size: 0;
  display: inline-block;
  vertical-align: middle;
}
.hollow-header-02 .phone a {
  color: #000;
  font-size: 1rem;
  font-weight: 700;
  margin: .4rem 0;
  display: inline-block;
}
.hollow-header-02 .phone a .reach {
  font-weight: 700;
  padding-right: .5rem;
  text-decoration: underline;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
.hollow-header-02 .phone a:hover {
  color: #20409A;
}
.hollow-header-02 .social {
  display: inline-block;
  vertical-align: middle;
}
.hollow-header-02 .social a {
  color: #000;
  font-size: 1rem;
  display: inline-block;
  vertical-align: middle;
  padding: .3rem;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
.hollow-header-02 .social a:hover {
  color: #20409A;
}
.hollow-header-02 .logo img {
  padding: .5rem 0;
}
.hollow-header-02 #header-border {
  margin: 0;
  opacity: 0.5;
}
.hollow-header-02 .meta-wrap-inner {
  display: block;
  position: relative;
  text-align: right;
}
.hollow-header-02 .meta-wrap-inner .spacer {
  display: inline-block;
  margin: 0 .5rem;
  color: #000;
}
.hollow-header-02 .nav-wrap {
  display: block;
  position: relative;
  width: 100%;
  background: #20409A;
}
.hollow-header-02 nav {
  float: left;
}
.hollow-header-02 nav a {
  font-size: 1em;
  text-transform: none;
}
.hollow-header-02 .mobile-toolbar nav a.mobile-icon {
  font-size: 34px;
}
.hollow-header-02.sticky .meta-wrap-outer {
  display: none;
}
.hollow-header-02.sticky .meta-wrap-inner,
.hollow-header-02.sticky .meta-wrap-inner .phone,
.hollow-header-02.sticky .meta-wrap-inner .social {
  display: none;
}
.hollow-header-02 .social {
  text-align: right;
}
/* NAVIGATION */
.hollow-header-02 nav {
  display: inline-block;
  background: none;
  font-family: 'Lato';
  text-transform: uppercase;
  font-size: 2rem;
  position: relative;
  z-index: 5000;
}
.hollow-header-02 nav a {
  padding: .2em .6em;
  display: block;
  color: #FFF;
  font-size: 0.88rem;
  font-weight: 300;
  text-decoration: none;
}
.hollow-header-02 nav a:focus {
  color: #36352A;
}
.hollow-header-02 nav a i {
  padding-right: .4rem;
}
/* NAV LEVEL ONE */
.hollow-header-02 .menu-item.open>a, .hollow-header-02 .menu-item:hover>a, .hollow-header-02 .menu-item.active a, .hollow-header-02 .menu-item.active:hover>a {
  background: #132a6b;
  color: #fff;
}
/* NAV LEVEL TWO */
.hollow-header-02 .dropdown-menu {
  margin-top: 0px;
  border-radius: 0;
  border: none;
  padding: 0;
  width: 18em;
  display: none;
}
.hollow-header-02 nav .dropdown-menu .menu-item {
  float: none;
}
.hollow-header-02 nav .dropdown-menu a {
  background: #20409A;
  color: #fff;
}
.hollow-header-02 .dropdown-menu>li:hover>a, .hollow-header-02 .dropdown-menu>li.active>a, .hollow-header-02 .dropdown-menu>.active>a:hover, .hollow-header-02 .dropdown-menu>.active>a:focus {
  background: #132a6b;
  color: #fff;
}
.hollow-header-02 .dropdown .caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin: 0 0 3px 5px;
  vertical-align: middle;
  border-top: 4px solid;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}
/* NAV MOBILE */
.hollow-header-02 nav #mobile {
  position: relative;
  height: 48px;
  width: 30px;
  background: none;
  outline: none;
  border: none;
  float: right;
}
.hollow-header-02 .hamburger {
  display: block;
  position: absolute;
  width: 30px;
  height: 20px;
  background: #FFF;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  z-index: 2
}
.hollow-header-02 .hamburger:hover {
  cursor: pointer;
}
.hollow-header-02 .hamburger:before, .hamburger:after {
  content: '';
  position: absolute;
  top: 20%;
  left: 0;
  width: 100%;
  height: 20%;
  background: #20409A;
  -webkit-transition-property: -webkit-transform, top;
  -moz-transition-property: -moz-transform, top;
  -o-transition-property: -o-transform, top;
  -ms-transition-property: -ms-transform, top;
  transition-property: transform, top;
  -webkit-transition-duration: .2s;
  -moz-transition-duration: .2s;
  -o-transition-duration: .2s;
  -ms-transition-duration: .2s;
  transition-duration: .2s;
  -webkit-transition-timing-function: ease;
  -moz-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  -ms-transition-timing-function: ease;
  transition-timing-function: ease;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -o-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0)
}
.hollow-header-02 .hamburger:after {
  top: 60%
}
body.header-menu-open .hollow-header-02 #mobile, body.header-menu-open #mobile .hamburger {
  background: transparent;
}
body.header-menu-open .hollow-header-02 #mobile>.hamburger:before, body.header-menu-open #mobile>.hamburger:after {
  top: 40%;
  background: #FFF;
}
body.header-menu-open .hollow-header-02 #mobile>.hamburger:before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg)
}
body.header-menu-open .hollow-header-02 #mobile>.hamburger:after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg)
}
body.transparent header {
  position: absolute;
  width: 100%;
  background: rgba(25, 25, 25, 0.5);
}
/* MOBILE TOOLBAR */
.hollow-header-02 .mobile-toolbar {
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.hollow-header-02 .mobile-toolbar a {
  color: #fff;
  padding: .5rem 1rem;
}
.hollow-header-02 .mobile-toolbar a:hover,
.hollow-header-02 .mobile-toolbar a:focus {
  color: #597f2a;
}
.hollow-header-02 .mobile-toolbar>* {
  display: inline-block;
  vertical-align: middle;
}
@media screen and (min-width: 992px) {
  .hollow-header-02 .mobile-toolbar {
    display: none;
  }
  .hollow-header-02 .menu {
    float: right;
  }
  .hollow-header-02 nav .menu-item {
    float: left;
    position: relative;
    border-right: 1px solid #FFF;
  }
  .hollow-header-02 nav .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
  }
  .hollow-header-02 nav .menu-item-has-children:hover>ul.dropdown-menu {
    display: block;
  }
  .hollow-header-02 .mobile-toolbar{
    display: none;
  } 
}
@media only screen and (max-width: 991px) {
  .hollow-header-02 .logo img {
    margin: 60px auto 15px;
    max-width: 30%;
  }
  body.header-menu-open .hollow-header-02 nav .menu {
    pointer-events: auto;
    opacity: 1;
  }
  .hollow-header-02 nav {
    position: fixed;
    top: 0;
    left: 0;
    padding: 0 15px;
    width: 100%;
    background: #20409A;
  }
  .hollow-header-02 nav a {
    font-size: 1em;
    text-transform: uppercase;
    color: #FFF;
  }
  .hollow-header-02 .hamburger::before,
  .hollow-header-02 .hamburger::after {
    background: #20409A;
  }
  .hollow-header-02 nav .menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    -webkit-transition: opacity 0.25s;
    -o-transition: opacity 0.25s;
    transition: opacity 0.25s;
    z-index: -1;
    background: #20409A;
    box-shadow: 0 3px 3px -2px #000;
    pointer-events: none;
    opacity: 0;
  }
  .hollow-header-02 nav .menu-item-has-children.open .dropdown-menu {
    display: block;
  }
  .hollow-header-02 .dropdown-menu {
    position: relative;
    box-shadow: none;
    width: 100%;
  }
  .hollow-header-02 .dropdown-menu>li>a {
    padding-left: 2.5em;
  }
  .hollow-header-02 .mobile-toolbar>* {
    display: inline-block;
  }
  .hollow-header-02 .mobile-toolbar a {
    font-size: 34px;
    float: left;
  }
}
.hollow-hero-18 {
  display: block;
  position: relative;
  font-family: 'Lato';
  font-size: 2rem;
  text-align: left;
}
.hollow-hero-18_slider-wrap {
  display: block;
  position: relative;
  visibility: hidden;
  background: #FFF;
}
.hollow-hero-18_slider-wrap.slick-initialized {
  visibility: visible;
}
.hollow-hero-18_slider-wrap .slide {
  display: block;
  position: relative;
  overflow: hidden;
}
.hollow-hero-18_caption {
  display: inline-block;
  position: relative;
  margin: 10rem 0 12rem;
  max-width: 500px;
  text-align: left;
  padding: 1rem;
  background: rgba(32,64,154,0.7);
  min-height: 14rem;
  border-bottom: 1px solid #FFF;
}
.hollow-hero-18_caption ::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-top: 14rem solid rgba(32,64,154,0.34);
  border-right: 100px solid transparent;
  -webkit-background-clip: padding-box; /* for Safari */
  background-clip: padding-box; /* for IE9+, Firefox 4+, Opera, Chrome */
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
}
.hollow-hero-18_slider-wrap img {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  min-height: 100%;
  min-width: 100%;
  max-width: initial;
  -webkit-transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  -o-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
}
.hollow-hero-18_caption h1,
.hollow-hero-18_caption h2{
  font-size: 1.4em;
  font-weight: 400;
  line-height: 1;
  color: #FFF;
  margin-bottom: .75rem;
}
.hollow-hero-18_caption h3 {
  color: #FFF;
  line-height: 1.2;
  font-size: .8em;
  font-weight: 400;
  margin-bottom: 1rem;
}
.hollow-hero-18_caption p {
  font-size: .5em;
  font-weight: 300;
  line-height: 1.3;
  color: #FFF;
}
.hollow-hero-18_caption a {
  display: inline-block;
  position: relative;
  font-size: .6em;
  font-weight: 300;
}
.hollow-hero-18_box-wrap {
  display: block;
  position: relative;
  margin: -4rem auto 0;
  padding: 1.5rem 1.5rem 0;
  background: #FFF;
  text-align: left;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
.hollow-hero-18_box-wrap:hover {
  margin-top: -5rem;
  margin-bottom: 1rem;
}
.hollow-hero-18_box-wrap:hover ~ .hollow-hero-18_slider-wrap {
  opacity: 0.6;
}
.hollow-hero-18_box {
  display: block;
  position: relative;
  width: 100%;
  padding: 1rem;
  margin-bottom: 2rem;
  background: #8acae0;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
.hollow-hero-18_box:hover {
  background: #5ac2e6;
}
.hollow-hero-18_box h3 {
  font-size: 1em;
  font-weight: 300;
  line-height: 1;
  color: #206c92;
  margin-bottom: .75rem;
}
.hollow-hero-18_box p {
  font-size: .6em;
  font-weight: 300;
  line-height: 1.4;
  color: #FFF;
}
.hollow-hero-18_box span#outer {
  display: block;
  position: relative;
  text-align: right;
}
.hollow-hero-18_box span#inner {
  display: inline-block;
  position: relative;
  overflow: hidden;
}
.hollow-hero-18_box span#inner p {
  display: inline-block;
  line-height: 1;
  color: #FFF;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
.hollow-hero-18_box:hover span#inner p {
  -webkit-transform: translate(0);
  -ms-transform: translate(0);
  -o-transform: translate(0);
  transform: translate(0);
}
.hollow-hero-18_box span i {
  display: inline-block;
  text-align: right;
  color: #236c92;
  font-size: .8em;
  vertical-align: bottom;
  line-height: 1;
}
.hollow-hero-18_box a {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hollow-hero-18 .slick-prev {
  left: 2rem;
  z-index: 1;
  visibility: hidden;
}
.hollow-hero-18 .slick-next {
  right: 2rem;
  z-index: 1;
  visibility: hidden;
}
@media only screen and (max-width: 767px) {
  .hollow-hero-18_slider-wrap img {
    left: 0;
  }
  .hollow-hero-18 .slick-prev,
  .hollow-hero-18 .slick-next {
    top: unset;
    bottom: 16%;
  }
  .hollow-hero-18_caption ::before {
    display: none;
  }
}
.hollow-service-boxes-07 {
    font-family: 'Lato';
    font-size: 2rem;
    display: block;
    position: relative;
    padding: 0 0 1rem 0;
    overflow: hidden;
    background: #e2e2e2;
    padding-top: 2rem;
}
.hollow-service-boxes-07 .service-title {
  display: block;
  position: relative;
  width: 100%;
  line-height: 1;
  color: #FFF;
  font-size: 1em;
  padding: .6rem;
  background: #20409A;
  text-align: center;
  margin-bottom: 2rem;
}
.hollow-service-boxes-07 .service-box-wrap img{
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    max-width: initial;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}
.hollow-service-boxes-07 .hollow-service-box-07 {
    text-align: center;
    padding: 2rem;
    margin-bottom: 2rem;
    overflow:hidden;
    position: relative;
    background: #20409A;
    border-bottom: 3px solid #ed1c24;
}
.hollow-service-boxes-07 .hollow-service-box-07:hover:before {
    background: rgba(162,179,228,1);
}
.hollow-service-boxes-07 .hollow-service-box-07 img {
    position: absolute;
    bottom:0;
    right:0;
    width:100%;
    height:100%;
}
.hollow-service-boxes-07 .height-wrap {
  display: block;
  position: relative;
  margin-bottom: .5rem;
}
.hollow-service-box-07 h3 {
    font-size: .8em;
    font-weight: 400;
    line-height: 1.2;
    color: #FFF;
    position: relative;
    z-index:110;
    margin-bottom: .5rem;
}
.hollow-service-box-07 p {
    font-size: .5em;
    font-weight: 300;
    color: #FFF;
    line-height: 1.3;
    position: relative;
    z-index:110;    
}
.hollow-service-box-07 a {
    font-size: .5em;
    font-weight: 300;
    padding: .3em 1em;
    background: transparent;
    border: 1px solid #FFF;
    color: #FFF;
    text-transform: uppercase;
    -webkit-transition: .3s ease;
    -o-transition: .3s ease;
    transition: .3s ease;
    position: relative;
    z-index:110;    
}
.hollow-service-box-07 a:hover {
    background: #FFF;
    color: #20409A;
}
@media only screen and (max-width: 1199px) {
    .hollow-service-boxes-07 .hollow-service-box-07 {
        padding: 2rem;
    }
}
@media only screen and (max-width: 767px) {
    .hollow-service-boxes-07 .service-box-wrap {
        padding: 1em 1em 0 1em;
    }
}
.hollow-content-02 {
  font-family: 'Lato';
  font-size: 2rem;
  text-align: center;
  padding: 0 0 4rem 0;
  display: block;
  position: relative;
  overflow: hidden;
}
.hollow-content-02 .text-wrap {
  text-align: left;
  font-size: 2rem;
}
.hollow-content-02 h1,
.hollow-content-02 h2{
    display: block;
    position: relative;
    width: 100%;
    line-height: 1;
    color: #FFF;
    padding: .6rem;
    background: #20409A;
    text-align: left;
    margin-bottom: 2rem;
}
.hollow-content-02 p:first-of-type {
  margin-top: -.5rem;
}
.hollow-content-02 p {
  font-size: .6em;
  font-weight: 300;
  color: #040404;
  line-height: 1.5;
  margin-bottom: 1rem;
}
.hollow-content-02 a {
  font-size: .6em;
  color: #FFF;
  padding: .6em 1.2em;
  font-weight: 300;
  background: #1f419b;
  border: 1px solid #1f419b;
  display: inline-block;
  -webkit-transition: .3s ease;
  -o-transition: .3s ease;
  transition: .3s ease;
}
.hollow-content-02 .text-wrap a:hover {
  background: transparent;
  color: #1f419b;
}
.hollow-content-02 .img-wrap {
  display: block;
  position: relative;
  width: 100%;
  height: 16rem;
  overflow: hidden;
  border-bottom: 3px solid #ed1c24;
  margin-bottom:1rem;
}
.hollow-content-02 .img-wrap img {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  min-height: 100%;
  min-width: 100%;
  max-width: initial;
  -webkit-transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
}
@media only screen and (max-width: 767px) {
  .hollow-content-02 .content-wrap {
      border: none;
      padding: 0 .6em;
  }
  .hollow-content-02 .text-wrap {
      margin-bottom: 1em;
  }
  .hollow-content-02 .img-wrap {
      width: 100%;
  }
  .hollow-content-02 .img-wrap img {
    width: 100%;
  }
}
.hollow-content-03 {
  position: relative;
  display: block;
  font-family: 'Lato';
  font-size: 2rem;
}
.hollow-content-03 .text-wrap {
  position: relative;
  display: block;
  text-align: left;
  padding: 1rem 3rem;
}
.hollow-content-03 h1,
.hollow-content-03 h2 {
  color: #000;
  font-size: 1.5em;
  font-weight: 400;
  margin: 0;
  line-height: 1;
  margin-bottom: 1rem;
}
.hollow-content-03 p {
  font-size: .6em;
  font-weight: 300;
  color: #040404;
  line-height: 1.5em;
  margin: 0 0 1em 0;
}
.hollow-content-03 a {
  font-size: .6em;
  color: #FFF;
  padding: .6em 1.2em;
  font-weight: 300;
  background: #20409A;
  border: 1px solid #20409A;
  display: inline-block;
  -webkit-transition: .3s ease;
  -o-transition: .3s ease;
  transition: .3s ease;
}
.hollow-content-03 a:hover {
  background: transparent;
  color: #20409A;
}
.hollow-content-03 .img-wrap {
  overflow: hidden;
  position: relative;
  height: 30rem;
  width: 100%;
}
.hollow-content-03 .img-wrap img {
  position: absolute;
  display: block;
  min-width: 100%;
  min-height: 100%;
  max-width: initial;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
}
@media only screen and (max-width: 991px) {
  .hollow-content-03 h1 {
    font-size: 1em;
  }
}
.hollow-action-01 {
  display: block;
  position: relative;
  font-family: 'Lato';
  font-size: 2rem;
  background: #e2e2e2;
  padding: 3rem 0;
}
.hollow-action-01 .content-wrap {
  display: block;
  position: relative;
  padding: 0 5rem;
  text-align: center;
}
.hollow-action-01 h3 {
  color: #6b7592;
  font-size: .75em;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.5;
  margin-top: 0;
  margin-bottom: 1rem;
}
.hollow-action-01 img {
  display: block;
  position: relative;
  margin: 2rem auto;
  max-width: 40%;
}
.hollow-action-01 p {
  font-size: .6em;
  font-weight: 300;
  line-height: 1.5em;
  margin-bottom: 1em;
  color: #6b7592;
}
.hollow-action-01 a {
  font-size: .6em;
  font-weight: 300;
  padding: .5em 1.5em;
  color: #FFF;
  background: #1f419b;
  display: inline-block;
  border: 1px solid #FFF;
  text-transform: uppercase;
  -webkit-transition: .3s ease;
  -o-transition: .3s ease;
  transition: .3s ease;
}
.hollow-action-01 a:hover {
  background: transparent;
  color: #1f419b;
}
@media only screen and (min-width: 768px) {
  .hollow-action-01 {
    text-align: center;
  }
  .hollow-action-01 p::before {
    width: 24em;
  } 
}
@media only screen and (max-width: 767px) {
  .hollow-action-01 {
    padding: 1.75em 1em;
  }
  .hollow-action-01 .content-wrap {
    padding: 0;
  }
  .hollow-action-01 h1 {
    font-size: 2.3rem;
  }
}
.hollow-contact-03 {
    display: block;
    position: relative;
    font-family: 'Lato';
    font-size: 2rem;
    overflow: hidden;
    padding: 4rem 0;
    background: url(img/contact-bg.jpg) center center no-repeat;
    background-size: cover;
    background-attachment: fixed;
}
/* Background Overlay */
.hollow-contact-03:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0,0,0,0.4);
}
.hollow-contact-03 .text-wrap {
    margin-bottom: .5em;
    max-width: 12em;
}
.hollow-contact-03 h3 {
    line-height: 1em;
    font-size: 1.5em;
    text-align: center;
    margin-bottom: 4rem;
    color: #FFF;
}
.hollow-contact-03 .content-wrap {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #FFF;
}
.hollow-contact-03 .content-wrap h2 {
    color: #FFF;
    font-size: .8em;
    padding-bottom: 30px;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.hollow-contact-03 .content-wrap p {
    font-size: .6em;
    font-weight: 300;
    line-height: 1.4;
    color: #FFF;
}
.hollow-contact-03 ul li {
    font-size: .5em;
    font-weight: 400;
    line-height: 1.5em;
}
.hollow-contact-03 .contact-03-meta {
    position: relative;
}
.hollow-contact-03 .contact-03-meta h3 {
    color: #fff;
    padding-top: 15px;
    font-size: 15px;
    text-transform: uppercase;
}
.hollow-contact-03 .contact-03-meta ul {
    display: block;
    position: relative;
    font-size: 2rem;
}
.hollow-contact-03 .contact-03-meta li {
    margin: 20px 0;
}
.hollow-contact-03 .contact-03-meta li>span {
    display: block;
}
.hollow-contact-03 .contact-03-meta li>span:first-of-type {
    float: left;
    margin-right: 15px;
}
.hollow-contact-03 .contact-03-meta li>span:last-of-type {
    overflow: hidden;
    color: #fff;
}
.hollow-contact-03 .contact-03-meta li>span:last-of-type a {
    font-size: 24px;
    color: #fff;
}
.hollow-contact-03 .contact-03-meta li .li-inner-wrap a {
    line-height: 2;
    display: inline-block;
}
.hollow-contact-03 .contact-03-meta li>span:last-of-type>*:first-child {
    margin-top: .5rem;
    font-size: 1.4em;
    font-weight: 300;
    line-height: 1.4;
}
/* BG + color = no rounded corners */
.hollow-contact-03 .contact-03-meta .fa-square {
    color: #ED1C24;
    background: #ED1C24;
}
.hollow-contact-03 .contact-03-meta .ghost-imgs {
    display: block;
}
.hollow-contact-03 .form-wrap {
    padding: 0;
}
.hollow-contact-03 .form-wrap .email {
    float: left;
    width: 50%;
    padding-right: 15px;
    z-index: 5;
}
.hollow-contact-03 .form-wrap .phone {
    float: left;
    width: 50%;
    z-index: 10;
}
.hollow-contact-03 .form-wrap .address {
  float: left;
  width: 50%;
  padding-right: 15px;
  z-index: 5;
}

.hollow-contact-03 .form-wrap .state {
  float: left;
  width: 50%;
  z-index: 10;
    padding-right: 15px;
}

.hollow-contact-03 .form-wrap .zip {
  float: left;
  width: 50%;
  z-index: 5;
}

.hollow-contact-03 .form-wrap .city {
  float: left;
  width: 50%;
  z-index: 10;
}
.hollow-contact-03 .form-wrap .wpcf7-form-control-wrap {
    font-size: 2rem;
}
.hollow-contact-03 .form-wrap .wpcf7-form-control-wrap input,
.hollow-contact-03 .form-wrap .wpcf7-form-control-wrap textarea {
    font-size: .6em;
    font-family: 'Lato';
    font-weight: 300;
    color: #FFF;
}
.hollow-contact-03 .form-wrap input:not([type="submit"]), .hollow-contact-03 .form-wrap textarea {
    width: 100%;
    border: none;
    background: rgba(31,65,155,0.85);
    padding: .6em;
    margin-bottom: 1rem;
    color: #FFF;
    border-right: 2px solid #FFF;
    border-left: 2px solid #FFF;
}
.hollow-contact-03 .form-wrap .wpcf7-form-control-wrap textarea {
    z-index: 0;
    height: 14rem;
    max-height: 250px;
}
.hollow-contact-03 .form-wrap .wpcf7-form-control.wpcf7-submit {
    background: #1f419b;
    border: none;
    padding: .5em 1.75em;
    font-family: 'Lato';
    color: #FFF;
    cursor: pointer;
    font-weight: 300;
    font-size: .6em;
    -webkit-transition: .3s ease;
    -o-transition: .3s ease;
    transition: .3s ease;
}
.hollow-contact-03 .form-wrap .wpcf7-form-control.wpcf7-submit:hover {
    background: #132a6b;
}
.hollow-contact-03 ::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #fff;
}
.hollow-contact-03 ::-moz-placeholder {
    /* Firefox 19+ */
    color: #fff;
}
.hollow-contact-03 :-ms-input-placeholder {
    /* IE 10+ */
    color: #fff;
}
.hollow-contact-03 :-moz-placeholder {
    /* Firefox 18- */
    color: #fff;
}
@media only screen and (max-width: 767px) {
    .hollow-contact-03 h1 {
        margin-bottom: 1em;
    }
    .hollow-contact-03 p.mobile-center {
        text-align: center;
    }
}
@media only screen and (max-width: 430px) {
    .hollow-contact-03 ul li {
        font-size: .7em;
    }
}

.footer-01 {
  padding: 0;
  font-family: 'Lato';
  background: #3c4152;
  font-weight: 300;
  text-align: center;
}
.footer-01 .text-wrap {
  margin: 4rem auto 0;
  text-align: center;
  font-size: 2rem;
}
.footer-01 .text-wrap h4 {
  font-size: 2rem;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 1.5rem;
}
.footer-01 .text-wrap h3 {
  font-size: .8em;
  font-weight: 400;
  padding-bottom: 1rem;
  line-height: 1;
}
.footer-01 .text-wrap h3:last-of-type {
/*   margin-bottom: 2rem; */
}
.footer-01 .text-wrap p {
  font-size: .5em;
  font-weight: 300;
  color: #FFF;
  line-height: 1.3;
  max-width: 350px;
  display: inline-block;
  margin: 0 auto 1rem;
}
.footer-01 .text-wrap h3:first-of-type {
  margin-bottom: .5rem;
}
.footer-01 .menu-item {
  padding: 0 .25rem;
}
.footer-01 .cred-wrap {
  border-top: 1px solid #FFF;
  width:auto;
  padding: .5rem;
  margin: 3rem auto 3rem auto;
}
.footer-01 .design {
  display: inline-block;
}
.footer-01 .copyright {
  display: inline-block;
}
.footer-01 .social {
  display: inline-block;
}
.footer-01 p {
  font-size: 1em;
}
.footer-01 .design span a {
    padding: 0 1px;
}
.footer-01 .design span a strong {
  font-weight: 600;
}
.footer-01 a, .footer-01 a:hover, .footer-01 a:focus {
  color: #ED1C24;
}
.footer-01 .social .fa-stack-2x {
  color: #ED1C24;
}
.footer-01 .social .fa-stack-1x {
    color: #FFF;
}
.footer-01 .social a:hover .fa-stack-2x {
  color: #FFF;
}
.footer-01 .social a:hover .fa-stack-1x {
  color: #ED1C24;
}
.footer-01 nav a {
  padding: 5px;
  display: inline-block;
}
.footer-01 a, .footer-01 a:hover, .footer-01 a:focus {
  color: #f6f6f6;
}
.footer-nav-wrap a {
    text-decoration:underline;
    padding:5px;
}
@media (min-width: 768px) {
  .footer-01 {
    text-align: center;
  }
  .footer-01 nav a {
    display: block;
  }
  .footer-01 .menu-item {
    display: inline-block;
  }
  .footer-01 .col-sm-6 {
      text-align: right;
    }
  .footer-01 .design {
    float: left;
    text-align: left;
    margin: .5rem 0;
  }
  .footer-01 .social {
    float: right;
    text-align: right;
  }
}
@media only screen and (max-width: 767px) {
   .footer-01 .design {
    margin: 1rem 0;
  }
    .footer-01 .copyright {
    margin-bottom: 1rem
  }
}


/*INTERIOR*/
.interior-image-header {
  padding: 8rem 0;
  background: url(https://specialwastedisposal.com/wp-content/uploads/Downtown-Chicago-scaled.jpg) center center no-repeat;
  background-size: cover;
}


.interior-header-02 {
  display: block;
  position: relative;
  font-size: 2rem;
  font-family: 'Lato';
  text-align: left;
  margin: 2rem 0;
  background: #132a6b;
  border-left: 1rem solid #20409A;
}
.interior-header-02 h1 {
  color: #fff;
  font-size: 1.5em;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1;
  padding: .5rem 1rem;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .interior-header-02 h1 {
    font-size: 1.1em;
  }
}
.interior-bar-01 {
  display: block;
  position: relative;
  font-family: 'Lato';
  font-size: 2rem;
}
.interior-bar-01 .bar-header {
  display: block;
  position: relative;
  width: 100%;
  background: #296631;
  padding: .6rem 1rem;
  margin-bottom: 1rem;
}
.interior-bar-01 h2 {
  display: inline-block;
  color: #000;
  text-transform: uppercase;
  font-size: .8em;
  max-width: 90%;
}
.interior-bar-01 h3 {
  color: #000;
  border-bottom: 2px solid rgba(107, 107, 107, 0.35);
  text-transform: uppercase;
  font-size: .7em;
}

.interior-bar-01 a {
    color: blue;
    text-decoration: none;
    outline: none;
    text-decoration: underline;
}
.interior-page h4 {
  font-size: .6em;
  font-weight: 400;
  margin-bottom: .5rem;
  line-height: 1.2;
  background: #20409A;
  padding: .3rem .7rem;
  color: #fff;
  text-transform: uppercase;
}
.interior-bar-01 p {
  color: #040404;
  margin-bottom:1rem;
}
.interior-bar-01 ul {
  margin-bottom: 2rem;
  display: block;
}
.interior-bar-01 ul.reg li {
        display: list-item;
    list-style: disc;
    margin-left:2rem;
}
.interior-bar-01 ul.reg { margin:0; }
.interior-bar-01 ul.reg li p { margin:0; }
.interior-bar-01 ul li i {
  color: #ED1C24;
  vertical-align: top;
  margin-top: .3rem;
}
.interior-bar-01 ol {
  margin-bottom: 1rem;
  display: block;
  list-style-type: decimal;
  margin-left: 1rem;
  color: #000;
  font-size: .6em;
}
.interior-bar-01 ol li {
  padding-left: .5rem;
  padding-bottom: 1rem;
  font-size: 1em;
}
.interior-bar-01 ol li ul { margin-bottom:0; }
.interior-bar-01 .center img {
  margin-right: auto;
  margin-left: auto;
}
.interior-bar-01 .img-wrap {
  display: block;
  position: relative;
  margin-bottom: 1rem;
  overflow: hidden;
}
.interior-bar-01 .img-wrap::before {
  content: "";
  display: block;
  position: relative;
  margin: 15rem 0;
}
.interior-bar-01 .img-wrap img {
  display: block;
  position: absolute;
  min-height: 100%;
  width: 100%;
  max-width: initial;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
.interior-bar-01 .mixed-page img {
    padding-bottom: 1rem;
    margin-bottom:0.4rem;
}
.interior-bar-01 .list-table{
  font-size:1rem;
  padding:1rem;
}
.interior-bar-01 .list-table th{
  padding:1rem;
}
.interior-bar-01 .list-table td{
  font-size:1rem;
  font-style:normal;
  padding:1rem;
}

.interior-bar-01 .list-view{
  margin-left:1.5rem;
  padding:0.5rem;
}
.interior-bar-01 .list{
  margin-left:2rem;
}

.interior-bar-01 .interior-image-header {
  padding: 1rem 0;
  background: url(https://specialwastedisposal.com/wp-content/uploads/Downtown-Chicago-scaled.jpg) center center no-repeat;
  background-size: cover;
}
body.page-id-1067 .interior-bar-01 .interior-image-header {
  padding: 1rem 0;
  background: url(https://specialwastedisposal.com/wp-content/uploads/Indianapolis-Specialwastedisposal-scaled.jpg) center center no-repeat;
  background-size: cover;
}
body.page-id-1100 .interior-bar-01 .interior-image-header {
  background: url(https://specialwastedisposal.com/wp-content/uploads/Columbus-Ohio-Hazardous-Waste-Disposal-scaled.jpg) center center no-repeat;
  background-size: cover;   
}
body.page-id-1136 .interior-bar-01 .interior-image-header {
  background: url(https://specialwastedisposal.com/wp-content/uploads/Milwaukee-Wisconsin-Hazardous-Waste-Disposal-scaled.jpg) center center no-repeat;
  background-size: cover;   
}
body.page-id-1155 .interior-bar-01 .interior-image-header {
  background: url(https://specialwastedisposal.com/wp-content/uploads/Louisville-Kentucky-scaled.jpg) center center no-repeat;
  background-size: cover;   
}
body.page-id-1167 .interior-bar-01 .interior-image-header {
  background: url(https://specialwastedisposal.com/wp-content/uploads/Nashville-Tennessee-2020-scaled.jpg) bottom center no-repeat;
  background-size: cover;   
}
body.page-id-1191 .interior-bar-01 .interior-image-header {
  background: url(https://specialwastedisposal.com/wp-content/uploads/Michigan-Specialwastedisposal-top-photo-scaled-e1605026434143.jpg) bottom center no-repeat;
  background-size: cover;   
}
body.page-id-1203 .interior-bar-01 .interior-image-header {
  background: url(https://specialwastedisposal.com/wp-content/uploads/Atlanta-Georgia-Specialwastedisposal-scaled.jpg) bottom center no-repeat;
  background-size: cover;   
}
body.page-id-1279 .interior-bar-01 .interior-image-header {
  background: url(https://specialwastedisposal.com/wp-content/uploads/Florida-Bridge-scaled-e1607016625342.jpg) center center no-repeat;
  background-size: cover;
}
body.page-id-1308 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/Hazardous-Waste-Disposal-in-Mobile-Alabama-scaled-e1608574113579.jpg) bottom center no-repeat;
    background-size: cover;
}
body.page-id-1322 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/mississippi-4064124_1920-scaled-e1610466699390.jpg) bottom center no-repeat;
    background-size: cover;
}
body.page-id-1332 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/New-Orleans-Bridge-scaled.jpg) center center no-repeat;
    background-size: cover;
}
body.page-id-1345 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/Arkansas-Top-Photo-scaled.jpg) center center no-repeat;
    background-size: cover;
}
body.page-id-1357 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/Kansas-City-Hazardous-Waste-Disposal-scaled.jpg) center center no-repeat;
    background-size: cover;
}
body.page-id-1371 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/Iowa-Hazardous-Waste-Disposal-Page-Top-Photo-scaled.jpeg) center center no-repeat;
    background-size:cover;
}
body.page-id-1385 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/Hazardous-Waste-Disposal-in-Minnesota-Page-Top-Photo-scaled.jpeg) center center no-repeat;
    background-size:cover;
}
body.page-id-1395 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/Austin-Skyline-Texas-Page-scaled.jpeg) center center no-repeat;
    background-size:cover;
}
body.page-id-1411 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/Charleston-South-Carolina-Top-Photo-scaled.jpeg) center center no-repeat;
    background-size:cover;
}
body.page-id-1425 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/North-Carolina-Smokey-Mountains-Top-Photo-scaled.jpeg) bottom center no-repeat;
    background-size:cover;
}
body.page-id-1454 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/Virginia-Hazardous-Waste-Disposal-Page-Top-Photo-scaled.jpeg) bottom center no-repeat;
    background-size:cover;
}
body.page-id-1466 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/Hazardous-waste-disposal-in-Wheeling-West-Virginia-scaled.jpeg) bottom center no-repeat;
    background-size:cover;
}
body.page-id-1475 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/Baltimore-Maryland-Top-Frame-Photo-scaled.jpeg) bottom center no-repeat;
    background-size:cover;
}
body.page-id-1486 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/Delaware-Top-Photo-scaled.jpeg) center center no-repeat;
    background-size:cover;
}
body.page-id-1496 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/Pittsburgh-Pennsylvania-Top-Page-Photo-scaled.jpeg) center center no-repeat;
    background-size:cover;
}
body.page-id-1509 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/New-York-City-Top-Photo-scaled.jpeg) center center no-repeat;
    background-size:cover;
}
body.page-id-1518 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/Newark-New-Jersey-Top-Photo-scaled.jpeg) center center no-repeat;
    background-size:cover;
}
body.page-id-1530 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/Connecticut-Top-Photo-scaled.jpeg) center center no-repeat;
    background-size:cover;
}
body.page-id-1541 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/Boston-Massachusetts-Hazardous-Waste-Disposal-Page-Top-Photo-scaled.jpeg) center center no-repeat;
    background-size:cover;
}
body.page-id-1550 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/oklahoma-top-img-scaled.jpg) center center no-repeat;
    background-size:cover;
}
body.page-id-1555 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/kansas-top-img-scaled.jpg) center center no-repeat;
    background-size:cover;
}
body.page-id-1566 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/valentine-g17f49dbe7_1920-scaled.jpg) top -100px center no-repeat;
    background-size:cover;
}
body.page-id-1575 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/San-Diego-California-scaled.jpg) center center no-repeat;
    background-size:cover;
}
body.page-id-1600 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/Arizona-Waste-Disposal-Page-Top-Photo-scaled.jpg) bottom center no-repeat;
    background-size:cover;
}
body.page-id-1612 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/New-Mexico-Hazardous-Waste-Disposal-Page-Top-Photo-scaled.jpg) center center no-repeat;
    background-size:cover;
}
body.page-id-1622 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/Colorado-Hazardous-Waste-Dipsosal-Top-Frame-Photo-scaled.jpg) center center no-repeat;
    background-size:cover;
}
body.page-id-1630 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/Providence-Rhode-Island-Top-Frame-Photo-scaled.jpg) center center no-repeat;
    background-size:cover;
}
body.page-id-1638 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/Vermont-Top-Photo-scaled.jpg) center center no-repeat;
    background-size:cover;
}
body.page-id-1643 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/New-Hampshire-Top-Photo-scaled.jpg) bottom center no-repeat;
    background-size:cover;
}
body.page-id-1656 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/Nevada-Top-Photo-for-Hazardous-Waste-Disposal-Page-scaled.jpg) bottom center no-repeat;
    background-size:cover;
}
body.page-id-1664 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/Wyoming-Hazardous-Waste-Disposal-Page-Top-Photo-scaled.jpg) bottom center no-repeat;
    background-size:cover;
}
body.page-id-1676 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/Maine-Hazardous-Waste-Disposal-Top-Photo-scaled.jpg) center center no-repeat;
    background-size:cover;
}
body.page-id-1681 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/Oregon-Waste-Disposal-Top-Photo-scaled.jpg) center center no-repeat;
    background-size:cover;
}
body.page-id-1695 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/Seattle-Washington-Hazardous-Waste-Page-Top-Photo-scaled.jpg) center center no-repeat;
    background-size:cover;
}
body.page-id-1705 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/Idaho-Hazardous-Waste-Disposal-Page-Top-Photo-scaled.jpg) center center no-repeat;
    background-size:cover;
}
body.page-id-1717 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/Montana-Hazardous-Waste-Disposal-Top-Photo-scaled.jpg) bottom center no-repeat;
    background-size:cover;
}
body.page-id-1729 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/Utah-Hazardous-Waste-Disposal-Page-Top-Photo--scaled.jpg) bottom center no-repeat;
    background-size:cover;
}
body.page-id-1788 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/South-Dakota-Hazardous-Waste-Disposal-Page-Top-Photo-scaled.jpg) center center no-repeat;
    background-size:cover;
}
body.page-id-1798 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/North-Dakota-Hazardous-Waste-Disposal-Page-Top-Photo-scaled.jpg) bottom -10rem center no-repeat;
    background-size:cover;
}

/* CITIES */
body.page-id-1947 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/Chicago-Top-Photo-Specialwastedisposal-scaled.jpg) bottom center no-repeat;
    background-size:cover;
}
body.page-id-1957 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/Milwaukee-Top-Photo-scaled.jpg) bottom center no-repeat;
    background-size:cover;
}
body.page-id-1973 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/St-Louis-Hazardous-Waste-Disposal-Top-Page-Photo.jpg) center center no-repeat;
    background-size:cover;
}
body.page-id-1980 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/Indianapolis-Skyline-Photo-Specialwastedisposal-scaled.jpg) center center no-repeat;
    background-size:cover;
}
body.page-id-2010 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/Atlanta-Specialwastedisposal-scaled.jpg) bottom center no-repeat;
    background-size:cover;
}
body.page-id-2021 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/Jacksonville-Hazardous-Waste-Disposal-Top-Photo-scaled.jpg) bottom center no-repeat;
    background-size:cover;
}
body.page-id-2027 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/Miami-Hazardous-Waste-Disposal-Top-Photo-scaled.jpg) top center no-repeat;
    background-size:cover;
}
body.page-id-2035 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/Orlando-Florida-Hazardous-Waste-Disposal-Top-Photo-scaled.jpg) bottom center no-repeat;
    background-size:cover;
}
body.page-id-2055 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/Detroit-Michigan-Hazardous-Waste-Disposal-Top-Page-Photo-scaled.jpg) center center no-repeat;
    background-size:cover;
}
body.page-id-2065 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/Nashville-Tennessee-Hazardous-Waste-Disposal-Page-Top-Photo-scaled.jpg) bottom center no-repeat;
    background-size:cover;
}
body.page-id-2070 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/Memphis-Hazardous-Waste-Disposal--scaled.jpg) center center no-repeat;
    background-size:cover;
}
body.page-id-2076 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/Tampa-Hazardous-Waste-Disposal-Top-Photo-scaled.jpg) center center no-repeat;
    background-size:cover;
}
body.page-id-2134 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/Birmingham-Alabama-Hazardous-Waste-Disposal-Page-Top-Photo-scaled.jpg) center center no-repeat;
    background-size:cover;
}
body.page-id-2144 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/Mobile-Alabama-Hazardous-Waste-Disposal-Page-Top-Photo-scaled.jpg) center center no-repeat;
    background-size:cover;
}
body.page-id-2155 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/New-Orleans-Louisiana-Hazardous-Waste-Disposal-Top-Photo-scaled.jpg) center center no-repeat;
    background-size:cover;
}
body.page-id-2160 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/Macon-Georgia-Hazardous-Waste-Disposal-Top-Page-Photo-scaled.jpg) center bottom -240px no-repeat;
    background-size:cover;
}
body.page-id-2228 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/Fort-Myers-Hazardous-Waste-Disposal-Top-Page-Photo-scaled.jpg) center bottom no-repeat;
    background-size:cover;
}
body.page-id-2238 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/Tallahassee-Hazardous-Waste-Disposal-Top-Photo-scaled.jpg) center center no-repeat;
    background-size:cover;
}
body.page-id-2244 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/Louisville-Hazardous-Waste-Disposal-Page-Top-Photo-scaled.jpg) center bottom no-repeat;
    background-size:cover;
}
body.page-id-2254 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/Cleveland-Ohio-Hazardous-Waste-Disposal-Page-Top-Photo-scaled.jpg) center center no-repeat;
    background-size:cover;
}
body.page-id-2269 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/Cincinnati_Hazardous_Waste_Disposal_Page_Top_Photo.jpg) center center no-repeat;
    background-size:cover;
}
body.page-id-2275 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/Columbus_Ohio_Hazardous_Waste_Disposal_Top_Page_Photo.jpg) center center no-repeat;
    background-size:cover;
}
body.page-id-2283 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/Savannah_Georgia_Hazardous_Waste_Disposal_Top_Photo-scaled.jpg) center center no-repeat;
    background-size:cover;
}
body.page-id-2290 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/Madison_Wisconsin_Hazardous_Waste_Disposal_Page_Top_Photo.jpg) center center no-repeat;
    background-size:cover;
}
body.page-id-2309 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/Philadelphia_Hazardous_Waste_Disposal_Top_Photo.jpg) center center no-repeat;
    background-size:cover;
}
body.page-id-2316 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/Pittsburgh_Hazardous_Waste_Disposal_Top_Photo.jpg) center center no-repeat;
    background-size:cover;
}
body.page-id-2325 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/Newark_Hazardous_Waste_Disposal_Top_Photo-scaled.jpg) center center no-repeat;
    background-size:cover;
}
body.page-id-2343 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/Knoxville_Tennessee_Hazardous_Waste_Disposal_Top_Page_Photo-scaled.jpg) center center no-repeat;
    background-size:cover;
}
body.page-id-2353 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/Huntsville_Alabama_Hazardous_Waste_Disposal_Top_Page_Photo-scaled.jpg) center center no-repeat;
    background-size:cover;
}
body.page-id-2361 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/Montgomery_Alabama_Hazardous_Waste_Dipsosal_Top_Page_Photo_1-scaled.jpg) bottom center no-repeat;
    background-size:cover;
}
body.page-id-2376 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/New_York_City_Hazardous_Waste_Disposal_Top_Page_Photo-scaled.jpg) bottom center no-repeat;
    background-size:cover;
}
body.page-id-2381 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/Baton_Rouge_Hazardous_Waste_Disposal_Top_Page_Photo-scaled.jpg) center center no-repeat;
    background-size:cover;
}

body.page-id-2415 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/Buffalo_Niagara_Falls_Hazardous_Waste_Disposal_Page_Top_Photo-scaled.jpg) bottom -325px center no-repeat;
    background-size:cover;
}
body.page-id-2426 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/Baltimore_Hazardous_Waste_Disposal_Page_Top_Photo-scaled.jpg) center center no-repeat;
    background-size:cover;
}
body.page-id-2435 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/Hartford_Hazardous_Waste_Dipsosal_Page_Top_Photo.jpg) top -100px center no-repeat;
    background-size:cover;
}
body.page-id-2453 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/Grand-Rapids-Michigan-Hazardous-Waste-Disposal-Top-Photo.png) top -205px center no-repeat;
    background-size:cover;
}
body.page-id-2459 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/Lansing-Michigan-Hazardous-Waste-Disposal-Top-Page-Photo.png) top -205px center no-repeat;
    background-size:cover;
}
body.page-id-2466 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/Toledo-Ohio-Hazardous-Waste-Disposal-Top-Photo.png) top -205px center no-repeat;
    background-size:cover;
}
body.page-id-2628 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/Lexington_Kentucky_Hazardous_Waste_Dipsosal_Page_Top_Photo.jpg) center center no-repeat;
    background-size:cover;
}
body.page-id-2636 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/Jackson_Mississippi_Hazardous_Waste_Disposal.jpg) center center no-repeat;
    background-size:cover;
}
body.page-id-2643 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/Springfield_Illinois_Hazardous_Waste_Disposal_Page_Top_Photo.jpg) bottom -45px center no-repeat;
    background-size:cover;
}
body.page-id-2667 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/Champaign_Illinois_Hazardous_Waste_Disposal_Top_Page_Photo_.jpg) bottom -45px center no-repeat;
    background-size:cover;
}
body.page-id-2674 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/Peoria_Illinois_Hazardous_Waste_Disposal_Mid_Page_Photo-1.jpg) center center no-repeat;
    background-size:cover;
}
body.page-id-2686 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/Rockford_Illinois_Hazardous_Waste_Disposal_Top_Page_Photo.jpg) center center no-repeat;
    background-size:cover;
}
body.page-id-2713 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/Chattanooga_Tennessee_Hazardous_Waste_Disposal_Page_Top_Photo.jpg) center center no-repeat;
    background-size:cover;
}
body.page-id-2720 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/Greenville_South_Carolina_Hazardous_Waste_Disposal_Page_Top_Photo.jpg) center center no-repeat;
    background-size:cover;
}
body.page-id-2726 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/Charleston_South_Caroline_Hazardous_Waste_Disposal_Services_Offered_Page_Top_Photo.jpg) center center no-repeat;
    background-size:cover;
}
body.page-id-2754 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/Screenshot_2024-05-27_at_11714_PM.jpg) center center no-repeat;
    background-size:cover;
}
body.page-id-2763 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/Dayton_Ohio_Hazardous_Waste_Disposal_Page_Top_Photo.jpg) bottom center no-repeat;
    background-size:cover;
}
body.page-id-2768 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/Charlotte_North_Carolina_Hazardous_Waste_Disposal_Page_Top_Photo.jpg) center center no-repeat;
    background-size:cover;
}
body.page-id-2789 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/Boston_Hazarous_Waste_Disposal_Top_Page_Photo.jpg) center center no-repeat;
    background-size:cover;
}
body.page-id-2802 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/Des_Moines_Iowa_Hazardous_Waste_Disposal_Page_Top_Photo.jpg) center center no-repeat;
    background-size:cover;
}
body.page-id-2811 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/Washington_DC_Hazardous_Waste_Disposal_Top_Page_Photo.jpg) center center no-repeat;
    background-size:cover;
}
body.page-id-2827 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/Los-Angeles-Hazardous-Waste-Disposal-Page-Top-Photo.jpg) center center no-repeat;
    background-size:cover;
}
body.page-id-2841 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/San-Diego-Hazardous-Waste-Disposal-Page-Top-Photo.jpg) center center no-repeat;
    background-size:cover;
}
body.page-id-2847 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/Raleigh-North-Carolina-Hazardous-Waste-Disposal-Top-Page-Photo-scaled.jpg) center center no-repeat;
    background-size:cover;
}
body.page-id-2888 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/Sacramento_Hazardous_Waste_Disposal_Top_Photo.jpg) center center no-repeat;
    background-size:cover;
}
body.page-id-2897 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/San_Francisco_Hazardous_Waste_Disposal_Top_Photo.jpg) center center no-repeat;
    background-size:cover;
}
body.page-id-2905 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/Hazardous_Waste_Disposal_in_Kansas_City_Top_Photo.jpg) center center no-repeat;
    background-size:cover;
}
body.page-id-2925 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/Roanoke_Virginia_Hazardous_Waste_Dipsosal_Top_Photo.jpg) bottom center no-repeat;
    background-size:cover;
}
body.page-id-2936 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/Norfolk_Virginia_Hazardous_Waste_Dipsosal_Top_Page_Photo.jpg) center center no-repeat;
    background-size:cover;
}
body.page-id-2942 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/Minneapolis_Hazardous_Waste_Disposal_Top_Photo.jpg) center center no-repeat;
    background-size:cover;
}
body.page-id-3019 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/Albany_Hazardous_Waste_Disposal_Top_Page_Photo-scaled.jpg) bottom center no-repeat;
    background-size:cover;
}
body.page-id-3034 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/Portland_Maine_Hazardous_Waste_Disposal_Top_Page_Photo_Panoramic-scaled.jpg) center center no-repeat;
    background-size:cover;
}
body.page-id-3046 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/Scranton_Pennsylvania_Hazardous_Waste_Disposal_Top_Photo.jpg) center center no-repeat;
    background-size:cover;
}
body.page-id-3065 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/Oklahoma_City_Hazardous_Waste_Disposal_Top_Page_Photo.jpg) center center no-repeat;
    background-size:cover;
}
body.page-id-3075 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/Tulsa_Hazardous_Waste_Disposal_Page_Top_Photo-scaled.jpg) center center no-repeat;
    background-size:cover;
}
body.page-id-3083 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/Omaha_Hazardous_Waste_Disposal_Page_Top_Photo.jpg) center center no-repeat;
    background-size:cover;
}
body.page-id-3120 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/Duluth_Hazardous_Waste_Disposal_Top_Photo.jpg) center center no-repeat;
    background-size:cover;
}
body.page-id-3132 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/Cedar_Rapids_Top_Photo.jpg) center center no-repeat;
    background-size:cover;
}
body.page-id-3143 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/Green_Bay_Wisconsin_Top_of_the_Page_Photo.jpg) center center no-repeat;
    background-size:cover;
}
body.page-id-3154 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/Wichita-Kansas-Top-Photo.jpg) center center no-repeat;
    background-size:cover;
}
body.page-id-3163 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/Joliet-IL-Top-Photo.jpg) center center no-repeat;
    background-size:cover;
}
body.page-id-3171 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/Decatur-IL-Top-Photo.jpg) center center no-repeat;
    background-size:cover;
}
body.page-id-3210 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/effingham-top.jpg) center center no-repeat;
    background-size:cover;
}
body.page-id-3313 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/Hazardous_Waste_Disposal_in_Austin_Top_Page_Photo.jpg) center center no-repeat;
    background-size:cover;
}
body.page-id-3322 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/Hazardous_Waste_Disposal_in_Houston_Top_Page_Photo.jpg) center center no-repeat;
    background-size:cover;
}
body.page-id-3324 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/Dallas_Hazardous_Waste_Disposal_Top_Page_Photo.jpg) center center no-repeat;
    background-size:cover;
}
body.page-id-3458 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/Amarillo_Hazardous_Waste_Disposal_Top_Photo-scaled.jpg) center center no-repeat;
    background-size:cover;
}
body.page-id-3473 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/San_Antonio_Hazardous_Waste_Diposal_Top_Photo.jpg) center center no-repeat;
    background-size:cover;
}
body.page-id-3483 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/lubbock-tx-top-scaled.jpg) center center no-repeat;
    background-size:cover;
}
body.page-id-3697 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/tupelo-img-header.jpg) center center no-repeat;
    background-size:cover;
}
body.page-id-3705 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/carbondale-img-header-1.jpg) center center no-repeat;
    background-size:cover;
}
body.page-id-3714 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/hattiesburg-img-header.jpg) center center no-repeat;
    background-size:cover;
}
body.page-id-3718 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/biloxi-img-header.jpg) center center no-repeat;
    background-size:cover;
}
body.page-id-3740 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/long-island-1.jpg) center center no-repeat;
    background-size:cover;
}
body.page-id-3770 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/syracuse-top.jpg) center center no-repeat;
    background-size:cover;
}
body.page-id-3771 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/providence-top.jpg) center center no-repeat;
    background-size:cover;
}
body.page-id-3921 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/south-bend-top.jpg) center center no-repeat;
    background-size:cover;
}
body.page-id-3930 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/wilmington-top.jpg) center center no-repeat;
    background-size:cover;
}
body.page-id-3935 .interior-bar-01 .interior-image-header {
    background: url(https://specialwastedisposal.com/wp-content/uploads/little-rock-top.jpg) center center no-repeat;
    background-size:cover;
}
.interior-bar-01 .header-caption {text-align:center;}
.interior-bar-01 .header-caption p {color:#fff; text-shadow: 1px 1px 5px #000;}
.interior-bar-01 .header-caption h2 {color:#fff; text-shadow: 1px 1px 5px #000;}
@media (min-width: 768px) {
  .interior-bar-01 .img-wrap {
    margin-top: .5rem;
  }
}
@media only screen and (max-width: 991px) {
  .interior-bar-01 .img-wrap::before {
    margin: 19rem 0;
  }
}


/*SEO BANNER*/
.content.seo {
  background: #ED1C24;
}
.content.seo p a:hover {
  color: #132a6b;
}
/*CONTACT*/
.wpcf7-contact-page input:focus,
.wpcf7-contact-page textarea:focus {
  border-color: #ED1C24;
}
.wpcf7-contact-page .submit-wrapper input:hover {
  cursor: pointer;
}
/*============================ */
/* Accordion-02
============================== */
.interior-accordion-02 {
  display: block;
  position: relative;
  font-size: 2rem;
  font-family: 'Lato';
  padding: 2rem 0;
}
.interior-accordion-02 .accordion-menu {
  display: block;
  position: relative;
}
.interior-accordion-02 .accordion-dropdown {
  display: block;
  position: relative;
  margin: 0;
  padding: 0;
  background-color: #132a6b;
}
.interior-accordion-02 h3 {
  font-size: .6em;
  font-weight: 300;
  padding: 1rem;
  margin: 0;
  color: #fff;
  background: transparent;
  line-height: 1.2;
  cursor: pointer;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
.interior-accordion-02 h3:hover {
  background: #20409A;
}
.interior-accordion-02 h3 > span {
  font-weight: 600;
  color: #ED1C24;
  padding-right: .5rem;
  transition: .3s all ease;
}
.interior-accordion-02 h3 > span i {
  font-size: 1em;
}
.interior-accordion-02 .accordion-dropdown-item {
  position: relative;
  display: block;
  padding: 1.5rem .5rem;
  background: #d6ddff;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.interior-accordion-02 .accordion-dropdown-item:not(.current) {
  max-height: 0;
  overflow: hidden;
  padding: 0 .5rem;
}
.interior-accordion-02 p {
  font-size: .6em;
  line-height: 1.4;
  color: #000;
  padding-left: .5rem;
}
.interior-accordion-02 p > span {
  font-weight: 600;
  color: #474747;
  padding-right:.5rem;
  font-size: 1em;
}
.interior-accordion-02 ul li .accordion-dropdown-item p {
  display: block;
  margin-left: 2rem;
  margin-bottom: 0.8rem;
}
.interior-accordion-02 ul li .accordion-dropdown-item.scdhec p {
  text-indent: -1.75rem;
  margin-left: 3rem;
}
.interior-accordion-02 ul li .accordion-dropdown-item p a {
  font-weight: 400;
}
.interior-accordion-02 ul li .accordion-dropdown-item p a:hover {
  text-decoration: underline;
}
/*============================ */
/* Additional Revisions
============================== */
#fancybox-title {
  display: none!important;
}
span.nowrap {
  white-space: nowrap;
}
span.nowrap a,
.footer-01 .text-wrap h3 a,
.hollow-contact-01 .content-wrap .info-wrap .text-wrap p a {
  color: inherit;
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
}
.hollow-header-02 .phone a:hover .reach {
  color: #000;
}
.page-id-201 .img-wrap.im01 {
  height: 20rem;
}
.page-id-203 .img-wrap {
  height: 20rem;
}
.page-id-205 .img-wrap {
  height: 18rem;
}
.page-id-206 .img-wrap {
  height: 30rem;
}
.page-id-209 .img-wrap {
  height: 23rem;
}
/*============================ */
/* Responsive Revisions
============================== */
@media only screen and (min-width: 992px) {
  .interior-bar-01 .img-wrap img {
    max-width: 100%;
  }
}
@media only screen and (max-width: 991px) {
  .interior-bar-01 .img-wrap img {
    max-width: unset;
  }
  .hollow-content-02 .img-wrap {
    height: 26rem;
  }
  .hollow-content-03 .img-wrap {
    height: 44rem;
  }
  .page-id-201 .img-wrap.im01 {
    height: 25rem;
  }
  .page-id-201 .img-wrap.im02 {
    height: 23rem;
  }
  .page-id-201 .img-wrap.im03 {
    height: 20rem;
  }
  .page-id-202 .img-wrap {
    height: 18rem;
  }
  .page-id-202 .img-wrap img {
    top: 70%;
    left: 62%;
  }
  .page-id-203 .img-wrap {
    height: 23rem;
  }
  .page-id-205 .img-wrap {
    height: 24rem;
  }
  .page-id-206 .img-wrap {
    height: 34rem;
  }
  .page-id-207 .img-wrap {
    height: 31rem;
  }
  .page-id-208 .img-wrap.im02 {
    height: 17rem;
  }
  .page-id-209 .img-wrap {
    height: 26rem;
  }
  .interior-accordion-02 ul li .accordion-dropdown-item p a {
    font-weight: 700;
    font-size: inherit;
    line-height: inherit;
  }
}
@media only screen and (max-width: 767px) {
  .hollow-hero-18_caption h3 {
    font-size: 1em;
  }
  .hollow-header-02 .logo img {
    max-width: 40%;
  }
  .hollow-content-02 .img-wrap {
    height: 16rem;
  }
  .hollow-content-03 .img-wrap {
    height: 20rem;
  }
  .interior-bar-01 .img-wrap {
    height: 16rem!important;
  }
  .interior-page .split-list ul {
    margin: 0;
  }
  .interior-page .split-list :first-of-type ul {
    margin-top: 1rem;
  }
  .interior-page .split-list :last-of-type ul {
    margin-bottom: 1rem;
  }
  .img-ctr {
    margin: 0 auto 1rem;
    width: 100%;
  }
}
/*============================ */
img.transform-disposal-1 {
    margin: 0 0 1rem auto;
}
img.transform-disposal-2 {
    margin-bottom: 1rem;
}
/*============================ */

@media only screen and (max-width:767px) {
img.transform-disposal-1,
img.transform-disposal-2 { width:100%; }
}

/*============================ 
 Accordion Dropdown
============================ */
.hollow-accordion-01 {
  padding: 2rem 0;
}
.hollow-accordion-01 .accordion-menu {
  background: #fff;
}
.hollow-accordion-01 .accordion-dropdown {
  margin-bottom: 2px;
}
.hollow-accordion-01 .question-wrap {
  display: flex;
  position: relative;
  background: #142B6C;
  padding: .5rem 1rem;
  cursor: pointer;
}
.hollow-accordion-01 .center-qa {
  text-align: center;
}
.hollow-accordion-01 h3 {
  display: block;
  padding-right: .5rem;
  color: #fff;
  font-weight: 700;
/*   max-width: 6%; */
  line-height: 1;
}
.hollow-accordion-01 p {
  display: inline-block;
  vertical-align: middle;
  font-weight: 300;
  margin: 0;
  color: #FFF;
  line-height: 1.3;
  cursor: pointer;
  max-width: 94%;
}
.hollow-accordion-01 ul.contenList {
    width:20%;
}
.hollow-accordion-01 .accordion-dropdown-item {
  position: relative;
/*   display: flex; */
  background: #9d9ea2;
  padding: 1rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.hollow-accordion-01 .accordion-dropdown-item:not(.current) {
  max-height: 0;
  overflow: hidden;
  padding: 0 1rem;
}
@media only screen and (max-width: 991px) {
  .hollow-accordion-01 h3 {
    max-width: 10%;
  }
}
@media only screen and (max-width: 767px) {
  .hollow-accordion-01 .row {
    margin: 0;
  }
  .hollow-accordion-01 .col-xs-12 {
    padding: 0;
  }
  .hollow-accordion-01 .col1 {
    width: 15%;
  }
  .hollow-accordion-01 .col19 {
    width: 85%;
  }
}

ul li.contentList {
    font-weight: 300;
    font-size: 2rem;
    position: relative;
    padding: .2rem 0;
    line-height: 0;
    margin-bottom: .5rem;align-content;
}
h3 a.hazardous-waste-accepted {
    color:#20409A !important;
}
.question-wrap h3 i {
    color: red;
}

ul.contenList {
    width:100% !important;
}

/*============================ 
Smoke Detector List
============================ */
p li.h3-list {
    color: #000 !important;
    text-transform: uppercase !important;
    font-size: .7em !important; 
} 
@media only screen and (max-width:767px) {
    img.special {
        float:none !important;
        padding: 0 !important;
        margin: 0 auto;
        width: 100%;
    }
}
/*============================ 
Mixed Waste
============================ */
@media only screen and (max-width: 767px) {
  img.same-size {
  width: 67%;
  float:none !important;
  padding: 0 !important;
  margin: 0 auto;     
  }
}
/*============================ 
Deafult List
============================ */
ul.default {
  display: block;
  list-style-type: disc;
  margin-top: 1em;
  margin-bottom: 1em;
  margin-left: 0;
  margin-right: 0;
  padding-left: 40px; 
  font-weight:300 !important;
}
ul.default li {display: list-item;}


body.page-id-1308 .service-noshow,
body.page-id-1279 .service-noshow,
body.page-id-1203 .service-noshow,
body.page-id-1035 .service-noshow,
body.page-id-1067 .service-noshow,
body.page-id-1155 .service-noshow,
body.page-id-1191 .service-noshow,
body.page-id-1100 .service-noshow,
body.page-id-1167 .service-noshow,
body.page-id-1136 .service-noshow {
    display:none;
}
/*============================ 
 */ 
.review-btn-wrap {
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  max-width: 100%;
 /*  width: 650px;  */
  z-index: 9999;
  transform: translateX(-100%);
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  transform: translate3d(-100%, 0, 0);
  -webkit-transform: translate3d(-100%, 0, 0);
  -moz-transform: translate3d(-100%, 0, 0);
  transition: transform 0.2s;
  box-shadow: 0 2px 5px -2px #000;
  -webkit-font-smoothing: antialiased;
}
.review-btn-wrap .review-btn {
  position: absolute;
  left: 100%;
  bottom: 0;
  transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  cursor: pointer;
  background: #2ecc71;
  color: #fff;
  box-shadow: 0 2px 5px -2px #000;
  transition: background 0.2s;
  font-size: 20px;
  padding: 5px 15px;
  white-space: nowrap;
  text-decoration: none;
}
.review-btn-wrap .review-btn:hover {background:#239c56;}
.review-btn-wrap .review-btn span {
  display: block;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  font-family: 'Lato', sans-serif;
  text-align: center;
}
.review-btn-wrap .review-btn .stars {text-align: center;}
.review-btn-wrap .review-btn .stars i.fa {font-size: 16px; color: #ffff00; line-height: 1.5;}

p.extend { padding-left:1rem; }
p.extend-2 { padding-left:2rem; }

li.pad-left { padding-left:1rem; }
li.pad-left-2 { padding-left:2rem; }
li.pad-left-3 { padding-left:3rem; }

.post-content img:is([sizes="auto" i], [sizes^="auto," i]) {
    contain-intrinsic-size: 800px 550px!important;
}
.sidebar-thumbnail img:is([sizes="auto" i], [sizes^="auto," i]) {
    margin: auto;
    contain-intrinsic-size: 600px 300px!important;
}
.blog-post-content h2 a {
    color: #20409a;
    font-weight: 600;
}
.blog-post-content h2 a:hover {
    color: #ed1c24;
}
.blog-post-content h3 {
    color: #000;
    text-transform: uppercase;
    font-size: 1.3rem;
    font-weight: 600;
}
.blog-post-content h3 a {
    color: #20409a;
    font-weight: 600;
}
.blog-post-content h3 a:hover {
    color: #ed1c24;
}
.blog-post-content p a {
    color: #20409a;
    font-weight: 600;
}
.blog-post-content p a:hover {
    color: #ed1c24;
}
.blog-post-content ol li {
    display: list-item;
    list-style: num;
    margin-left: 2rem;
    font-size: 1.3rem;
    color: #000;
    font-weight: 600;
}
.blog-post-content ul {
    margin-bottom: 2rem;
}
.blog-post-content ul li {
    display: list-item;
    list-style: disc;
    margin-left: 2rem;
    font-size: 1.1rem;
    color: #000;
}
@media only screen and (max-width: 991px) {
    .sidebar-thumbnail img:is([sizes="auto" i], [sizes^="auto," i]) {
    margin: auto;
     contain-intrinsic-size: 300px 156px!important;
    }
}
@media only screen and (max-width: 767px) {
    .post-content img:is([sizes="auto" i], [sizes^="auto," i]) {
    contain-intrinsic-size: 500px 287px!important;
    }
}