@charset "UTF-8";
/* CSS Defined by F3 Designs (December 2017) f3designs.ca */


/* CUSTOM COLOUR PALETTE ================================================================================================ */
/* red-bright: #ca0813; */
/* red-medium: #9f171f; */
/* red-deep: #74050a; */
/* charcoal: #363636; */
/* grey-light: #ededed */


/* CUSTOM FONTS: Google Fonts ========================================================================================== */
/* Roboto -- Body Copy:
	font-family: 'Roboto', sans-serif;
	font-weight: 400; (regular)
	font-weight: 500; (medium) 
	font-weight: 700; (bold)
/* Merriweather -- Headings:
	font-family: 'Merriweather', serif;
	font-weight: 400; (regular)
	font-weight: 700; (bold)
	font-weight: 900; (black)


/* MEDIA QUERIES ======================================================================================================== */
/* Smartphones (portrait and landscape)
@media (min-width: 320px) and (max-width: 568px) {
 ...
}
/* Tablets (portrait and landscape)
@media (min-width: 768px) and (max-width: 1024px) {
 ...
}
/* Tablets (landscape)
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
 ...
}
/* Tablets (portrait)
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
 ...
}
/* Smartphones and Tablets (portrait and landscape)
@media (min-width: 320px) and (max-width: 1024px) {
 ...
}


/* TYPE SELECTORS ======================================================================================================= */
html, body {
	height: 100% !important;
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	font-size: 16px;
	color: #000000;
	background-color: #ffffff;
	-webkit-font-smoothing: antialiased; /* resolves issue with font displaying much bolder than it should in Mac Chrome and Safari */
	-moz-osx-font-smoothing: grayscale; /* resolves issue with font displaying much bolder than it should in Mac Firefox */
}
p {
	margin: 0px 0px 30px 0px;
}
p a:link {
	color: #ca0813 !important;
	text-decoration: underline !important;
}
p a:visited {
	color: #ca0813 !important;
	text-decoration: underline !important;
}
p a:hover {
	color: #363636 !important;
	text-decoration: underline !important;
}
p a:active {
	color: #ca0813 !important;
	text-decoration: underline !important;
}
.p-intro {
	font-family: 'Merriweather', serif;
	font-size: 18px;
	line-height: 36px;
	margin: 0px 0px 60px 0px;
}
.p-callout {
	font-family: 'Merriweather', serif;
	color: #ca0813;
	font-size: 18px;
	font-weight: 700;
}
h1 {
	font-family: 'Merriweather', serif;
	background-color: #363636;
	color: #ffffff;
	font-weight: 700;
	padding: 5px;
	display: inline;
	line-height: 48px;
}
.h1-border {
	border-top: solid 1px #ededed;
	margin: 0px !important;
}
h2 {
	font-family: 'Merriweather', serif;
	color: #9f171f;
	margin: 15px 0px 60px 0px;
}
h3 {
	font-weight: 700;
	margin: 0px 0px 30px 0px;
}
.modal-body h3 {
	margin-top: 30px;
}
.modal-body a:link {
	color: #ca0813 !important;
	text-decoration: underline !important;
}
.modal-body a:visited {
	color: #ca0813 !important;
	text-decoration: underline !important;
}
.modal-body a:hover {
	color: black !important;
	text-decoration: underline !important;
}
.modal-body a:active {
	color: #ca0813 !important;
	text-decoration: underline !important;
}
h4 {
	font-family: 'Merriweather', serif;
}
/* adds margin to bottom of cols */
[class*="col-"] {
	margin-bottom: 30px !important;
}


/* CLASS SELECTORS (Miscellaneous) ====================================================================================== */
/* pipe */
.pipe {
	padding: 0px 15px 0px 15px;
}
/* note */
.note {
	font-size: 16px;
	border-left: solid 3px #d9534f;
	padding: 15px;
	background-color: #fdf7f7;
}
/* nowrap */
.nowrap {
	white-space: nowrap;
}
/* nopadding */
.nopadding {
	padding: 0 !important;
}
/* (shadow) */
.shadow {
	-webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.7);
	-moz-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.7);
	box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.7);
}
/* resolves issue with anchor links when you have a fixed top nav */
.anchor {
	padding-top: 180px;
}
/* Smartphones (portrait and landscape) */
@media (min-width: 320px) and (max-width: 568px) {
.anchor {
	padding-top: 0px;
}
}


