/*================================================================
	CSS dokument - izdelava spletnih strani www.intuitiva.si
================================================================*/

@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,300i,600,500i');

:focus {
	outline: none;
}
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
html {
    -webkit-text-size-adjust: 100%; /* Prevent font scaling in landscape while allowing user zoom */
	height: 100%;
}
body {
	margin: 0;
	padding: 0;
	font-size: 18px;
	line-height: 1.4em;
	font-family: 'Source Sans Pro', sans-serif;
	color: #333;
	height: 100%;
	font-weight: 300;
	min-width: 320px;
	background: rgba(255,255,255,1);
}
a {
	color: #00A851;
	text-decoration: none;
}
a:hover {
	color: #00A851;
	text-decoration: none;
}
p a {
	color: #00A851;
	text-decoration: none;
	border-bottom: 1px dotted #CCC;
}
p a:hover {
	color: #00A851;
	text-decoration: none;
	border-bottom: 1px solid #00A851;
}
p:first-of-type {
	margin-top: 0;
}
p:last-of-type {
	margin-bottom: 0;
}
h1, h2, h3, h4 {
	line-height: 1.2em;
}
h1 {
	font-size: 2.6em;
	color: #00A851;
	font-weight: 300;
	padding: 35px 0 0 0;
	margin-top: 0;
	margin-bottom: 0.9em;
}
h2 {
	font-size: 1.2em;
}
strong {
	font-weight: 600;
}
#headerContainer, main, #contactContainer, #formContainer, #footerContainer {
	display: block;
	max-width: 1240px;
	margin: 0 auto;
}

/* HEADER
----------------------------------------------------------------*/

header {
	display: block;
	width: 100%;
	position: relative;
	border-bottom: 1px solid #E2E2E2;
	z-index: 100;
}
#headerFix {
	display: block;
	width: 100%;
	height: 181px;
}
header.fixed {
	box-shadow: 0 2px 6px rgba(0,0,0,0.2);
	animation: slide-down 0.5s;
	background-color: #fff;
}

@keyframes slide-down {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    } 
    100% {
        opacity: 0.9;
        transform: translateY(0);
    } 
}
#headerContainer {
	height: 180px;
	padding: 0 20px;
}
header #logo {
	float: left;
	width: 240px;
	height: auto;
}
header #logo img {
	display: block;
	width: 100%;
	height: auto;
	margin-top: 28px;
}
#headerContacts {
	float: right;
	color: #999;
	margin-top: 40px;
}
#headerContacts div {
	display: inline-block;
	background-repeat: no-repeat;
	padding-left: 28px;
	margin-left: 30px;
}
#headerContacts a {
	color: #999;
	border-bottom: 1px dotted #00A851;
	text-decoration: none;
}
#headerContacts a:hover {
	border-bottom: 1px solid #00A851;
	text-decoration: none;
}
.headerContactIconPhone {
	background-image: url(../img/iconPhone.svg);
	background-size: 20px 15px;
	background-position: 0 6px;
}
.headerContactIconMail {
	background-image: url(../img/iconMail.svg);
	background-size: 20px 20px;
	background-position: 0 4px;
}
#headerMenu {
	clear: right;
	float: right;
	margin-top: 48px;
}
#headerMenu a {
	font-size: 1.2em;
	color: #666;
	text-decoration: none;
	margin-left: 30px;
	font-weight: 600;
	padding-bottom: 5px;
	position: relative;
	border-bottom: none;
}
#headerMenu a:after {
	content: '';
	display: block;
	border-bottom: 3px solid #00A851;
	width: 0;
	position: absolute;
	bottom: -3px;
	left: 0;
    -webkit-transition: 0.3s ease-out;
    -moz-transition: 0.3s ease-out;
    -ms-transition: 0.3s ease-out;
    -o-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
}
#headerMenu a:hover:after {
	width: 100%;
}
#headerMenu a.selected {
	border-bottom: 3px solid #00A851;
}
#headerMenu a.selected {
	color: #00A851;
}

/* MOBILE MENU */

#mobileMenuBtn {
	display: none;
	width: 48px;
	height: 48px;
	background-color: #00A851;
	cursor: pointer;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 101;
}
#mobileMenuBtn.btnFixed {
	position: fixed;
}
#nav-icon {
  width: 32px;
  height: 26px;
  position: relative;
  margin: 11px auto;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
}

#nav-icon span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #fff;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}
#nav-icon span:nth-child(1) {
  top: 0px;
}

