* {
	box-sizing: border-box;	
}

html {
	height: 100%;
}

body {
	background:#ffffff;
	margin:0px;
	padding:0px;
	font-family:'Oswald', sans-serif;
	font-size:12px;
  min-height: 100%;
	color:#000000;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
	margin:0px;
	padding:0px;
	width:100%;
}

img {  
	border-style: none;
	padding:0px;
	margin:0px;
}

ul {
	padding-left:0px;
	margin:0px;
	list-style:none;
}

.clear {
	clear:both;
	font-size:0px;
	margin:0px;
	padding:0px;
	height:0px;
	display:block;
	width:0px;
}

.content {
	max-width:1296px;
	margin:0px auto;
	width:94%;
}

.bgBlack {
	background:#000000;
}

.bgWhite {
	background:#ffffff;
}

.bgOrange {
	background:#f58220;
}

.bgGray {
	background:#e8e8e8;
}

.bgGrayDark {
	background:#666666;
}

.clWhite {
	color:#ffffff;
}

.clBlack {
	color:#000000;
}

.clOrange {
	color:#f58220;
}

.clGray {
	color:#e8e8e8;
}

.clGrayDark {
	color:#666666;
}

.taR {
	text-align:right;
}

.taC {
	text-align:center;
}

.w50 {
	width:50%;
	display:inline-block;
}

.w33 {
	width:33%;
	display:inline-block;
}

.pb20 {
	padding-bottom:20px;
}

@media screen and (max-width: 550px) {
	.w33 {
		width:100%;
	}
}

/*********************************************************************/
.header {
	position:fixed;
	left:0px;
	top:0px;
	width:100%;
	height:60px;
	line-height:60px;
	box-shadow:3px 0px 5px 0px #666;
	z-index:11;
}

.mainLogo {
	margin-top:5px;
	display:inline-block;
	vertical-align:top;
	height:55px;
	float:left;
}


header ul {
	float:right;
	line-height:60px;
}

header ul li {
	display:inline-block;
	padding:0px 15px;
}

header ul li a {
	color:#ba611d;
	text-transform:uppercase;
	font-size:1.4em;
	position:relative;
	line-height: 60px;
	display: inline-block;
	text-decoration:none;
	-webkit-transition: color 0.3s ease 0s, border-color 0.3s ease 0s, background-color 0.3s ease 0s;
	transition: color 0.3s ease 0s, border-color 0.3s ease 0s, background-color 0.3s ease 0s;
}

header ul li a:after {
	content:' ';
	border-bottom:3px solid #ba611d;
	width:0%;
	position:absolute;
	display:inline-block;
	bottom:10px;
	left:50%;
	-webkit-transition: width 0.3s ease 0s, left 0.3s ease 0s;
	transition: width 0.3s ease 0s, left 0.3s ease 0s;
}

header ul li.active a:after,
header ul li:hover a:after {
	width:100%;
	left:0%;
}

header .esza_logo {
	position:fixed;
	top:60px;
	right:0px;
	height:150px;
	line-height:150px;
	//width:90px;
}

header .esza_logo img {
	height:150px;
}

.wrapper {
	min-height:100vh;
	padding-top:60px;
	position:relative;
}

.wrapper > section {
	padding-bottom:280px;
}

.nav-button {
	float: right;
	width: 30px;
	height: 24px;
	position: relative;
	margin-top: 22px;
	cursor: pointer;
	display:none;
}

.nav-button span {
	float: left;
	width: 100%;
	height: 4px;
	background: #ba611d;
	margin-bottom: 2px;
	position: relative;
}

@media screen and (max-width: 550px) {
	.wrapper > section {
		padding-bottom:310px;
	}
}

@media screen and (max-width: 1024px) {
	.nav-button {
		display:inline-block;
	}
	
	header ul {
		position:absolute;
		max-width:320px;
		right:0px;
		background:#ffffff;
		line-height:45px;
		display:none;
		top:60px;
	}
	
	header ul.active {
		display:block;
	}

	header ul li {
		display:block;
	}

	header ul li a {
		line-height:45px;
	}

	header ul li a::after {
		display:none;
	}
	
	header .esza_logo {
		height:95px;
		line-height:95px;
	}

	header .esza_logo img {
		height:95px;
	}
}

