:root {
	--blue: #119fe5;
	--blue-dark: #008ad2;
	--blue-light: #1bb4ff;
	--red: #ff3c00;
}

* {
	position: relative;
}

*:focus {
	outline: none!important;
}

/* SCROLLBAR */

	/* width */
	::-webkit-scrollbar {
	  width: 15px;
	}

	/* Track */
	::-webkit-scrollbar-track {
	  background: #333;
	}

	/* Handle */
	::-webkit-scrollbar-thumb {
	  background: #999;
	  box-shadow: inset 0 0 0 3px #333;
	  cursor: n-resize;
	}

	/* Handle on hover */
	::-webkit-scrollbar-thumb:hover {
	  background: #bbb;
	}
	
/* -------------------- */

html {
	background: #fff;
	color: #000;
	height: 100%;
	overflow-x: hidden;
	overflow-y: scroll;
}

body {
	font-weight: 400;
	font-style: normal;
	font-size: 17px;
	line-height: 1.4;
	padding: 130px 0 0 0;
	margin: 0;
	box-shadow: 500px 0 #000;
}

body * {
	font-family: "Inter", sans-serif;
}

body.index {
	padding: 110px 0 0 0;
}

body *,
body *::before,
body *::after {
	transition: 0.1s;
}

body *:active,
body *:active * {
	transition: none;
}

nav {
	background: #000;
	color: #fff;
	display: block;
	height: 30px;
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	height: 70px;
	z-index: 10;
}

nav div {
	width: 1550px;
	max-width: calc(100% - 60px);
	display: block;
	margin: 0 auto;
	position: relative;
}

nav div a.logo {
	display: table;
	position: absolute;
	top: 0;
	left: 0;
	padding: 22px 0 19px 0;
}

#logo {
	width: 200px;
}

#menu {
	display: none;
}

#navigation {
	list-style: none;
	text-align: right;
	width: calc(100% - 204px);
	padding: 0;
	display: table;
	position: absolute;
	margin: 0;
	top: 0;
	right: 0;
}

#navigation li {
	display: inline;
	font-size: 16px;
	position: relative;
}
#navigation li a {
	display: table-cell;
	border-right: 1px solid #333;
	padding: 24px 20px;
	color: #fff;
	text-decoration: none;
}

#navigation li > a:hover {
	background: #222;
}
#navigation li.current > a,
#navigation li.current > a:hover {
	background: #fff;
	color: #000;
	margin-right: 1px;
}

#navigation li.category.current > a,
#navigation li.category.current > a:hover {
	margin-right: -3px;
}

#navigation li li.current > a,
#navigation li li.current > a:hover {
	margin-right: 0;
}

#navigation li:last-child a {
	border: none;
}


#navigation li ul {
    left: -51px;
    position: absolute;
    width: calc(100% + 1px);
    text-align: left;
	height: 0;
	overflow: hidden;
	padding: 0 50px;
}

#navigation li li {
	background: #333;
	display: block;
	width: 100%;
	overflow: hidden;
	margin-right: 0;
}

#navigation li li:last-child {
	box-shadow: 0 5px 10px 0 rgba(0,0,0,0.5);
	border-radius: 0 0 7px 7px;
}

#navigation li.category > a {
	padding-right: 24px;
}
#navigation li.category > a::after {
    content: '';
    display: inline-block;
    width: 7px;
    height: 7px;
    transform: rotate(45deg) translateY(-3px);
    border-bottom: 2px solid var(--blue);
    border-right: 2px solid var(--blue);
    margin-left: 10px;
}

#navigation li li a {
	border-right: none;
	border-bottom: 1px solid #444;
	padding: 15px 20px;
	display: block;
}

#navigation li li a:hover {
	background: #444;
}

#navigation li li.current > a,
#navigation li li.current > a:hover {
	background: #ddd;
}




main {
	/*width: 1300px;*/
	width: 1550px;
	max-width: calc(100% - 60px);
	margin: 0 auto;
	/*min-height: 719px;*/
}

