/*
* 
*/
@import url('https://fonts.googleapis.com/css?family=David+Libre:400,500&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700&display=swap');
/* Base styles */
html, body {
  height: 100%;
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  font-size: 1em;
  color: #777777;
  line-height: 1.75em;
}
html {
	background-color: #f8f8f8;
}
body {
	background-color: transparent;
}
/*
* Headline styles
*/
h1, h2, h3 {
  font-family: 'David Libre';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  color: #810000;
}
h1 {font-size: 3em;}
h2 {font-size: 2.5em;}
h3 {font-size: 1.8em;}
h4, h5 {
  color: #810000;
}
.heading {
	overflow: hidden;
	text-align: center;
	margin-bottom: 15px;
	padding-bottom: 15px;
}
.heading:before,
.heading:after {
	content: "";
	display: inline-block;
	height: 1px;
	position: relative;
	vertical-align: middle;
	width: 50%;
	background-color: #eeeeee;
}
.heading:before {
	right: 1rem;
	margin-left: -50%;
}
.heading:after {
	left: 1rem;
	margin-right: -50%;
}
.main-header h1 {
	margin-top: 0;
	margin-bottom: 0;
	padding: 60px 30px;
	text-align: center;
	color: #fff;
	text-shadow: 0px 0px 8px rgba(0, 0, 0, 1);
}
/* --- */
.line-right,
.line-left {
	overflow: hidden;
	margin-bottom: 15px;
	padding-bottom: 15px;
	font-family: 'David Libre';
	font-style: normal;
	font-weight: 400;
	font-size: 1.4em;
}
.line-left {
	text-align: right;
}
.line-right:after {
	content: "";
	display: inline-block;
	height: 1px;
	position: relative;
	vertical-align: middle;
	width: 100%;
	background-color: #ddd;
}
.line-right:after {
	left: 1rem;
	margin-right: -50%;
}
.line-left:before {
	content: "";
	display: inline-block;
	height: 1px;
	position: relative;
	vertical-align: middle;
	width: 100%;
	background-color: #ddd;
}
.line-left:before {
	right: 1rem;
	margin-left: -50%;
}
.main-footer .line-left,
.main-footer .line-right {
	color: #fff;
}
.main-footer .line-right:after,
.main-footer .line-left:before {
	background-color: rgba(255,255,255,0.25);
}
/*
* Link styles
*/
a {
	transition: all 250ms ease; 
}
.main-footer a {
	color: #fff;
}
/* Preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f7f7f7;
  z-index: 1100;
  text-align: center;
}
.preloader .loading {
	position: relative;
	top: 45%;
}
.loader {
	display: inline-block;
	width: 64px;
	height: 64px;
	background-image: url('../img/spinner.svg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
/*
* Layout styles
*/
.bgimage {
    background-image: url('../img/background.jpg');
    background-position: center bottom;
    background-size: 100% auto;
	background-repeat: no-repeat;
}
.main-header {
	min-height: 175px;
	background-color: #fff;
	background-image: url('../img/header-background.jpg');
	background-position: center center;
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	border-bottom: 1px solid #fff;
}
.main-section {
	padding-top: 45px;
	padding-bottom: 45px;
}
.main-footer {
	padding-top: 200px;
	padding-bottom: 30px;
	color: #fff;
}
@media (max-width: 767px) {
	.main-footer {
		padding-top: 150px;
		background-image: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,0.5));
	}
}
@media (min-width: 1200px) {
	.main-footer {
		padding-top: 300px;	
	}
}
@media (min-width: 1400px) {
	.main-footer {
		padding-top: 550px;	
	}
}
.main-footer .column-right {
	text-align: right;
}
@media (max-width: 767px) {
	.main-footer .column-right {
		margin-top: 30px;
		text-align: left;
	}
}
.main-footer .column-left {
}
.copyright {
	padding: 15px;
	text-align: center;
	background-color: rgba(0,0,0,0.5);
	color: #b6b6b6;
}
/* 
* Html object styles
*/
/* Images */
img.fluid,
.fluid img {
	max-width: 100%;
	height: auto;
}
.image-frame {
	padding: 4px;
	background-color: #fff;
	border: 1px solid #f1f1f1;
	overflow: hidden;
}
.image-frame img {
	max-width: 100%;
	height: auto;
}
.round-frame {
	width: 200px;
	height: 200px;
	line-height: 200px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	text-align: center;
	overflow: hidden;
	border: 3px solid #fff;
}
.round-frame img {
	display: block;
	max-width: 100%;
	height: auto;
}
.round-frame.frame-xs {
	width: 100px;
	height: 100px;
	line-height: 100px;
}
.round-frame.frame-xs {
	width: 250px;
	height: 250px;
	line-height: 250px;
}
.round-frame.frame-md {
	width: 300px;
	height: 300px;
	line-height: 300px;
}
/* --- */
.img-xs {
	max-width: 75px;
	height: auto;
}
.img-sm {
	max-width: 150px;
	height: auto;
}
.img-md {
	max-width: 300px;
	height: auto;
}
.img-lg {
	max-width: 500px;
	height: auto;
}
.img-xl {
	max-width: 800px;
	height: auto;
}
/* Colors */
.red {
	color: #810000 !important;
}
.grey {
	color: #cfcfcf !important;
}
/* Typography */
.italic {
	font-style: italic !important;
}
.uppercase {
	text-transform: uppercase !important;
}
.lowercase {
	text-transform: lowercase !important;
}
.bold {
	font-weight: 600 !important;
}
.bolder {
	font-weight: 700 !important;
}
.underline {
	padding-bottom: 10px;
	margin-bottom: 15px;
	border-bottom: 1px solid #f1f1f1;
}
.sub-header {
	color: #575656;
	font-style: italic;
}
.form-error {
	display: block;
	font-size: 0.85em;
	font-style: italic;
	color: #a94442;
}
.shadow {
	text-shadow: 0 0 5px rgba(0,0,0,0.75);
}
/* Spacer & gutter styles */
.mt-xxs {
	margin-top: 5px !important;
}
.mt-xs {
	margin-top: 15px !important;
}
.mt-sm {
	margin-top: 30px !important;
}
.mt-md {
	margin-top: 45px !important;
}
.mt-lg {
	margin-top: 60px !important;
}
.mb-xxs {
	margin-bottom: 5px !important;
}
.mb-xs {
	margin-bottom: 15px !important;
}
.mb-sm {
	margin-bottom: 30px !important;
}
.mb-md {
	margin-bottom: 45px !important;
}
.mb-lg {
	margin-bottom: 60px !important;
}
.spacer-xs {
	display: block;
	font-size: 0;
	line-height: 999;
	height: 5px;
}
.spacer-sm {
	display: block;
	font-size: 0;
	line-height: 999;
	height: 15px;
}
.spacer-md {
	display: block;
	font-size: 0;
	line-height: 999;
	height: 30px;
}
.spacer-lg {
	display: block;
	font-size: 0;
	line-height: 999;
	height: 45px;
}
/* --- */
.boxed {
	padding: 30px;
	background-color: #fff;
}
.map {
}
@media (max-width: 767px) {
	.map {
		margin-bottom: 45px;
	}
}
.address {
}
.contact-form {
	margin-top: 45px;
}
/* --- */
.valign {
	display: table;
}
.valign .vmiddle {
	display: table-cell;
	vertical-align: middle;
}
/*
* Status widget
*/
.status-section {
	padding-bottom: 60px;
}
.status-param {}
.status-bar {
	position: relative;
	padding: 30px;
	background-color: #fff;
}
.progress {
	position: relative;
	width: 600px;
	height: 600px;
	margin: 0 auto;
	position: relative;
	padding: 30px;
	border-radius: 0;
	box-shadow: none;
	z-index: 99;
	background-color: #cfcfcf;
}
@media (max-width: 767px) {
	.progress {
		width: 400px;
		height: 400px;
	}
}
@media (max-width: 480px) {
	.progress {
		width: 320px;
		height: 320px;
	}
}
.progress:after {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background-image: url('../img/cow-image-inverse.svg');
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	z-index: 101;
}
.bar {
	background-color: #810000;
	width: 0%;
	height: 100%;
	transition: width 1s;
	z-index: 100;
}
.percent {
	position: absolute;
	display: inline-block;
	top: 60px;
	height: 100%;
	left: 0%;
	transform: translateX(0%);
	z-index: 102;
	font-size: 2em;
	color: #810000;
}
.percent:after {
	position: absolute;
	content: '';
	top: 0;
	bottom: 200px;
	left: 50%;
	margin-top: 50px;
	width: 0px;
	border-right: 1px dashed #cfcfcf;
}
.status-bar .ribbon-left,
.status-bar .ribbon-right {
	text-align: center;
	text-transform: uppercase;
	font-weight: 700;
}
.status-bar .ribbon-left {
	background-color: #cfcfcf;
	color: #fff;
}
.status-bar .ribbon-right {
	background-color: #810000;
	color: #fff;
}
/* Ribbons */
@media (min-width: 768px) {
	.status-bar .ribbon-left,
	.status-bar .ribbon-right {
		position: absolute;
		height: 52px;
		width: 260px;
		top: 40%;
		margin-top: -26px;
		line-height: 52px;
		padding-left: 30px;
		padding-right: 30px;
		z-index: 105;
	}
	.status-bar .ribbon-left {
		left: -10px;
	}
	.status-bar .ribbon-left:before {
		position: absolute;
		left: 0;
		top: 100%;
		content: '';
		width: 0;
		height: 0;
		border-style: solid;
		border-width: 0 10px 10px 0;
		border-color: transparent #b4b4b4 transparent transparent;
	}
	.status-bar .ribbon-left:after {
		content: '';
		position: absolute;
		top: 0;
		bottom: 0;
		left: 100%;
		width: 100%;
		padding-bottom: 15px;
		background: #cfcfcf;
		z-index: 1001;
		-webkit-clip-path: polygon(0% 0%, 5% 50%, 0% 100%, 0% 0%);
				clip-path: polygon(0% 0%, 5% 50%, 0% 100%, 0% 0%);
	}
	.status-bar .ribbon-right {
		right: -10px;
	}
	.status-bar .ribbon-right:before {
		content: '';
		position: absolute;
		top: 0;
		bottom: 0;
		right: 100%;
		width: 100%;
		padding-bottom: 15px;
		background: #810000;
		z-index: 1001;
		-webkit-clip-path: polygon(100% 0, 100% 100%, 95% 50%);
			clip-path: polygon(100% 0, 100% 100%, 95% 50%);
	}
	.status-bar .ribbon-right:after {
		position: absolute;
		right: 0;
		top: 100%;
		content: '';
		width: 0;
		height: 0;
		border-style: solid;
		border-width: 10px 10px 0 0;
		border-color: #6d0000 transparent transparent transparent;
	}
}
@media (max-width: 767px) {
	.status-bar .ribbon-left,
	.status-bar .ribbon-right {
		padding: 10px;
		float: left;
		width: 50%;
	}
}
.status-bar .ribbon-right a,
.status-bar .ribbon-right a:visited {
	color: #fff;
}
.status-bar .ribbon-right a:hover {
	text-decoration: none;
	color: #d19b9b;
}
.status-caption {
	padding-top: 30px;
	padding-right: 30px;
}
.status-phone {
	padding-top: 30px;
	padding-left: 30px;
	text-align: center;
}
@media (min-width: 768px) {
	.status-caption {
		border-top: 1px solid #f1f1f1;
		border-right: 1px solid #f1f1f1;
	}
	.status-phone {
		border-top: 1px solid #f1f1f1;
		color: #cfcfcf;
	}
}
@media (max-width: 767px) {
	.status-caption {
		text-align: center;
	}
	.status-phone {
		margin-top: 30px;
		border-top: 1px solid #f1f1f1;
	}
}

