/* GENERAL
---------------------------------------------------------- */
::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color:    #999;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    color:    #999;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
    color:    #999;
}
:-ms-input-placeholder { /* Internet Explorer 10+ */
    color:    #999;
}

* {
	font-family: 'Roboto', sans-serif;
}
h1 {
	color: #222222;
	font-size: 38px;
	line-height: 48px !important;
	font-weight: 600;
}
h2 {
	color: #222222;
	font-size: 30px;
	line-height: 48px !important;
	font-weight: 600;
  margin: 0 0 10px 0;
}
h3 {
	color: #222222;
	font-size: 22px;
	line-height: 30px !important;
	font-weight: 600;
  margin: 5px 0 10px 0;
}
p {
	color: #222222;
	font-size: 15px;
	line-height: 21px;
	font-weight: 400;
}
ul {
     margin: 0;
     padding: 0;
}
hr {
  border-width: 1px;
  border-color: #222222;
}
.content ul {
     margin: 15px 0;
     padding: 0;
}
.content li {
    color: #222222;
    font-size: 15px;
    margin: 0 0 2px 20px;
    padding: 0;
}
.content h3 {
     margin-top: 20px;
}
::selection {
  background: #FF8C92;
}
::-moz-selection {
  background: #FF8C92;
}
a:link, a:active, a:visited {
	color: #E01624;
	text-decoration: none;
}
a:hover {
	color: #A2000F;
	text-decoration: underline;
}
button {
    background-color:#E01624;
    padding: 8px 16px;
    border: 0px;
    border-radius:4px;
    display: inline-block;
    margin: 5px 0 10px 0;
    color: #ffffff;
    font-weight: 500;
  }
button:hover{
    text-decoration: none;
    background-color:#BE000F;
    transition: background 0.2s, color 0.2s;
    -moz-transition: background 0.2s, color 0.2s;
    -webkit-transition: background 0.2s, color 0.2s;
  }
  button:focus {
    outline:0;
  }