/* CLASS SELECTORS (Buttons) ============================================================================================ */
/* btn-primary */
.btn-primary:link {
	color: #ffffff;
	background-color: #ca0813;
	border-color: #ca0813 !important;
	border-radius: 12px;
	border: solid 1px;
	font-size: 20px;
	text-decoration: none;
	padding: 15px;
	margin: 0px 20px 20px 20px;
	text-transform: uppercase;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}
.btn-primary:visited {
	color: #ffffff !important;
	background-color: #ca0813 !important;
	border-color: #ca0813 !important;
}
.btn-primary:hover {
	background-color: #363636 !important;
	border-color: #363636 !important;
}
.btn-primary:active {
	color: #ffffff !important;
	background-color: #ca0813 !important;
	border-color: #ca0813 !important;
}
/* btn-primary2 */
.btn-primary2:link {
	color: #ca0813;
	background-color: #ffffff;
	border-color: #ffffff !important;
	border-radius: 12px;
	border: solid 1px;
	font-size: 20px;
	text-decoration: none;
	padding: 15px;
	margin: 0px 20px 20px 20px;
	text-transform: uppercase;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}
.btn-primary2:visited {
	color: #ca0813 !important;
	background-color: #ffffff !important;
	border-color: #ffffff !important;
}
.btn-primary2:hover {
	background-color: #363636 !important;
	border-color: #363636 !important;
	color: #ffffff;
}
.btn-primary2:active {
	color: #ca0813 !important;
	background-color: #ffffff !important;
	border-color: #ffffff !important;
}
/* btn-default */
.btn-default:link {
	color: #ffffff !important;
	background-color: #ca0813;
	border-color: #ca0813 !important;
	border-radius: 12px;
	border: solid 1px;
	font-size: 20px;
	text-decoration: none !important;
	padding: 15px;
	margin: 0px 20px 20px 20px;
	text-transform: uppercase;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.7);
}
.btn-default:visited {
	color: #ffffff !important;
	background-color: #ca0813 !important;
	border-color: #ca0813 !important;
	text-decoration: none !important;
}
.btn-default:hover {
	color: #ffffff !important;
	background-color: #363636 !important;
	border-color: #363636 !important;
	text-decoration: none !important;
}
.btn-default:active {
	color: #ffffff !important;
	background-color: #ca0813 !important;
	border-color: #ca0813 !important;
	text-decoration: none !important;
}
/* (btn-top) */
.btn-top:link {
	height: 45px; /* customized */
	width: 45px; /* customized */
	border-radius: 100% !important;
	line-height: 0px; /* customized */
	padding: 0px;
	color: #ffffff !important;
	font-size: 45px; /* customized */
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
	background-color: #ca0813; /* added */
	border-color: #ca0813; /* added */
}
.btn-top:visited {
	color: #ffffff !important;
	background-color: #ca0813 !important; /* added */
	border-color: #ca0813 !important; /* added */
}
.btn-top:hover {
	color: #ffffff !important;
	background-color: #363636 !important;
	border-color: #363636 !important;
}
.btn-top:active {
	color: #ffffff !important;
	background-color: #ca0813 !important; /* added */
	border-color: #ca0813 !important; /* added */
}