main.wide {
	width: calc(100% - 60px);
}


body.index main.wide {
	/*min-height: 739px;*/
}

section {
}

section.category {
	padding: 10px 30px 30px 30px;
	background: #ddd;
	border-radius: 7px;
	margin-bottom: 40px;
}

section.category.plus {
	margin-top: -70px;
    padding-top: 0;
}

section.maxWidth {
	max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

section.title {
}

section.tags {
	
}
section.tags a {
	margin: 2px;
    background: #eee;
    padding: 10px 15px 8px 15px;
    text-decoration: none;
    color: #000;
    display: inline-table;
}

section.tags a:hover {
	background: #ddd;
	border-color: #ddd;
	color: #000;
}


section.tags a:active {
	background: #ddd;
	border-color: #ddd;
	transform: scale(0.94);
}
section.tags a.current,
section.tags a.current:hover,
section.tags a.current:active {
	cursor: default;
	color: #fff;
	background: #000;
	border-color: #000;
	transform: scale(1);
	font-weight: 700;
}

main > section:last-child {
	margin-bottom: -50px;
}
main.footer > section:last-child {
	margin-bottom: 0;
}


h1 {
	margin: 0 0 20px 0;
    font-size: 40px;
    font-weight: 800;
}

h2 {
	margin: 0 0 20px 0;
    font-size: 28px;
	color: var(--blue);
	font-weight: 800;
}

h2.product {
	font-size: 40px;
	color: #000;
}

h2 b {
	color: #000;
	font-weight: 800;
}

h2 small {
	font-size: 20px;
}

h3 {
	margin: 0 0 20px 0;
    font-size: 22px;
	font-weight: 800;
}


span.blue {
	color: var(--blue);
}

section > h1 {
	margin-bottom: 50px;
}

main .icons {
	margin-top: 25px;
}

section > article {
	display: inline-block;
	width: 100%;
	vertical-align: top;
	margin-right: 40px;
	margin-bottom: 40px;
	border-radius: 7px;
	overflow: hidden;
}

section > article.images {
	transition: top 0.2s;
	z-index: 1;
}

section > article.overflow {
	
}

section.col-2 > article {
	width: calc((100% - 45px) / 2);
}

section.col-3 > article {
	width: calc((100% - 90px) / 3);
}

section.col-3 > article.double,
section.col-3 > article.double.block {
	width: calc((100% - 25px) / 3 * 2);
}



section.col-4 > article {
	width: calc((100% - 135px) / 4);
}

section.category.col-4 > article.block {
	width: calc((100% - 56px) / 4);
    margin: 7px;
}

section.col-4.thick > article {
	width: calc((100% - 75px) / 4);
	margin-bottom: 25px;
}
section.col-6 > article {
	width: calc((100% - 220px) / 6);
}
section.col-8 > article {
	width: calc((100% - 175px) / 8);
	margin-right: 20px;
	margin-bottom: 20px;
	background: #eee;
}



section > article:last-child {
	margin-right: 0;
}

section.col-2 > article:nth-child(2n+2){
	margin-right: 0;
}

section.col-3 > article:nth-child(3n+3){
	margin-right: 0;
}

section.col-4 > article:nth-child(4n+4){
	margin-right: 0;
}

section.col-6 > article:nth-child(6n+6){
	margin-right: 0;
}
section.col-7 > article:nth-child(7n+7){
	margin-right: 0;
}
section.col-8 > article:nth-child(8n+8){
	margin-right: 0;
}



section.col-2 > article.block {
	width: calc((100% - 45px) / 2);
}

section.category.col-2 > article.block {
	width: calc((100% - 28px) / 2);
    margin: 7px;
}




section.col-3 > article.block {
	width: calc((100% - 80px) / 3);
}

section.category.col-3 > article.block {
	width: calc((100% - 42px) / 3);
    margin: 7px;
}



section.col-7 > article.block {
	width: calc((100% - 270px) / 7);
}

section > article.block:not(.kapcsolat) {
    box-shadow: 0 0 0 0 #ddd;
	transition: 0.12s;
}
section > article.block:not(.kapcsolat) a {
    text-decoration: none;
    background: #ddd;
    display: block;
}

section.formak > article.block:not(.kapcsolat),
section.formak > article.block:not(.kapcsolat) a {
	background: #eee;
}

section > article.block:not(.kapcsolat):hover {
	transform: scale(0.96);;
}
section > article.block:not(.kapcsolat):hover a {

}
section > article.block:not(.kapcsolat):active {
	transform: scale(1);
}


section > article.block a {
	padding: 0;
	border: none;
}

section.category > h2,
section > article.block h2 {
    text-align: center;
    padding: 12px 5px 10px 5px;
    color: #000;
    margin: 0;
    font-size: 19px;
    text-decoration: none;
    z-index: 1;
    position: relative;
    font-weight: 700;
}

section.category > article.block h2 {
   font-size: 16px;
}
section.category > article.block h2 {
	background: #eee;
}

section > article.block.kapcsolat h2 {
	text-align: left;
}

section.col-6 > article.block h2 {
	font-size: 18px;
}

section > article.block h2 i {
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
}


section > article img {
	width: 100%;
	display: inline-block;
    margin-bottom: -7px;
}

section:not(.icons) > article:not(.block):has(img):not(:has(p)) {
    /*text-align: center;*/
}


section.illatok > article {
    padding: 10px 0;
}
section.sablonok > article {
	padding: 0;
	margin-right: 25px;
}
section.illatok > article h2,
section.sablonok > article h2 {
	font-size: 16px;
	padding: 0;
	margin: 0;
	color: #000;
}
section.sablonok > article.block:not(.kapcsolat) a {
	background: #eee;
	overflow: hidden;
	padding: 10px 0;
}

section.sablonok > article h2 {
	font-size: 15px;
}
section.sablonok > article a h3 {
	text-align: center;
    padding: 10px 0;
    margin: 0;
    font-size: 25px;
}

@keyframes zoomH3 {
	0%	 {transform: scale(1);}
	50%	 {transform: scale(1.3);}
	100% {transform: scale(1);}	
}
section.sablonok > article a:hover h3 {
    transform: scale(1);
	animation-name: zoomH3;
	animation-duration: 0.3s;
	animation-iteration-count: 1;	
	color: var(--blue-dark);
}
section.illatok > article img {
	max-width: 100px;
}

section.formak > article img {
    width: 200%;
    transition: none;
    transform: translateX(0) scale(1);
    margin-bottom: 5px;
}

@keyframes zoom {
	0%	 {transform: translateX(-50%) scale(1);}
	50%	 {transform: translateX(-52.5%) scale(1.1);}
	100% {transform: translateX(-50%) scale(1);}
}

section.formak > article a:hover img {
    transform: translateX(-50%) scale(1);
	animation-name: zoom;
	animation-duration: 0.3s;
	animation-iteration-count: 1;
}

section > article .double img {
	width: 50%;
	margin-right: -5px;
}

section > article.block a img {
	border-radius: 7px;
}

main p {
	margin: 0 0 20px 0;
}

main p.gray {
	background: #eee;
}

main a {
    color: var(--blue);
    text-decoration: underline var(--blue);
    border: 3px solid #fff;
    padding: 0 2px;
    border-radius: 7px;
    margin: 0 -5px;
}
main a:hover {
	background: var(--blue);
	color: #fff;
	border: 3px solid var(--blue);
}

main .icons a {
	display: inline-block;
	font-weight: 600;
}
main .icons a:hover {
	background: rgba(0,0,0,0.07);
	border: 3px solid transparent;
	color: var(--blue-dark);
	text-decoration: none;
}

main .icons > article {
	border-radius: 2px;
}
main .icons > article:has(a:hover) {
	box-shadow: 0 0 0 15px rgba(0,0,0,0.07);
}


main ul {
	margin: 20px 0;
	padding-left: 40px;
}
main ul ul {
	margin: 5px 0;
}

main ul li {
	margin-top: 3px;
	list-style: none;
	position: relative;
}
main ul.inline > li {
	display: inline;
    margin-right: 30px;
}

main ul.multiline > li {
	margin-top: 15px;
}

main ul li::before {
	content: '•';
    color: var(--blue);
    font-size: 24px;
    line-height: 0;
    position: absolute;
    left: -24px;
    top: 10px;
}

main ul.inline > li::before {
	top: 9px;
}

.close {
	margin-bottom: 0!important;
}

table {
	width: 100%;
}

table tr th {
	border-bottom: 1px solid #ddd;
	padding: 0 10px 10px 10px;
	text-align: left;	
	font-size: 14px;
	font-weight: 700;
	color: #555;
}

table tr td {
	border-bottom: 1px solid #ddd;
	padding: 10px 15px;
	text-align: left;
	min-width: 80px;
}
table tr td.price {
	min-width: 100px;
    text-align: right;
	font-size: 20px;
}

table tbody:hover > tr > td:not(:has(h3)) {
	/*color: var(--blue);*/
}
table tbody:hover > tr > td:not(:has(h3)) * {
	transition: none;
}

table tbody:hover > tr:not(.header):hover > td:not(:has(h3)):not(:has(.button)) {
	color: var(--blue-dark);
	background: #f7f7f7;
}



table tr th:last-child,
table tr td:last-child {
	border-right: none;
}

table tr:last-child td,
table tbody:hover > tr:last-child  > td:not(:has(h3)) {
	border-bottom: none;
}


table tbody tr td:has(h3) {
	padding: 0;
	border-bottom: none;
}
table tbody tr td h3 {
    background: #eee;
	color: var(--blue-dark);	
	padding: 10px 15px;	
    margin: 25px 0 0 0;
    border-radius: 7px;
	font-size: 20px;
	font-weight: 700;
}

table tbody tr.first td h3 {
	margin-top: 0;
}

table tbody tr.last td {
	border-bottom: none;
}

table tfoot tr td {
	border: none;
	font-size: 14px;
}

.cond {
	letter-spacing: -2.5px;
}

.blue {
	color: var(--blue);
}
.underline {
	text-decoration: underline;
}
.pointer {
	cursor: pointer;
}


hr {
	border: none;
    border-top: 1px solid #ddd;
	margin: 40px 0 35px 0;
}

hr.clear {
	border: none;
	margin: 10px 0;
}
hr.clear.wide {
	margin: 25px 0;
}

hr.up {
	margin-top: 20px;
}
hr.up_ {
	margin-top: 0;
}



p:has(.button) {
	position: relative;
	height: 60px;
}

.button {
	cursor: pointer;
	text-decoration: none;
	padding: 13px 20px 17px 20px!important;
	display: table;
	background: var(--blue);
	font-weight: 700;
	font-size: 18px;
	border: none;
	color: #fff;
	border-radius: 7px;
	box-shadow: inset 0 -6px 0 var(--blue-dark), 0 4px 4px #ccc;
	position: absolute;
	margin: 0;
	top: 0;
	left; 0;
}
.button.black {
	background: #444;
	box-shadow: inset 0 -6px 0 #000, 0 4px 4px #ccc!important;
}

.button:hover {
	background: var(--blue-light);
	box-shadow: inset 0 -6px 0 var(--blue), 0 4px 4px #ccc!important;
	border: none!important;
}
.button.black:hover {
	background: #555;
	box-shadow: inset 0 -6px 0 #333, 0 4px 4px #ccc!important;
}

.button:active {
	filter: contrast(1.05);
	padding: 12px 20px 14px 20px!important;
	box-shadow: inset 0 -2px 0 var(--blue), 0 2px 2px #ccc!important;
	top: 4px;
	height: 21px;
	border: none!important;
}
.button:active {
	box-shadow: inset 0 -2px 0 #000, 0 2px 2px #ccc!important;
}

input.button:active {
	height: 48px;
	border: none!important;
}


.contact {
	list-style: none;
	padding: 0;
}

.contact li {
	display: block;
	margin: 0;
}

.contact li::before {
	display: none;
}

.contact li a,
section > article.block .contact li a {
	display: block;
	color: #000;
	text-decoration: none;
	padding: 20px;
	border-bottom: 1px solid #ddd;
	box-shadow: none;
	font-size: 17px;
}
.contact li a:hover {
	background: #eee;
	box-shadow: none;
}
.contact li a:active {
	background: #ddd;
}

.contact li a,
section > article.block .contact li a {
	border-radius: 0;
}
.contact li:first-child a,
section > article.block .contact li:first-child a {
	border-radius: 7px 7px 0 0;
}
.contact li:last-child a,
section > article.block .contact li:last-child a{
	border: none;
	border-radius: 0 0 7px 7px;
}

.contact li img {
	width: 40px;
	margin-right: 10px;
	vertical-align: sub;
}



.icons {
	font-size: 14px;
}

.icons article::before {
	position: absolute;
    font-size: 20px;
    font-weight: 800;
    color: var(--blue);
    left: calc(50% - 75px);
    top: 50px;
}
.icons article:nth-child(1)::before {
	content: '1';
}
.icons article:nth-child(2)::before {
	content: '2';
}
.icons article:nth-child(3)::before {
	content: '3';
}
.icons article:nth-child(4)::before {
	content: '4';
}
.icons article:nth-child(5)::before {
	content: '5';
}
.icons article:nth-child(6)::before {
	content: '6';
}

.icons img {
	width: 130px !important;
	display: block;
	margin: 0 auto !important;
}

footer {
    width: 100%;
    text-align: center;
    padding: 0;
    bottom: 0;
    left: 0;
    background: #000;
    color: #fff;
    z-index: 10;
    font-size: 14px;
}

footer a {
	padding: 20px;
	display: inline-block;
	margin-right: -4px;
	color: #fff;
	text-decoration: none;
	border-right: 1px solid #333;
	line-height: 21px;
}
footer a[href]:hover {
	background: #222;
}
footer a:last-child {
	border: none;
}

footer a.current {
	background: #fff;
	color: #000;	
}

footer a.current[href]:hover {
	background: #fff;
} 

footer a.icon img {
	height: 22px;
    vertical-align: bottom;
    margin-right: 5px;
}

footer a[href].icon:not(.current):hover img {
	filter: brightness(1.2);
}


#mce-EMAIL {
    width: calc(100% - 32px);
    padding: 10px 15px;
    border: 1px solid #ccc;
    background: #eee;
    border-radius: 0.33rem;	
	font-size: 16px;
}
#mce-EMAIL:hover {
     border: 1px solid #999;	
}