/* NAVBAR
---------------------------------------------------------- */
.navbar {
  background: #E01624;
	/* box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.5); */
}
.navbar li a {
	color: #FFFFFF;
	text-transform: uppercase;
	font-weight: 500;
  font-size: 12px;
  padding-left: 12px;
  padding-right: 12px;
}
.navbar .lrgbtn a {
  font-weight: 900;
  font-size: 16px;
}
.nav>li>a:focus, .nav>li>a:hover {
	background: #BE000F;
  transition: background 0.2s, color 0.2s;
  -moz-transition: background 0.2s, color 0.2s;
  -webkit-transition: background 0.2s, color 0.2s;
}
.nohover a:focus ,.nohover a:hover  {
	background: none !important;
}
.nopad a, .nopad a  {
  padding-left: 8px;
  padding-right: 0px !important;
}
.nav .active {
	background-color: #A2000F;
}
.nav .active a {
	color: #ffffff;
}
.navbar-fixed-top {
    border-width: 0 0 0px;
}
.navbar-brand {
    padding: 12px 15px;
}
.navbar-toggle {
	border-color: none;
}
.navbar-toggle .icon-bar {
	background-color:#ffffff;
}
.title-bar {
  background-color: #A2000F;
  color:#ffffff;
  padding-top: 45px;
}
.title-bar h1{
  color:#ffffff;
  margin: 40px 0 30px 0;
}
.home-hero {
  background-image: url(../images/home-hero.jpg);
  background-repeat: no-repeat;
  background-position: top center;
  background-color: #FFFFFF;
  background-size: cover;
  color:#ffffff;
  padding: 180px 0 150px 0;
}
.home-hero-textbox {
  display: inline-block;
  padding: 5px 30px 20px 25px;
  background-color: rgba(0, 0, 0, 0.7);
}
.home-hero-textbox h1{
  color:#ffffff;
  font-size: 38px;
  font-weight: 600;
}
.home-hero-textbox h3{
  color:#ffffff;
  font-size: 22px;
  font-weight: 400;
}
.home-hero-img-mobile {
  display:none;
}
.home-hero-textbox-mobile {
  display:none;
}
.subnav-bar {
  background-color: #A2000F;
  color:#ffffff;
}
.subnav-bar ul {
  list-style: none;
}
.subnav-bar li a {
	color: #FFFFFF;
  background-color: none;
	text-transform: uppercase;
	font-weight: 500;
  text-decoration: none;
  font-size: 14px;
  padding: 8px 10px 10px 10px;
  position: relative;
  display:block;
  float: left;
}
.subnav-bar a:focus, .subnav-bar a:hover {
	background: #7C000F;
  transition: background 0.2s, color 0.2s;
  -moz-transition: background 0.2s, color 0.2s;
  -webkit-transition: background 0.2s, color 0.2s;
}
.subnav-bar-active {
  background-color: #ffffff;
  color: #A2000F !important;
}
.subnav-bar-active:hover {
	background: #ffffff !important;
}
.content-container {
  padding:0 0 40px 0;
}
.content {
  margin-top:30px;
}
.sidebar {
  background: #eeeeee;
  padding:10px 15px;
  border-radius: 6px;
  margin-top:30px;
}
.contact {
  background: #eeeeee;
  padding:12px 15px 5px 15px;
  margin-left: -15px;
  margin-bottom: 15px;
  border-radius: 6px;
}
.btn-white {
  background-color:#ffffff;
  padding: 8px 10px 8px 10px;
  border-radius:4px;
  display: inline-block;
  margin: 5px 0 10px 0;
}
.btn-white:hover {
  background-color:#eeeeee;
  transition: background 0.2s, color 0.2s;
  -moz-transition: background 0.2s, color 0.2s;
  -webkit-transition: background 0.2s, color 0.2s;
}
a.btn-white {
  color: #A2000F;
  font-weight: 500;
}
a:hover.btn-white {
  text-decoration: none;
}
.btn-pdf {
  background-color:#E01624;
  background-image: url(../images/btn-pdf.svg);
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: left;
  padding: 8px 10px 8px 28px;
  border-radius:4px;
  display: inline-block;
  margin: 5px 0 10px 0;
}
.btn-pdf:hover {
  background-color:#BE000F;
  transition: background 0.2s, color 0.2s;
  -moz-transition: background 0.2s, color 0.2s;
  -webkit-transition: background 0.2s, color 0.2s;
}
a.btn-pdf {
  color: #ffffff;
  font-weight: 500;
}
a:hover.btn-pdf {
  text-decoration: none;
}
.btn-red {
  background-color:#E01624;
  background-repeat: no-repeat;
  background-position: left;
  padding: 8px 10px 8px 10px;
  border-radius:4px;
  display: inline-block;
  margin: 5px 0 10px 0;
}
.btn-red:hover {
  background-color:#BE000F;
  transition: background 0.2s, color 0.2s;
  -moz-transition: background 0.2s, color 0.2s;
  -webkit-transition: background 0.2s, color 0.2s;
}
a.btn-red {
  color: #ffffff;
  font-weight: 500;
}
a:hover.btn-red {
  text-decoration: none;
}

.sidebar ul {
  list-style: none;
  font-weight: 600;
  margin-bottom: 20px;
}

/*FORM
---------------------------------------------------------- */

#mc_embed_signup input {
  width: 100%;
  margin-bottom: 5px;
  padding: 6px 10px;
  border: 0px;
  border-radius: 2px;
  background-color: #ffffff;
}
#mc_embed_signup input.button {
  width: auto;
  margin: 5px 0 10px 0;
  padding: 6px 20px;
  border: 0px;
  border-radius: 4px;
  background-color: #E01624;
  color: #ffffff;
  font-weight: 600;
}

