/*
 * Font color: #cc0033 (Top banner text - Red)
 * Background-color: #006600 (Green color on banner)
 * Font color: #009900 (Green text)
 *
 * safestrustremover.com:
 * font color: #ffff99 (yellow)
 * Background color: #cc6600 (burnt orange)
 */

/************************ */
/* GENERAL SETTINGS */
/************************ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    background-color: #fff;
    color: #000;
    font-family: 'Helvetica', 'Arial', sans-serif;
    font-weight: 400;
    font-size: 16px;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

a {
    color: #090;
}

h1 {
    text-align: center;
    margin-bottom: 30px;
}

h2 {
    margin-bottom: 15px;
}

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

.clearfix {zoom: 1;}
.clearfix:after {
    content: '.';
    clear: both;
    display: block;
    height: 0;
    visibility: hidden;
}

#container {
    max-width: 1140px;
    margin: 0 auto;
}

/* Used for sales message about cleaner */
.sanitize {
    text-align: center;
    color: #090;
    font-size: 150%;
    font-weight: 600;
}



/************************ */
/* HEADER SECTION */
/************************ */

.logo {
    display: inline-block;
    float: left;
    margin-left: 20px;
}

.logo img {
    width: 194px;
    height: auto;
}

.tagline {
    /*display: inline-block;
    float: right;
    width: 75%;*/
    margin: 10px auto;
}

.tagline p {
    color: #c03;
    margin: 10px auto 0 auto;
    text-align: center;
    font-weight: 600;
    font-style: italic;
}

#banner {
    width: 600px;
    height: 60px;
    margin: 0 auto;
}

#video-banner {
	margin: 20px auto;
}

#video-banner video {
	align-content: center;
	display: block;
	margin: 0 auto;
}

.main-nav {
    background-color: #060;
    height: 25px;
    font-size: 85%;
    margin-top: 10px;
}

.environ-tag {
    display: inline-block;
    float: left;
    font-weight: 600;
    font-style: italic;
    color: #fff;
    font-size: 90%;
    margin-left: 10px;
	margin-right: 10px;
    padding-top: 5px;
}

/*
.nav {
    float: right;
    padding-top: 5px;
}

.nav li {
    display: inline-block;
    margin-left: 40px;
}

.nav li:last-child {
    margin-right: 20px;
}

.nav li a:link,
.nav li a:visited {
    color: #ffc;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 90%;
    border-bottom: 2px solid transparent;
    -webkit-transition: border-bottom 0.2s;
    transition: border-bottom 0.2s;
}

.nav li a:hover,
.nav li a:active {
    border-bottom: 1px solid #ffc;
}
*/

/* topnav & media attributes are used to create hamburger vertical menu */
/* Add a green background color to the top navigation */
/*
.topnav {
  background-color: #060;
  overflow: hidden;
}

/* Style the links inside the navigation bar */
/*
.topnav a {
  float: left;
  display: block;
  color: #FFFFCC;
  text-align: center;
  padding: 5px 20px;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 90%;
}

/* Change the color of links on hover */
/*
.topnav a:hover {
  background-color: #ddd;
  color: black;
}

/* Add an active class to highlight the current page */
/*
.topnav a.active {
  background-color: #747474;
  color: white;
}

/* Hide the link that should open and close the topnav on small screens */
/*
.topnav .icon {
  display: none;
}

.topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
}

/* When the screen is less than 600 pixels wide, hide all links, except 
   for the first one ("Home"). Show the link that contains should open 
   and close the topnav (.icon) */
/*
@media screen and (max-width: 1150px) {
  .topnav a:not(:first-child) {display: none;}
  .topnav a.icon {
    float: right;
    display: block;
  }
}

/* The "responsive" class is added to the topnav with JavaScript when the user 
   clicks on the icon. This class makes the topnav look good on small screens 
   (display the links vertically instead of horizontally) */
/*
@media screen and (max-width: 1150px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive a.icon {
    position: absolute;
    right: 0;
    top: 0;
  }
}
*/

.menuItem {
  display: block;
  margin: 2rem 2rem;
  font-size: 1.4rem;
  color: white;
  text-decoration: none;
}

.menuItem:hover {
  text-decoration: underline;
}

.hamburger {
  position: fixed;
  z-index: 100;
  /*top: rem; */
  right: 1rem;
  padding: 4px;
  border: black solid 1px;
  background: white;
  cursor: pointer;
}

.closeIcon {
  display: none;
}

.menu {
  position: fixed;
  transform: translateY(-100%);
  transition: transform 0.2s;
  top: 0;
  left: 20;
  right: 0;
  bottom: 50;
  z-index: 99;
  background-color: rgba(0, 102, 0, .5);
  color: white;
  list-style: none;
  padding-top: 4rem;
  width: 30%;
}

.showMenu {
  transform: translateY(0);
}

.company-name {
    font-weight: 600;
}

.dist-title {
    font-weight: 800;
    font-size: 120%;
    padding: 0px 0px;
}

/************************ */
/* LEFT BOX SECTION */
/************************ */

.left-nav {
    margin-left: 0;
}

.left-box {
    list-style: none;
    text-align: center;
}

.ridrust {
    font-size: 110%;
}
.left-box li {
    padding: 10px 30px;
    font-size: 85%;
}

.recycle {
}

.recycle img {
	width: 80px;
	height: 80px;
	display: block;
	margin: auto;
}

.recycle p {
    font-size: 85%;
    color: #090;
}

/************************ */
/* RIGHT BOX SECTION */
/************************ */

.ultra-one-videos {
    text-align: center;
}

.ultra-one-videos hr {
    margin: 10px auto;
}

.our-product {
    color: #060;
}

.see-action {
    color: #060;
}

.tunnel-row {
    margin: 0 auto;
    text-align: center;
    font-size: 85%;
}

.tunnel-row img {
    margin-top: 30px;
}

.tunnel-row p {
    margin-top: 20px;
}

/************************ */
/* FOOTER SECTION */
/************************ */

#copyright {
    text-align: center;
    font-size: 85%;
    margin-top: 30px;
}

#siteseal {
    float: right;
}

/************************ */
/* VIDEO LINKS PAGE */
/************************ */

.video-header {
    margin-bottom: 20px;
}

#video-contact {
    list-style: none;
}

/************************ */
/* TESTIMONIALS PAGE */
/************************ */

.testimonial {
    margin-top: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #333333;
}

.testimonials {
    margin-top: 30px;
    border-top: 1px solid #333333;
}

.testimonial p {
    padding-top: 15px;
}

/************************** */
/* MEDIA QUERIES            */
/************************** */
@media (pointer: coarse) { /* Used for touchscreens */
    
}