#nav-icon span:nth-child(2),#nav-icon span:nth-child(3) {
  top: 12px;
}

#nav-icon span:nth-child(4) {
  top: 24px;
}

#nav-icon.open span:nth-child(1) {
  top: 10px;
  width: 0%;
  left: 50%;
}

#nav-icon.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

#nav-icon.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#nav-icon.open span:nth-child(4) {
  top: 10px;
  width: 0%;
  left: 50%;
}

/* CONTENT
----------------------------------------------------------------*/

#contentBg {
	display: block;
	width: 100%;
	background: -moz-linear-gradient(top, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.03) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(0,0,0,0.1)), color-stop(100%, rgba(0,0,0,0.03)));
	background: -webkit-linear-gradient(top, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.03) 100%);
	background: -o-linear-gradient(top, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.03) 100%);
	background: -ms-linear-gradient(top, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.03) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#000000', GradientType=0 );
	background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.03) 100%);
	/*border-bottom: 5px solid #ffda00;*/
}
main {
	position: relative;
	padding-top: 20px;
	padding-bottom: 20px;
}
main#home {
	min-height: 600px;
}
article {
	display: block;
	width: 100%;
	padding: 0 20px;
}
#pemsContainer {
	padding: 0 20px;
	margin-top: 40px;
}
#pemsContainer, #pemsContainer img {
	display: block;
	width: 100%;
	height: auto;
}
#pemsContainer img#sloganDesktop {}
#pemsContainer img#sloganMobile { display: none; }
.homeOffer {
	display: block;
	width: 100%;
	margin: 60px 0;
	padding: 0 20px;
}
.offerItem {
	display: block;
	width: 100%;
	height: auto;
	background-color: rgba(0,0,0,0.05);
	padding: 20px;
	position: relative;
}
.offerItem h2 {
	color: #00A851;
	font-size: 1.4em;
	margin-top: 5px;
}
.offerItem a.offerAttachment, a.offerAttachment {
	font-weight: 600;
	text-decoration: none;
	border-bottom: 1px dotted #666;
}
.offerItem a.offerAttachment:hover, a.offerAttachment:hover {
	border-bottom: 1px solid #00A851;
}
.offerBadge {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	background-repeat: no-repeat;
	background-size: cover;
	height: 200px;
	width: 200px;
	z-index: 10;
}
.offerBadge.novost {
	background-image: url(../img/badge-novost.svg);
}
.offerBadge.akcija {
	background-image: url(../img/badge-akcija.svg);
}
.offerItem a.offerImg, .offerItem div.offerImg {
	float: left;
	width: 33%;
}
.offerItem a.offerImg {
	height: auto;overflow: hidden;
	background-color: #00A851;
}
.offerItem a.offerImg img {
	display: block;
	width: 100%;
	height: auto;
    -webkit-transition: transform 0.8s, opacity 0.5s;
    -moz-transition: transform 0.8s, opacity 0.5s;
    -ms-transition: transform 0.8s, opacity 0.5s;
    -o-transition: transform 0.8s, opacity 0.5s;
    transition: transform 0.8s, opacity 0.5s;
}
.offerItem a.offerImg img:hover {
	kit-transform: scale(1.1);
	-transform: scale(1.1);
	transform: scale(1.1);
	opacity: 0.5;
	cursor: pointer;	
}
.offerContent {
	float: left;
	width: 67%;
	padding: 0 0 0 20px;
}
.offerContent a {
	border-bottom: 2px dotted #00A851;
}
.offerContent a:hover {
	border-bottom: 2px solid #00A851;
}


.categorItemImg img {
	height: auto;
    -webkit-transition: transform 0.8s, opacity 0.5s;
    -moz-transition: transform 0.8s, opacity 0.5s;
    -ms-transition: transform 0.8s, opacity 0.5s;
    -o-transition: transform 0.8s, opacity 0.5s;
    transition: transform 0.8s, opacity 0.5s;
}
.categorItemImg img:hover {
	kit-transform: scale(1.1);
	-transform: scale(1.1);
	transform: scale(1.1);
	opacity: 0.5;
	cursor: pointer;
}

/* SLIDER */