/* HEADER (Vitality Customized) ========================================================================================= */
header {
	position: relative;
	display: block;
	height: auto;
	width: auto;
	background-color: #74050a;
	background: no-repeat center center;
	background-attachment: scroll;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
	-o-background-size: cover;
	padding: 100px 0;
}
header .intro-content {
	color: white;
	text-align: center;
	position: relative;
}
/* Smartphones (portrait and landscape) */
@media (min-width: 320px) and (max-width: 568px) {
header .intro-content { /* customized */
	margin-top: 30px;
}
}
header .brand-name { /* customized */
	font-family: 'Merriweather', serif;
	font-weight: 900;
	font-size: 36px !important;
	color: #fffffff;
	background-color: #363636;
	text-transform: uppercase;
	display: inline;
	line-height: 50px !important;
}
/* Smartphones (portrait and landscape) */
@media (min-width: 320px) and (max-width: 568px) {
header .brand-name { /* customized */
	font-size: 24px !important;
	line-height: 38px !important;
}
}
header .brand-name-subtext { /* customized */
	font-size: 20px !important;
	color: #74050a;
	font-weight: 700;
	margin: 20px 0px 30px 0px;
}
header img {
	max-width: 150px;
	max-height: 150px;
}
header .scroll-down {
	position: absolute;
	width: 100%;
	bottom: 20px;
	text-align: center;
}
header .scroll-down .btn {
	height: 45px; /* customized */
	width: 45px; /* customized */
	border: 2px solid white;
	border-radius: 100% !important;
	line-height: 45px; /* customized */
	padding: 0;
	letter-spacing: normal;
	color: white;
	font-size: 45px; /* customized */
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
	background-color: #ca0813; /* added */
	border-color: #ca0813; /* added */
}
/* Smartphones (portrait and landscape) */
@media (min-width: 320px) and (max-width: 568px) {
header .scroll-down .btn {
	display: none;
}
}
header .scroll-down .btn:hover {
	color: rgba(255, 255, 255, 0.5);
	border-color: rgba(255, 255, 255, 0.5);
	outline: none;
}
@media (min-width: 768px) {
header {
	height: 100vh;
	width: 100%;
	padding: 0;
	background-attachment: scroll;
	min-height: 700px;
}
header .intro-content {
	color: white;
	text-align: center;
	width: 100%; /* customized (was 50% */
	margin: auto;
	position: absolute;
	top: 60%; /* customized (was 50% */
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
header img {
	max-width: 250px;
	max-height: 250px;
}
}

@media (min-width: 1025px) {
header {
	background-attachment: fixed;
}
}


/* CONTAINER (Section) ================================================================================================== */
section {
	margin: 90px 0px 0px 0px;
	text-align: center;
}
.section {
	text-align: left;
}
/* section1: WELCOME
.section1 {
	background: url(../img/bg-section1.jpg) no-repeat bottom right;
	background-size: auto;
} */
/* section2: PRODUCTS */
/* (product category container for image with button link) */
.productcategory {
    position: relative;
}
/* (product category buttons) */
.btn-productcategory {
	color: #FFF;
	background-color: rgba(159, 23, 31, 0.75);
	border: none;
	border-radius: 0px;
	margin: 0px;
	padding: 30px 5px 30px 5px;
    position:absolute;
    bottom:0px;
    left:auto;
	right: auto;
	text-align: center;
	font-weight: 700;
	font-size: 24px;
	width: 100%;
	white-space: normal;
}
.btn-text {
	background-color: #363636;
	padding: 2px;
}
.btn-productcategory:link {
	color: #FFF;
}
.btn-productcategory:visited {
	color: #FFF;
}
.btn-productcategory:hover {
	color: #FFF;
}
.btn-productcategory:active {
	color: #FFF;
}
.producttype {
	background-position: center center;
	background-repeat: no-repeat;
	text-align: center;
	padding: 30px 30px 30px 30px;
	margin-top: -15px;
}
.producttype2 {
	background-position: center center;
	background-repeat: no-repeat;
	text-align: center;
	padding: 90px 30px 30px 30px;
	min-height: 278px;
}
.section2-row1 {
	margin-bottom: 60px;
}
.section2 h3 {
	margin-top: 90px;
}
/* section5: CONTACT */
.section5 {
	background: url(../img/bg-header.jpg) no-repeat center center;
	background-attachment: scroll;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
	-o-background-size: cover;
}
/* Smartphones (portrait and landscape) */
@media (min-width: 320px) and (max-width: 568px) {
.section5 {
	background: none;
}
}
.section5 a:link, a:visited, a:hover, a:active {
	color: #363636;
	text-decoration: none;
}
.section5 ul {
	list-style: none;
	margin-bottom: 60px;
}
.section5 li {
	color: #363636;
	line-height: 20px;
}
.section5 .contact_location:before {
	font-family: 'FontAwesome';
	content: '\f041';
	margin: 0px 25px 0px -30px;
	color: #ca0813;
	font-size: 30px;
}
.section5 .contact_default {
	margin: 0px 12px 0px;
}
.section5 .contact_phone {
	font-family: 'Merriweather', serif;
	font-weight: 900;
	font-size: 24px;
}
.section5 .contact_phone:before {
	font-family: 'FontAwesome';
	content: '\f095';
	margin: 0px 15px 0px -30px;
	color: #ca0813;
	font-size: 30px;
}
.section5 img {
	padding-bottom: 120px;
}
/* Smartphones (portrait and landscape) */
@media (min-width: 320px) and (max-width: 568px) {
.section5 img {
	padding-bottom: 60px;
}
}


/* CLASS SELECTORS (Aside) =================================================================================================== */
.aside {
	position: relative;
	color: #ffffff;
	width: 100%;
	min-height: 360px;
	background-position: center;
	background-size: cover;
	padding-top: 90px;
	text-align: center;
}


/* CONTAINER (Footer) =================================================================================================== */
footer {
	text-align: center;
}
/* footer-row1 (nav) */
.footer-row1 {
	background-color: #74050a;
	padding: 15px;
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 500;
}
.footer-row1 ul {
	list-style: none;
	display: inline;
}
.footer-row1 li {
	display: inline;
	margin: 0px 15px 0px 15px;
}
/* Smartphones (portrait and landscape) */
@media (min-width: 320px) and (max-width: 568px) {
.footer-row1 li {
	display: block;
	margin: 15px 0px 15px 0px;
}
}
.footer-row1 a:link {
	color: #ffffff !important;
}
.footer-row1 a:visited {
	color: #ffffff !important;
}
.footer-row1 a:hover {
	color: #ffffff !important;
}
.footer-row1 a:active {
	color: #ffffff !important;
}
/* footer-row2 (copyright) */
.footer-row2 {
	font-size: 11px;
	color: #a4b0b9;
	padding: 30px;
	background-color: rgba(54, 54, 54, 0.85);
}
.footer-row2 ul {
	list-style: none;
	display: inline;
	padding: 0px;
	margin: 0px;
}
.footer-row2 li {
	display: inline;
	margin: 0px;
	padding: 0px 15px 0px 15px;
	line-height: 30px;
	color: #a4b0b9;
}
.footer-row2 a:link {
	color: #ffffff;
}
.footer-row2 a:visited {
	color: #ffffff;
}
.footer-row2 a:hover {
	color: #ffffff;
	text-decoration: underline;
}
.footer-row2 a:active {
	color: #ffffff;
}


/* CLASS SELECTORS (Navbar) ============================================================================================= */
/* added so that navbar-nav would be centered */
.navbar .navbar-nav {
	width: 100%;
    text-align: center;
}
.navbar .navbar-nav li {
	float: none;
	display: inline-block;
}
/* Smartphones (portrait and landscape) */
@media (min-width: 320px) and (max-width: 568px) {
.navbar .navbar-nav li {
	display: block;
}
}
/* added so that navbar-brand would be centered */
.navbar-header {
    width: 100%;
	margin: 0px !important;
}
.navbar-brand {
	float: none;
}
.navbar-brand img {
	margin: -75px auto 0px auto !important;
}
/* Smartphones (portrait and landscape) */
@media (min-width: 320px) and (max-width: 568px) {
.navbar-brand img {
	margin: -30px 0px 0px 0px !important;
}
}
/* added for phone # and town placment */
.navbar-contact {
	text-align: right;
}
/* Smartphones (portrait and landscape) */
@media (min-width: 320px) and (max-width: 568px) {
.navbar-contact {
	display: none;
}
}
.navbar-contact_phone {
	font-family: 'Merriweather', serif;
	font-weight: 900;
	color: #ca0813;
	font-size: 18px;
}
.navbar-contact_phone a:link, a:visited, a:hover, a:active {
	color: #ca0813;
	text-decoration: none;
}
.navbar-contact_location {
	text-transform: uppercase;
	color: #363636;
	font-size: 14px;
}
.navbar-contact_location a:link, a:visited, a:hover, a:active {
	color: #363636;
	text-decoration: none;
}
/* Main ================================================================================================================= */
.navbar-default.navbar-expanded {
	background: none;
	border-bottom: none;
	padding: 30px 0px 30px 0px;
	margin: 0px;
}
/* Smartphones and Tablets (portrait and landscape) */
@media (min-width: 320px) and (max-width: 1025px) {
.navbar-default.navbar-expanded {
	padding: 15px 0px 15px 0px;
}
}
.navbar-default {
	background: #ededed;
	border-bottom: solid 2px #ca0813;
	padding: 15px 0px 0px 0px;
	margin: 0px;
}
/* (moves the logo within the navbar to desired position) */
.navbar-brand img {
}
/* Toggle =============================================================================================================== */
/* (background-color, surrounding border color, and position of toggle menu on mobile) */
.navbar-default .navbar-toggle {
	background-color: #ca0813;
	border-color: #ca0813;
    /* position: absolute; /* turn on if you want to center toggle on mobile */
    /* left: 50%; /* turn on if you want to center toggle on mobile */
    /* transform: translatex(-50%); /* turn on if you want to center toggle on mobile */
}
/* (inner 3 lines color for toggle on mobile) */
.navbar-default .navbar-toggle .icon-bar {
	color: #ffffff;
}
/* (background color for toggle when clicked on mobile) */
.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
}