#mce-EMAIL:focus {
	border: 1px solid var(--blue);
}

#mce-EMAIL.error {
    border: 1px solid var(--red);
    box-shadow: inset 0 0 0 1px var(--red);
	font-weight: 700;
}

#mce-EMAIL.error::placeholder {
}

#mce-error-response {
	color: var(--red);
	font-weight: 600;
}



.left {
	text-align: left;
}
.center {
	text-align: center;
}
.right {
	text-align: right;
}





/* RESPONSIVE --------------------------- */ 


@media (max-width: 1270px) {
	
	main.footer {
		margin-top: 90px;
	}
	
	#navigation {
		display: none;
		position: fixed;
		left: 0;
		top: 70px;
		width: calc(100% - 60px);
		height: calc(100% - 130px);
		background: #111;
		padding: 30px;
		overflow: auto;
	}
	
	#navigation.open {
		display: block;
	}
	
	#navigation li {
		display: block;
	}
	
	#navigation li a {
		display: block;
		width: calc(100% - 40px);
		padding: 15px 20px;
		border-right: none;
		border-bottom: 1px solid #222;
		text-align: right;
	}
	
	#navigation li,
	#navigation li a,
	#navigation li.current > a,
	#navigation li.current > a:hover,
	#navigation li.category.current > a,
	#navigation li.category.current > a:hover {
		margin: 0;
	}
	
	#navigation li:last-child a {
		border: none;
	} 
	
	#navigation li ul {
		padding: 0;
	}
	#navigation li ul,
	#navigation li:hover ul	{
		height: auto!important;
		box-shadow: none;
		position: relative;
		width: auto;
		margin-bottom: 30px;
		left: 0;
	}
	
	#navigation li li {
		background: #333;
	}
	
	#navigation li ul li > a {
		width: calc(100% - 70px);
		padding: 15px 40px 15px 30px;
	}
	
	#navigation li.category > a	{
		padding-right: 20px;
	}
	
	#navigation li li:last-child {
		box-shadow: none;
	}
	
	
	#menu {
		display: block;
        position: absolute;		
        width: 22px;
		height: 22px;
        top: 0;
        right: -30px;
        cursor: pointer;
        padding: 24px 30px;
		background: #000;
	}
	#menu::before,
	#menu::after {
        content: '';
        display: block;
        position: absolute;
        width: 22px;
        height: 3px;
        background: #fff;
        left: 30px;
        top: 28px;
	}
	#menu::after {
		top: unset;
        bottom: 28px;
	}
	
	#menu:hover {
        background: #222;
	}
	
	#menu.open::before {
		rotate: 45deg;
		top: 34px;
	}
	#menu.open::after {
		rotate: -45deg;
		bottom: 33px;
	}
	
	body.category h1 {
		text-align: center;
	}
	
	section.category {
		width: max-content;
		margin-left: auto;
		margin-right: auto;
		padding-bottom: 1px;
	}
	
	section.category.plus {
		margin-top: -56px;
		padding-top: 15px;
	}
	
	section.col-2 > article,
	section.col-3 > article,
	section.col-3 > article.double,
	section.col-3 > article.double.block	{
		width: 100%;
		margin-bottom: 40px;
		margin-right: 0;
	}
	
	

	section.col-2 > article.block,
	section.col-3 > article.block,
	section.col-4 > article.block,
	section.category.col-2 > article.block,
	section.category.col-3 > article.block,
	section.category.col-4 > article.block	{
		width: 100%;
		max-width: 500px;
		margin: 0 auto 40px auto;
		display: table;
		text-align: center;
	}
	
	section.category.col-2 > article.block,
	section.category.col-3 > article.block,
	section.category.col-4 > article.block {
		margin-bottom: 15px;
	}	
	
	section.col-4.thick > article.block {
		margin-bottom: 25px;
	}	

	section.col-4 > article,
	section.col-4 > article.double,
	section.col-4 > article.double.block, 
	section.col-6 > article {
		width: calc(33.3333% - 42px);
		max-width: 350px;
		margin: 0 40px 40px auto;
		display: inline-block;
		text-align: center;
	}
	
	section.col-4 > article,
	section.col-4 > article.double,
	section.col-4 > article.double.block {
		width: calc(50% - 42px);
	}
	
	section.col-4 > article:nth-child(2n+2){
		margin-right: 0;
	}
	
	section.col-6 > article:nth-child(3n+3){
		margin-right: 0;
	}

	section.col-8 > article {
		width: calc(16.6667% - 22px);
		margin-right: 20px;
	}
	
	section.col-8 > article:nth-child(8n+8){
		margin-right: 0;
	}
	
	section.col-2 > article.block .contact li a,
	section.col-3 > article.block .contact li a,
	section.col-4 > article.block .contact li a,
	section.col-6 > article.block .contact li a {
		max-width: 280px;
		text-align: left;
		margin: 0 auto;
	}
	
	section.col-2 > article.double.block, 
	section.col-3 > article.double.block,
	section.col-4 > article.double.block, 
	section.col-6 > article.double.block, 
	section.col-8 > article.double.block {
		margin: 0 auto;
	}

	.small-center {
		text-align: center;
	}
	
	section > article.block.kapcsolat h2 {
		text-align: center;
	}
	
	section:not(.icons) > article:not(.block) img:not(.full) {
		width: 50%;
		margin-right: -5px;
	}
	
	.Large {
		display: none!important;
	}
}