#heroSliderContainer {
	display: block;
	width: 100%;
	position: relative;
	/*background-color: rgba(0,0,0,0.10);*/
}
#heroSlider {
	max-width: 2000px;
	margin: 0 auto;
}
.owl-carousel img {
	width: 100%;
	height: auto;
}
#sliderTitleContainer {
	display: block;
	width: 100%;
	bottom: 0;
	left: 0;
	position: absolute;
	z-index: 10;
}
#sliderTitle {
	display: block;
	max-width: 1200px;
	margin: 0 auto;
	background-color: rgba(0,168,81,0.70);
	text-align: center;
}
#sliderTitle h1 {
	margin: 0;
	padding: 30px 0;
	color: #FFF;
	font-size: 1.7em;
	font-weight: 500;
	font-style: italic;
}
.homeProductsGallery {
	display: block;
	width: 100%;
	margin: 60px 0 40px;
}
.owl-carousel .owl-item img.sliderDesktop {}
.owl-carousel .owl-item img.sliderMobile { display: none; }

/* PONUDBA */

#categoryContainer, .categorItemImg, .categorItemImg img, .categoryItemTitle, .categoryItemCaption {
	display: block;
	width: 100%;
}
#categoryContainer {
	padding: 20px 0;
}
.categoryItemBox {
	float: left;
	width: 33.33%;
	padding: 20px;
}
.categoryItemBox:nth-of-type(3n+1) {
	clear: left;
}
.categorItemImg {
	height: auto;
	overflow: hidden;
	background-color: #00A851;
	position: relative;
}
.categorItemImg img {
	height: auto;
    -webkit-transition: transform 0.8s, opacity 0.5s;
    -moz-transition: transform 0.8s, opacity 0.5s;
    -ms-transition: transform 0.8s, opacity 0.5s;
    -o-transition: transform 0.8s, opacity 0.5s;
    transition: transform 0.8s, opacity 0.5s;
}
.categorItemImg img:hover {
	kit-transform: scale(1.1);
	-transform: scale(1.1);
	transform: scale(1.1);
	opacity: 0.5;
	cursor: pointer;
}
h3.categoryItemTitle {
	text-align: center;
	color: #00A851;
	margin: 8px 0 0;
	padding-bottom: 5px;
}
h3.categoryItemTitle a {
	color: #00A851;
	text-decoration: none;
}
h3.categoryItemTitle a:hover {
	text-decoration: none;
	border-bottom: 2px solid #00A851;
}
.categoryItemCaption {
	text-align: center;
	color: #999;
	font-size: 0.8em;
}
.productsGallery {
	display: block;
	width: 100%;
	margin: 40px 0;
}
.productsGalleryItem {
	display: block;
	padding: 0 20px;
}


#productsBackContainer {
	display: block;
	width: 100%;
	padding: 0 20px;
	margin-top: 40px;
}
#productsBack {
	display: block;
	width: 100%;
	border-top: 1px solid rgba(0,0,0,0.15);
	padding: 40px 0;
}
#productsBack a {
	background-image: url(../img/back-arrow.svg);
	padding: 4px 0 4px 30px;
	background-repeat: no-repeat;
}
#productsBack a:hover {
	font-weight: 600;
}


/* KONTAKT */

.boxItem {
	display: block;
	width: 100%;
	margin-bottom: 60px;
	padding: 0 20px;
}
.boxImg, .boxTextBox {
	float: left;
	width: 50%;
	height: auto;
	overflow: hidden;
}
.boxImg {
	height: 420px;
	background-color: #00A851;
}
.boxTextBox {
	padding: 60px;
	height: 420px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	background-color: rgba(0,0,0,0.05);
}
.boxImg a {
	display: block;
}
.boxImg img {
	-webkit-transition: opacity 0.5s ease-out;
	-moz-transition: opacity 0.5s ease-out;
	-o-transition: opacity 0.5s ease-out;
	-ms-transition: opacity 0.5s ease-out;
	transition: opacity 0.5s ease-out;
	width: 100%;
	height: auto;
	display: block;
}
.boxImg a:hover img {
	opacity: 0.5;
}
.boxTextBox h2 {
	margin-bottom: 40px;
}
.boxItem:nth-of-type(2n+0) .boxImg {
	float: right;
}
.boxItem:nth-of-type(2n+0) .boxTextBox {
	text-align: right;	
}
.boxItem:nth-of-type(2n+1) .boxImg {
	float: left;
}
.boxTextBox a {
	text-decoration: none;
	border-bottom: 1px dotted #999;
}
.boxTextBox a:hover {
	text-decoration: none;
	border-bottom: 1px solid #00A851;
}
.boxItem.company .boxTextBox h2 a {
	border-bottom: 1px dotted #999;
}
.boxItem.company .boxTextBox h2 a:hover {
	border-bottom: 1px solid #999;
}
.boxItem.company h2 a {
	display: inline;
}
.boxTextBox h3 {
	margin-top: 0;
}
.contactAlign {
	text-align: center;
}