/* PRODUCT LIST
---------------------------------------------------------- */
.product-list-container {
  margin: 25px 0;
}
ul.product-list {
  list-style: none;
}
ul.product-list li {
  float: left;
  width: 48%;
  margin: 0 2% 15px 0;
}
.product-thumbnail {
  float: left;
  width: 40%;
  border-radius: 6px 0 0 6px;
  display: inline-block;
}
.product-thumbnail img {
  width: 100%;
    border-radius: 6px 0 0 6px;
}
.product {
  float: left;
  width: 100%;
  background: #E01624;
  border-radius: 6px;
  display: inline-block;
}
.product:hover {
  background: #BE000F;
  transition: background 0.2s, color 0.2s;
  -moz-transition: background 0.2s, color 0.2s;
  -webkit-transition: background 0.2s, color 0.2s;
}
.product-title {
  display: inline-block;
  padding: 8px 10px 0 12px;
  float: right;
  width: 60%;
}
.product-title h3 {
  font-size: 20px;
  line-height: 24px !important;
  margin-top: 5px;
  color: #ffffff;
}

/* GALLERY
---------------------------------------------------------- */
.gallery-container {
  background: #eeeeee;
  padding:10px 15px;
  margin-bottom: 30px;
  border-radius: 6px;
}
.galleryrow > .gallerycolumn {
  padding: 0 2px;
}

.galleryrow:after {
  content: "";
  display: table;
  clear: both;
}

.gallerycolumn {
  float: left;
  width: 25%;
}

/* The Modal (background) */
.gallerymodal {
  display: none;
  position: fixed;
  z-index: 1040;
  padding-top: 70px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: black;
}

/* Modal Content */
.gallerymodal-content {
  position: relative;
  background-color: #fefefe;
  margin: auto;
  padding: 0;
  width: 60%;
  max-width: 1200px;
}

/* The Close Button */
.galleryclose {
  color: white;
  position: absolute;
  top: 10px;
  right: 25px;
  font-size: 35px;
  font-weight: bold;
}

.galleryclose:hover,
.galleryclose:focus {
  color: #999;
  text-decoration: none;
  cursor: pointer;
}

.galleryslides {
  display: none;
}

.gallerycursor {
  cursor: pointer;
}

/* Next & previous buttons */
.galleryprev,
.gallerynext {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
}

/* Position the "next button" to the right */
.gallerynext {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.galleryprev:hover,
.gallerynext:hover {
  background-color: rgba(0, 0, 0, 0.8);
}
.gallery-container .galleryrow img {
  margin: 6px 0;
}

.gallery-container .caption-container {
  text-align: center;
  background-color: black;
  padding: 2px 16px;
  color: white;
}
.gallerydemo {
  opacity: 0.6;
}

.galleryactive,
.gallerydemo:hover {
  opacity: 1;
}

.footer-member-logos {
  width:100%;
}
.footer-logo {
  width:100%;
  margin-top:10px;
}


/* QUOTE FORM
---------------------------------------------------------- */
.quote-form-container {
  background: #eeeeee;
  padding:10px 15px;
  border-radius: 6px;
  margin-bottom: 20px;
}



/* FOOTER
---------------------------------------------------------- */
#footer {
	background-color: #222222;
	padding: 40px 0;
}
#footer-confirmation {
	background-color:#F5F7F9;
	padding: 40px 0;
}
.footer-text {
	font-size: 12px;
	line-height: 16px;
	font-weight: 400;
	color: #8A939A;
}
#footer-confirmation h3 {
	font-size: 24px;
	line-height: 28px;
	font-weight: 600;
}
.footer-nav a {
	color: #ffffff;
}
#footer a {
	color: #ffffff;
}
#footer a:hover, .footer-nav a:hover {
	color: #A4ABBB;
	text-decoration: none;
}
.footer-nav ul {
	list-style: none;
}
.footer-nav li {
	margin-bottom: 5px;
}
#footer h3 {
	color: #ffffff;
	font-size: 22px;
	font-weight: 600;
}