@media screen and (max-width: 380px) {
	header .esza_logo {
		display:none;
	}
}

/**********************************************************************/

.prodContent {
	font-size:0px;
	padding:30px 0px 0px 0px;
}

.prodContent h1 {
	font-size:36px;
	margin-top:0px;
}

.prodBlock {
	width:20%;
	vertical-align:top;
	display:inline-block;
	font-size:14px;
	margin:1% 2.5%;
	text-align:center;
	text-decoration:none;
	-webkit-transition: box-shadow 0.3s ease 0s, transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
	transition: box-shadow 0.3s ease 0s, transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
}

.prodBlock:hover {
	-webkit-transform:scale(1.1);
	transform:scale(1.1);
	box-shadow:0px 3px 5px 0px #666;
}

.prodBlock .imgHolder {
	height:0px;
	overflow:hidden;
	width:90%;
	padding-bottom:90%;
	position:relative;
	margin:10px 5% 10px 5%;
}

.prodBlock img {
	display:inline-block;
	position: absolute;
  top: 0;
  left: 0;
  bottom:0;
  right:0;
  max-width: 100%;
  max-height: 100%;
  height:100%;
  width:100%;
  object-fit:contain;
}

.prodText {
	padding:20px 0px;
	font-size:16px;
}

@media screen and (max-width: 768px) {
	.prodBlock {
		width:28%;
	}
}

@media screen and (max-width: 481px) {
	.prodBlock {
		width:45%;
		margin:4% 2.5%;
	}
}

/**********************************************************************/

footer {
	padding:20px 0;
	font-size:0px;
	position:absolute;
	bottom:0px;
	width:100%;
	height:230px;
}

footer .w33 div {
	margin:5%;
}

footer .w33 a {
	display:block;
	padding:10px;
	border-bottom:1px solid #e0e0e0;
	font-size:16px;
	text-decoration:none;
}

footer .taC {
	font-size:14px;
	margin-top:20px;
}

@media screen and (max-width: 550px) {
	footer {
		height:250px;
	}
	
	footer .w33 div {
		margin:0;
	}
}

/**********************************************************************/
.breadcrumbHolder {
	padding-top:20px;
}

.breadcrumb {
	height:40px;
	line-height:40px;
	font-size:20px;
	padding-left:20px;
}

.contTitle {
	margin:0px;
	font-size:2.8em;
	padding:10px 0px 0px 15px;
}

.listNoDataRow {
	padding:30px 0px;
	font-size:2em;
}

.listDataRow {
	display:table;
	width:100%;
	margin:10px 0px;
}

.listDataRow .typeHolder {
	display:table-cell;
	width:50px;
	text-align:center;
	height:60px;
	line-height:60px;
	vertical-align:middle;
}

.listDataRow .typeHolder img {
	vertical-align:middle;
	height:50px;
}

.listDataRow .textHolder {
	display:table-cell;
	height:60px;
	line-height:60px;
	font-size:1.3em;
	padding-left:10px;
	padding-right:10px;
	max-width:100px;
	overflow:hidden;
	white-space:nowrap;
	text-overflow:ellipsis;
}

.contProdContent {
	padding:15px;
	font-size:18px;
	margin-top:15px;
	
}

.fs0 {
	font-size:0px;
}

.contProdContent p {
	margin-top:0px;
}

.contProdContent img {
	max-width:98%;
	max-height:98%;
	margin:0px 1% 1% 1%;
	float:left;
}

@media screen and (max-width: 800px) {
	.contProdContent img {
		max-width:97%;
		margin:0px 1% 1% 1%;
	}
}

.newsHolder {
	line-height: 1.4em;
	border-bottom: 1px solid #e0e0e0;
	padding: 30px 20px;
	font-size: 16px;
}

.newsImg {
	width: 240px;
	text-align: center;
	float: left;
	position: relative;
}

.newsImg img {
	max-width:200px;
}

.newsText {
	margin-left: 240px;
}

.newsTitle {
	margin-bottom: 10px;
	font-size:20px;
}

.newsLeader {
	font-size:16px;
}