/* 404 */

#notFound {
	display: block;
	text-align: center;
	margin: 60px 0;
	padding: 0 50px;
}
#notFoundIcon {
    display: block;
    width: 100%;
    height: 180px;
    background-image: url(../img/iconNotFound.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.2;
}
#notFound .title {
	font-size: 1.6em;
	line-height: 1.2em;
	margin-bottom: 40px;
}

/* FOOTER
----------------------------------------------------------------*/

footer {
	display: block;
	width: 100%;
	color: #FFF;
	clear: both;
	background: #00A851;
	background: -moz-linear-gradient(-45deg, #00a851 15%, #75bf2c 75%);
	background: -webkit-linear-gradient(-45deg, #00a851 15%,#75bf2c 75%);
	background: linear-gradient(135deg, #00a851 15%,#75bf2c 75%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00a851', endColorstr='#75bf2c',GradientType=1 );
}
#footerContainer {
	position: relative;
	padding: 60px 20px;
}
#footerLine {
	display: block;
	width: 100%;
	height: 40px;
	border-bottom: 1px solid rgba(255,255,255,0.3);
	margin-bottom: 40px;
}
#footerContainer a {
	text-decoration: none;
	color: #FFF;
	border-bottom: 1px dotted rgba(255,255,255,0.5);
	font-weight: 600;
}
#footerContainer a:hover {
	border-bottom: 1px solid rgba(255,255,255,0.5);
}
#footerContact {
	display: block;
	width: 100%;
	background-image: url(../img/pems-footer-logo.svg);
	background-position: top right;
	background-repeat: no-repeat;
	background-size: 200px auto;
}
#footerContact span {
	padding: 0 15px;
	opacity: 0.4;
}
#footerCopyright {
	float: left;
}
#footerWebdesign {
	float: right;
    color: #99DCB9;
}
#footerWebdesign a {
	color: #99DCB9;
	font-weight: 600;
	border-bottom: none;
}
#footerWebdesign a:hover {
	border-bottom: 1px dotted rgba(255,255,255,0.5);
}

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

input, label, select, button, textarea
{
	margin:0;
	border:0;
	padding:0;
	display:inline-block;
	vertical-align:middle;
	white-space:normal;
	background:none;
	line-height:1;
	
	/* Browsers have different default form fonts */
	font-size:13px;
	font-family:Arial;
}
input {
    -webkit-appearance: none;
}
/* Remove the stupid outer glow in Webkit */
input:focus, select:focus {
	outline:0;
}
input[type=checkbox], input[type=radio]
{
	width:13px;
	height:13px;
}
textarea 
{
	/* Move the label to the top */
	vertical-align:top;
	
	/* Turn off scroll bars in IE unless needed */
	overflow:auto;
}

#formContainer {
	display: block;
	width: 50%;
	margin: 0 auto;
	padding: 0 20px 40px;
	/*background-color: rgba(255,255,255,0.50)*/
}
#formContainer h1 {
	text-align: center;
	padding-top: 0;
}
#formBox {
	display: block;
	width: 100%;
}
p.formRequired {
	color: #F50004;
	text-align: center;
	font-style: italic;
	margin-bottom: 20px;
	font-weight: 600;
}
.formItem {
	display: block;
	width: 100%;
	margin-bottom: 20px;
}
.formItem.textarea, .formItem.formBtn {
	width: 100%;
}
.caption {
	font-weight: 600;
	font-size: 0.9em;
}
.caption span {
	color: #F50004;
}
#formBtn, input.textbox, textarea {
	font-size: 18px;
	line-height: 1.4em;
	font-family: 'Source Sans Pro', sans-serif;
	font-weight: 300;
}
#formBtn {
	display: block;
	width: 50%;
	background-color: #00A851;
	border: none;
	color: #fff;
	height: 44px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border-radius: 0;
	margin: 40px auto 0;
}
#formBtn:hover {
	cursor: pointer;
	background-color: #333;
}
input.textbox {
    -webkit-border-radius: 0;
	border-radius: 0;
    font-size: 1em;
    color: #333;
    border: 1px solid #ccc;
    padding: 0 8px;
    width: 100%;
	display: block;
    height: 44px;
	line-height: 44px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-color: #FFF;
}
textarea {
	clear: both;
	-webkit-appearance: none;
    -webkit-border-radius: 0;
	border-radius: 0;
    font-size: 1em;
    color: #333;
    border: 1px solid #ccc;
    padding: 8px;
    width: 100%;
	line-height: 1.3em;
	-moz-appearance: none;
	appearance: none;
	min-height: 140px;
	background-color: #FFF;
}
input.textbox.error, textarea.error {
	border: 2px solid #F50004;
}
input:focus {
	outline: 0;
}
input:required {
    box-shadow: none;
}
input:invalid {
    border: 2px solid #f00;
}
input.textbox:hover, textarea:hover {
    background-color: #f9f9f9;
}
#messageBox {
	text-align: center;
}