@media (max-width: 810px) {
	footer a.icon {
		color: transparent;
		padding: 20px 15px;
        width: 42px;
        height: 22px;
        overflow: hidden;
        margin-bottom: -25px;
		transition: background 0.15s;
	}
	
	footer a.icon img {
		margin-right: 0;
	}
}

@media (max-width: 700px) {
	
	section.col-6 > article {
		width: calc(50% - 42px);
	}
	
	section.col-6 > article:nth-child(3n+3){
		margin-right: 40px;
	}	
	section.col-6 > article:nth-child(2n+2){
		margin-right: 0;
	}
	
	section.col-8 > article {
		width: calc(25% - 22px);
		margin-right: 20px;
	}
	
	section.col-8 > article:nth-child(8n+8),
	section.col-8 > article:nth-child(6n+6){
		margin-right: 20px;
	}
	
	section.col-8 > article:nth-child(4n+4){
		margin-right: 0;
	}
	
	
	section:not(.icons) > article:not(.block) img:not(.full) {
		width: 100%;
		margin-right: 0;
	}		
	
}

@media (max-width: 640px) {
	section.category {
		width: unset;
	}
}

@media (max-width: 560px) {
	
	body {
		font-size: 16px;
	}
	
	nav div {
		max-width: calc(100% - 40px);
	}
	
	#menu {
		padding: 24px;
		right: -20px;
	}
	
	#menu::before,
	#menu::after {
		left: 24px;
	}	
	
	main {
		max-width: calc(100% - 40px);
	}
	
	section.col-2 > article.block .contact li a,
	section.col-3 > article.block .contact li a,
	section.col-4 > article.block .contact li a {
		max-width: 260px;
	}
	
	h1 {
		font-size: 30px;
	}
	
	h2 {
		font-size: 24px;
	}
	h2.product {
		font-size: 30px;
	}
	h3 {
		font-size: 20px;
	}
	
	.contact li img {
		width: 25px;
		margin: 0 7px 0 0;
	}
	.contact li a,
	section > article.block .contact li a	{
		padding: 20px 15px;
	}	
	
	section.col-8 > article {
		width: calc(33.3333% - 22px);
	}	
	section.col-8 > article:nth-child(6n+6),
	section.col-8 > article:nth-child(4n+4){
		margin-right: 20px;
	}
	section.col-8 > article:nth-child(3n+3){
		margin-right: 0;
	}	
	
	footer a.icon {
		padding: 20px 10px;
	}
	
	.Medium {
		display: none!important;
	}

}

@media (max-width: 430px) {
	section.col-6 > article {
		max-width: 220px;
	}	
	section.col-6 > article,
	section.col-6 > article:nth-child(3n+3),
	section.col-6 > article:nth-child(2n+2) {
		width: 100%;
		margin-right: 0;
	}	
	
	section.col-8 > article {
		width: calc(50% - 22px);
	}

	section.col-8 > article:nth-child(4n+4),
	section.col-8 > article:nth-child(3n+3){
		margin-right: 20px;
	}

	section.col-8 > article:nth-child(2n+2){
		margin-right: 0;
	}
	
	section.category > h2,
	section > article.block h2	{
		font-size: 16px;
	}
	
	
	footer a:not(.icon) {
		font-size: 0;
		border-right: none;
		padding: 20px 0;
	}
	footer a.icon {
		margin-bottom: -31px;
	}
}