/* MD
----------------------------------------------------------
---------------------------------------------------------- */
@media (max-width: 1199px) {
/* GENERAL
---------------------------------------------------------- */

.gallerymodal-content {
  width: 80%;
}

.product-title {
  display: inline-block;
  padding: 8px 10px 0 12px;
  float: right;
  width: 60%;
}
.product-title h3 {
  font-size: 16px;
  line-height: 18px !important;
  color: #ffffff;
}

}
/* SM
----------------------------------------------------------
---------------------------------------------------------- */
@media (max-width: 991px) {
/* GENERAL
---------------------------------------------------------- */
.hidden-sm {
	display:none!important
}


.gallerymodal-content {
  width: 95%;
}
.gallerycolumn {
  width: 33.3%;
}


#mc_embed_signup input {
	padding: 7px 10px;
  margin-bottom: 5px;
	border-radius: 4px;
	background-color: #FFFFFF;
	border: 0px;
}
.subnav-bar li a {
  margin: 0 0 14px 0;
  padding: 4px 8px 5px 8px;
  border-radius: 4px;
}
.subnav-bar a:focus, .subnav-bar a:hover {
	background: none;
}
.title-bar h1{
  color:#ffffff;
  margin: 30px 0 20px 0;
}

ul.product-list li {
  width: 100%;
  margin: 0 0 15px 0;
}
.product-title {
  display: inline-block;
  padding: 14px 15px 0 18px;
  float: right;
  width: 60%;
}
.product-title h3 {
  font-size: 22px;
  line-height: 28px !important;
  color: #ffffff;
}
}
/*
----------------------------------------------------------
---------------------------------------------------------- */
@media (min-width: 767px) {
.row-eq-height {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}
}
/* XS
----------------------------------------------------------
---------------------------------------------------------- */
@media (max-width: 767px) {
/* GENERAL
---------------------------------------------------------- */

.home-hero {
  display:none;
}
.home-hero-img-mobile {
  background-image: url(../images/home-hero.jpg);
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  width: 100%;
  height: 0;
  padding-top: 49%; /* (img-height / img-width * container-width) */
                /* (853 / 1280 * 100) */
  margin-bottom:-25px;
}
.home-hero-textbox-mobile {
  display: block;
  background-color: #222222;
  padding: 60px 20px 30px 20px;
  margin: 0;
}
.home-hero-textbox-mobile h1{
  color: #ffffff;
  font-size: 30px;
  font-weight: 600;
  line-height: 38px!important;
}
.home-hero-textbox-mobile h3{
  color: #ffffff;
  font-size: 18px;
  font-weight: 400;
  line-height: 26px!important;
}

h1 {
	font-size: 32px;
	line-height: 56px;
}
h2 {
	font-size: 24px;
	line-height: 42px;
}
h3 {
	font-size: 20px;
	line-height: 38px;
}

.title-bar h1{
  color:#ffffff;
  margin: 20px 0 15px 0;
}

.gallerycolumn {
  width: 25%;
}


.footer-member-logos {
  width:200px;
}
.footer-logo {
  width:160px;
  margin-top:50px;
}

/* HEADER
---------------------------------------------------------- */
#header {
	position: fixed;
	height: 46px;
}
#logo {
	height: 26px;
	margin-top: 8px;
}
#nav li {
	margin-left: 5px;
	margin-top: 8px;
	font-size: 14px;
}
ul.product-list li {
  width: 48%;
  margin: 0 2% 15px 0;
}
.product-title {
  display: inline-block;
  padding: 5px 6px 0 10px;
  float: right;
  width: 60%;
}
.product-title h3 {
  font-size: 14px;
  line-height: 18px !important;
  col
}
/* XXS
----------------------------------------------------------
---------------------------------------------------------- */
@media (max-width: 480px) {
/* GENERAL
---------------------------------------------------------- */

.gallerycolumn {
  width: 50%;
}
ul.product-list li {
  width: 100%;
  margin: 0 0 15px 0;
}
.product-title {
  display: inline-block;
  padding: 10px 8px 0 14px;
  float: right;
  width: 60%;
}
.product-title h3 {
  font-size: 18px;
  line-height: 24px !important;
  color: #ffffff;
}
}