@media only screen and (max-width : 1184px) {
	.boxImg img {
		width: auto;
		height: 420px;
	}
}
@media only screen and (max-width : 1023px) {
	
	#headerContainer {
		height: 130px;
	}
	header #logo {
		width: 180px;
	}
	header #logo img {
		margin-top: 20px;
	}
	#headerContacts {
		margin-top: 26px;
	}
	#headerMenu {
		margin-top: 28px;
	}
	#footerContainer {
		padding: 40px 20px;
	}
	#pemsContainer{
		margin-top: 0px;
	}
	#headerFix {
		height: 131px;
	}
	.homeOffer {
		margin: 20px 0;
	}
	.offerBadge {
		width: 170px;
		height: 170px;
	}
	.homeProductsGallery {
		margin: 0 0 20px;
		padding: 0 10px;
	}
	.productsGalleryItem {
		padding: 0 10px;
	}
	#heroSliderContainer .owl-carousel .owl-item img {
		height: 306px;
		width: auto;
	}
	h1 {
		padding: 0;
		margin-bottom: 0.45em;
	}
	.categoryItemBox {
		padding: 10px;
	}
	#categoryContainer {
		padding: 20px 10px;
	}
	#productsBack {
		padding: 20px 0;
	}
	.productsGallery {
		padding: 0 10px;
		margin: 20px 0;
	}
	.boxItem {
		margin-bottom: 20px;
	}
	
}
/*@media only screen and (max-width : 980px) {
	
	#homeGridContainer {
		padding: 10px 10px 30px 10px;		
	}
	#footerContact {
		padding: 15px 0;
	}
	#footerCompanyInfo {
		margin: 15px 0;
	}
	#footerWebdesign {
		padding-bottom: 30px;
	}
	footer {
		max-width: 100%;
		padding: 0 20px;
	}
	#contentMenuContainer a {
		margin: 0 10px;
	}
}*/
@media only screen and (min-width : 768px) {
	
	.desktopHide {
		display: none!important;
	}
	#headerContacts, #headerMenu {
		display: block!important;
	}
	header.fixed #headerContainer {
		height: 100px;
	}
	header.fixed #logo {
		width: 160px;
	}
	header.fixed #logo img {
		margin-top: 8px;
	}
	header.fixed #headerContacts {
		margin-top: 18px;
	}
	header.fixed #headerMenu {
		margin-top: 10px;
	}
	header.fixed #headerMenu a {
		font-size: 1.1em;
	}
	
}
@media only screen and (max-width : 767px) {
	
	header, #headerContainer {
		height: auto;
		min-height: 68px;
	}
	.menuContact {
		display: block!important;
	}
	#headerContainer {
		padding: 0;
	}
	header #logo {
		width: 180px;
		height: 50px;
		margin: 8px 0;
		background-image: url(../img/pems-logo-mobile.svg);
		background-repeat: no-repeat;
		background-size: contain;
	}
	header #logo img {
		display: none!important;
	}
	#mobileMenuBtn {
		margin: 10px;
		display: block !important;
	}
	#headerBox {
		display: block;
		width: 100%;
		height: 68px;
		position: relative;
		padding: 0 10px;
	}
	#headerFix {
		height: 69px;
	}
	#headerMenu {
		float: none;
		width: 100%;
		background: #00A851;
		background: -moz-linear-gradient(-45deg, #00a851 15%, #75bf2c 75%);
		background: -webkit-linear-gradient(-45deg, #00a851 15%,#75bf2c 75%);
		background: linear-gradient(135deg, #00a851 15%,#75bf2c 75%);
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00a851', endColorstr='#75bf2c',GradientType=1 );
		margin: 0;
		padding: 15px 0;
	}
	#headerMenu a, #headerMenu a:hover, #headerMenu a.selected {
		border: none;
	}
	#headerMenu a {
		color: #fff;
		display: block;
		width: 100%;
		text-align: center;
		padding: 15px 0;
		margin: 0;
		font-weight: 300;
	}
	#headerMenu a:hover {
		background-color: rgba(0,0,0,0.1);
	}
	#headerMenu a.selected {
		color: #FFDA00;
	}
	#headerContacts, #headerMenu {
		display: none;
	}
	#sliderTitle h1 {
		font-size: 1.4em;
		padding: 20px;
	}
	#footerContainer {
		padding: 40px 10px;
	}
	#footerLine {
		height: 20px;
		margin-bottom: 20px;
	}
	#footerContact {
		background-image: none;
		text-align: center;
	}
	#footerCopyright, #footerWebdesign {
		float: none;
		display: block;
		text-align: center;
	}
	#footerWebdesign {
		margin-top: 20px;
	}
	.owl-theme .owl-dots .owl-dot span {
		margin: 0 7px;
	}
	.owl-theme .owl-nav.disabled + .owl-dots {
		margin-top: 0;
	}
	.offerItem a.offerImg, .offerItem div.offerImg {
		width: 50%;
	}
	.offerContent {
		width: 50%;
	}
	#headerMenu a:after {
		display: none;
	}
	.boxImg, .boxTextBox {
		width: 100%;
		height: auto;
	}
	.boxImg img {
		width: 100%;
		height: auto;
	}
	.boxTextBox {
		padding: 30px 30px 40px;
		text-align: center;
	}
	.boxItem:nth-of-type(2n+0) .boxTextBox {
		text-align: center;	
	}
	#formContainer {
		width: 100%;
		padding-bottom: 0;
	}
	
}
@media only screen and (max-width : 600px) {
	
	main {
		padding: 10px 0;
	}
	#pemsContainer {
		padding: 0 10px;
	}
	#heroSliderContainer .owl-carousel .owl-item img {
		height: auto;
		width: 100%;
	}
	.owl-carousel .owl-item img.sliderDesktop { display: none; }
	.owl-carousel .owl-item img.sliderMobile { display: block; }
	.homeOffer {
		margin: 10px 0;
		padding: 0 10px;
	}
	.productsGalleryItem {
		padding: 0 5px;
	}
	.homeProductsGallery {
		margin: 0;
		padding: 0 5px;
	}
	.offerItem a.offerImg, .offerItem div.offerImg {
		width: 100%;
	}
	.offerItem h2 {
		margin-top: 10px;
	}
	.offerContent {
		width: 100%;
		padding-left: 0;
	}
	.offerBadge {
		width: 140px;
		height: 140px;
		left: 5px;
	}
	#footerContainer {
		padding: 20px 10px;
	}
	.offerItem {
		background-color: transparent;
		padding: 0 5px 10px;
	}
	.homeOffer {
		padding: 0 5px;
	}
	.offerContent {
		background-color: rgba(0,0,0,0.05);
		padding: 0 10px 10px;
	}
	article {
		padding: 0 10px;
	}
	.categoryItemBox:nth-of-type(3n+1) {
		clear: none;
	}
	.categoryItemBox:nth-of-type(2n+1) {
		clear: none;
	}
	.categoryItemBox {
		width: 50%;
		padding: 5px;
	}
	#categoryContainer {
		padding: 15px 5px;
	}
	#productsBackContainer {
		margin-top: 20px;
		padding: 0 10px;
	}
	.productsGallery {
		padding: 0 5px;
	}
	.boxItem {
		margin-bottom: 20px;
		padding: 0 10px;
	}
	#formContainer {
		padding: 0 10px;
	}
	#formBtn {
		margin-top: 20px;
	}
	
}
@media only screen and (max-width : 460px) {
	
	#footerContact span {
		display: block;
		text-indent: -9999px;
		overflow: hidden;
		line-height: 5px;
	}
	#pemsContainer img#sloganDesktop { display: none; }
	#pemsContainer img#sloganMobile { display: block; }
	.categoryItemBox {
		width: 100%;
	}
	#sliderTitle h1 {
		font-size: 1.2em;
		padding: 10px;
	}
	h3.categoryItemTitle {
		padding-bottom: 10px;
	}
	#heroSliderContainer .owl-carousel .owl-item img {
		height: 276px;
		width: auto;
	}
	
}
@media only screen and (max-width : 380px) {
	
}
	