/* Smartphones and Tablets (portrait and landscape) */
@media (min-width: 320px) and (max-width: 1025px) {
.navbar-default .navbar-collapse {
	border: none !important;/* (removes bottom border when toggle menu on mobile is expanded) */
	background-color: #cccccc;
	margin-top: 0px;
}
}
/* Primary ============================================================================================================== */
/* (primary list items in off state) */
.navbar-default .navbar-nav li a {
	font-size: 18px;
	color: #363636;
	text-transform: uppercase;
	font-weight: 500;
	margin: 0px 15px 0px 15px;
}
/* Smartphones (portrait and landscape) */
@media (min-width: 320px) and (max-width: 568px) {
.navbar-default .navbar-nav li a {
	margin: 15px;
	border-bottom: solid 1px white;
}
}
/* (primary list items visited) */
.navbar-default .navbar-nav li a:visited {
	color: #363636;
}
/* (primary list items on hover) */
.navbar-default .navbar-nav li a:hover {
	color: #ca0813;
}
/* (primary list items active) */
.navbar-default .navbar-nav li a:active {
	color: #363636;
}
/* (primary list items focus) */
.navbar-default .navbar-nav li a:focus {
	color: #363636;
}


/* CLASS SELECTORS (Contact Form) ======================================================================================= */
.contactform .form-group {
}
.contactform .form-group input, .contactform .form-group textarea {
	padding: 20px;
	font-size: 20px !important;
	text-transform: uppercase;
	font-family: 'Merriweather', serif;
	color: #666664;
}
.contactform .form-group input.form-control {
	height: auto;
}
.contactform .form-group textarea.form-control {
	height: 238px;
}
.contactform .form-control:focus {
	border-color: #a4b0b9;
	box-shadow: none;
}
.contactform .btn-default {
	color: #ffffff;
	background-color: #ca0813;
	border-color: #ca0813 !important;
	border-radius: 12px;
	border: solid 1px;
	font-size: 20px;
	text-decoration: none;
	padding: 15px;
	margin: 0px 20px 20px 20px;
	text-transform: uppercase;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.7);
}
.contactform .btn-default:link {
	color: #ffffff;
	background-color: #ca0813;
	border-color: #ca0813 !important;
}
.contactform .btn-default:visited {
	color: #ffffff;
	background-color: #ca0813;
	border-color: #ca0813 !important;
}
.contactform .btn-default:hover {
	background-color: #363636 !important;
	border-color: #363636 !important;
}
.contactform .btn-default:active {
	color: #ffffff;
	background-color: #ca0813;
	border-color: #ca0813 !important;
}
/* (alert) */
.text-danger ul {
	list-style: none;
	background-color: #ffffff;
	margin: 0px !important;
	padding: 10px !important;
	color: black;
	border: solid 2px red;
	font-size: 18px;
	line-height: 18px;
	text-align: left;
}
.contactform input {
	border: solid 1px #a4b0b9;
	border-radius: 0px;
	background-color: #ededed;
}
.contactform textarea {
	border: solid 1px #a4b0b9;
	border-radius: 0px;
	background-color: #ededed;
}
::-webkit-input-placeholder {
 font-size: 14px;
 color: #666664 !important;
}
:-moz-placeholder {
 font-size: 14px;
 color: #666664 !important;
}
::-moz-placeholder {
 font-size: 14px;
 color: #666664 !important;
}
:-ms-input-placeholder {
 font-size: 14px;
 color: #666664 !important;
}
.alert-success {
	background-color: #d8e1dd;
	font-size: 18px;
	padding: 15px !important;
	border: none;
	border-radius: 0px;
	text-align: center;
	color: #666664 !important;
	line-height: 24px;
}
.required {
	color: red;
	font-weight: bold;
}


/* 404 NOT FOUND ======================================================================================================== */
.notfound {
	height: 100%;
}
.notfound-message {
	margin: auto;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	height: 360px;
	width: 100%;
	text-align: center;
	color: #000000;
}
.notfound-message img {
	margin: 0 auto !important;
	text-align: center !important;
}