/* --- */
.status-info {
	margin-top: 10px;
}
.status-info [class*='col-'] .infobox {
	padding: 30px;
	text-align: center;
	background-color: #fff;
}
.status-info [class*='col-'] .infobox > h3 {
	margin-top: 0;
}
.status-info [class*='col-'] .infobox > figure > img {
	max-height: 150px;
	width: auto;
}
@media (max-width: 767px) {
	.status-info [class*='col-'] .infobox {
		border-top: 1px solid #f1f1f1;
	}
	.status-info [class*='col-']:first-child .infobox {
		border-top: 0;
	}
}
/*
* Module styles
*/
.teaser-section {
	padding-top: 45px;
	padding-bottom: 45px;
}
.teaser-section .teaser {
	background-color: #fff;
}
.teaser-section .teaser .image {
	position: relative;
}
@media (min-width: 768px) {
	.teaser-section .teaser .image:after {
		content: '';
		position: absolute;
		right: 0;
		top: 0;
		width: 10px;
		height: 100%;
		background-color: rgba(255,255,255,0.3);
	}
	.teaser-section .teaser .image:before {
		right: 10px;
		top: 50%;
		border: solid transparent;
		content: " ";
		height: 0;
		width: 0;
		position: absolute;
		pointer-events: none;
		border-color: rgba(255, 255, 255, 0);
		border-right-color: rgba(255,255,255,0.3);
		border-width: 16px;
		margin-top: -16px;
	}
}
@media (max-width: 767px) {
	.teaser-section .teaser .image:after {
		content: '';
		position: absolute;
		left: 0;
		bottom: 0;
		height: 10px;
		width: 100%;
		background-color: rgba(255,255,255,0.3);
	}
	.teaser-section .teaser .image:before {
		bottom: 10px;
		left: 50%;
		border: solid transparent;
		content: " ";
		height: 0;
		width: 0;
		position: absolute;
		pointer-events: none;
		border-color: rgba(255, 255, 255, 0);
		border-bottom-color: rgba(255,255,255,0.3);
		border-width: 16px;
		margin-left: -16px;
	}
}
.teaser-section .teaser .image img {
	max-width: 100%;
	height: auto;
}
@media (max-width: 767px) {
	.teaser-section .teaser .content {
		padding: 30px;
	}	
	.teaser-section .teaser .content .url {
		margin-top: 15px;
		text-align: center;
	}		
}
/* Slider section */
.slider-section {
	margin-top: 60px;
}
.slider-section .slider-item {
	text-align: center;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.slider-section .slider-item h3 {
	color: #fff;
}
.slider-section .slider-item .round-frame {
	margin: 0 auto;
}
.services .service {
}
.services .service:hover {
	background-color: #fff;
}
.grayscale img {
	-webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
	filter: grayscale(100%);
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.grayscale:hover img {
	-webkit-filter: grayscale(0%); /* Safari 6.0 - 9.0 */
	filter: grayscale(0%);
}


/*
* Product styles
*/
.product {
}
.product .details {
	background-color: #fff;
}
@media (max-width: 767px) {
	.product .details .gallery {
		border-bottom: 1px solid #f1f1f1;
	}
}
@media (min-width: 768px) {
	.product .details .gallery {
		border-right: 1px solid #f1f1f1;
	}
}
.product .details .information {
	padding: 30px;
}
@media (min-width: 768px) {
	.product .details .information {
		padding-left: 0px;
	}
}
.product .details .information h3 {
	margin-top: 0;
}
.product .details .product-box {
	margin: 0;
	padding: 15px;
	list-style: none;
	background-color: #f8f8f8;
}
.product .details .product-box > li > label {
	display: inline-block;
	min-width: 175px;
}
.product .details .product-box > li {
	padding-left: 24px;
	position: relative;
	color: #000;
}
.product .details .product-box > li:before {
	position: absolute;
	left: 0;
	top: 50%;
	margin-top: -3px;
	font-family: 'icons' !important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 0;
	font-size: 1.2em;
	content: '\e908';
	color: #870c0c;
}
.product .details .prices {
	padding: 15px;
	font-family: 'David Libre';
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	background-color: #f8f8f8;
	font-size: 2em;
	color: #810000;
}
.product .details .prices .old-price {
	color: #777777;
	font-size: 24px;
	text-decoration: line-through;
}
.product .details .prices label {
	font-family: 'David Libre';
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	margin-bottom: 0;
	color: #000;
}
.product .description {
	margin-top: 45px;
}