:root {
	--font-serif: 'Crimson Text', sans-serif; /* 400 */
	--font-sans: 'Sofia Sans', serif; /* 1..1000 */
}
*, *:before, *:after {
	box-sizing: border-box;
}

/* css view transitions */
@view-transition {
	navigation: auto;
}
::view-transition-old(root),
::view-transition-new(root) {
	animation-duration: 0.4s;
}

html.overscroll-lock,
html.overscroll-lock body {
	/*position: fixed;*/
	overflow: hidden !important;
	height: 100% !important;
}
html, body {
	overflow-x: hidden; /* aos bugfix */
}
body {
	margin: 0;
	padding: 0;
	color: #000;
	font-size: 100%;
	line-height: 1.6rem;
	font-weight: 300;
	font-family: var(--font-sans);
	background: #fff;
}
#wrap {
	padding-top: 210px;
	-webkit-transition: all 0.25s ease-in-out;
	-moz-transition: all 0.25s ease-in-out;
	-ms-transition: all 0.25s ease-in-out;
	-o-transition: all 0.25s ease-in-out;
	transition: all 0.25s ease-in-out;
}
img, svg {
	max-width: 100%;
}
input[type="text"],
input[type="email"],
input[type="submit"],
select,
textarea {
	filter: none;
	outline: none;
	
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
	border-radius: 0;
}
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active {
	-webkit-box-shadow: 0 0 0 30px #fff inset !important;
}
a {
	color: #000;
	cursor: pointer;
	outline: none;
	-webkit-transition: all 0.25s ease-in-out;
	-moz-transition: all 0.25s ease-in-out;
	-ms-transition: all 0.25s ease-in-out;
	-o-transition: all 0.25s ease-in-out;
	transition: all 0.25s ease-in-out;
}
h1, h2, h3, h4, h5, h6 {
	font-weight: 700;
	font-family: var(--font-serif);
	line-height: 2rem;
}
.rel {
	position: relative;
}
.flex-container {
	display: flex;
}
/*.grid-container { --> conflict xy grid (benaming)
	display: grid;
}*/
.block {
	display: block;
}
.text-right {
	text-align: right;
}
.text-center {
	text-align: center;
}
.w100 {
	display: block;
	width: 100%;
}

/* !BUTTONS */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	min-height: 40px;
	
	margin: 1rem 0;
	padding: .2rem 1rem;
	
	color: #000;
	background-color: #fff;
	border: 2px solid #000;
	
	font-family: var(--font-sans);
	font-size: 1rem;
	font-weight: 500;
	text-transform: uppercase;
	text-decoration: none;
	cursor: pointer;
	letter-spacing: 1px;
	transition: all 0.3s ease;
}
.no-touchevents .btn:hover {
	color: #fff;
	background-color: #000;
}
.btn.small {
	min-height: 20px;
	font-size: .8rem;
	padding: .2rem .7rem;
}

/* !HEADER */
header {
	position: fixed;
	z-index: 100;
	top: 0;
	width: 100%;
	height: 210px;
	padding: 1rem 0;
	
	background-color: #fff;
	/*border-bottom: 1px solid #eee;*/
	-webkit-transition: all 0.25s ease-in-out;
	-moz-transition: all 0.25s ease-in-out;
	-ms-transition: all 0.25s ease-in-out;
	-o-transition: all 0.25s ease-in-out;
	transition: all 0.25s ease-in-out;
}
header a {
	display: inline-block;
	text-decoration: none;
}
header div.logo {
	display: inline-block;
}
header div.logo svg {
	display: block;
	width: 314px;
	height: 146px;
	margin: 0 auto;
	-webkit-transition: all 0.25s ease-in-out;
	-moz-transition: all 0.25s ease-in-out;
	-ms-transition: all 0.25s ease-in-out;
	-o-transition: all 0.25s ease-in-out;
	transition: all 0.25s ease-in-out;
}
header nav ul {
	margin: 0;
	padding: 0;
	list-style: none;
	text-align: right;
}
/* lang */
header nav.lang ul li {
	display: inline-block;
}
header nav.lang ul li:not(:first-child)::before {
	content: "\2022";
	content: '/';
	color: #222;
	padding-right: 3px;
	font-family: var(--font-sans);
	font-weight: 200;
}
header nav.lang li a {
	color: #222;
	font-family: var(--font-sans);
	font-weight: 200;
}
header nav.lang li a.active {
	text-decoration: underline;
	text-underline-offset: 4px;
}
/* main */
header nav.main {
	margin-bottom: 1.2rem;
	-webkit-transition: all 0.25s ease-in-out;
	-moz-transition: all 0.25s ease-in-out;
	-ms-transition: all 0.25s ease-in-out;
	-o-transition: all 0.25s ease-in-out;
	transition: all 0.25s ease-in-out;
}
header nav.main ul li {
	display: inline-block;
	margin-left: 2rem;
}
header nav.main ul li:first-child {
	margin-left: 0;
}
header nav.main ul li a {
	display: inline-block;
	position: relative;
	overflow: hidden;
	padding: 0.4rem 0 20px;
	font-size: 1.1rem;
	line-height: 1rem;
	font-weight: 400;
	font-family: var(--font-sans);
	letter-spacing: 1px;
	text-decoration: none;
	text-transform: uppercase;
}
header nav.main ul li a::after {
	content: url('../img/nav-underline.svg');
	width: 86px;
	height: 14px;
	
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	transition: all 0.25s ease-in-out;
	opacity: 0;
}
header nav.main ul li.active a::after,
.no-touchevents header nav.main ul li a:hover::after {
	opacity: 1;
}

/* !Mobile nav */
.hamburger {
	display: none;
	width: 30px;
	height: 25px;
	position: absolute;
	z-index: 200;
	top: 18px;
	right: 20px;
	-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;
	-webkit-transition: top 0.16s ease-in-out;
	-moz-transition: top 0.16s ease-in-out;
	-o-transition: top 0.16s ease-in-out;
	transition: top 0.16s ease-in-out;
	cursor: pointer;
}
.hamburger span {
	display: block;
	position: absolute;
	height: 3px;
	width: 100%;
	background: #000;
	border-radius: 9px;
	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;
	z-index: 200;
}
.hamburger.open span {
	left: 0;
	z-index: 200;
}
.hamburger span:nth-child(1) {
	top: 2px;
}
.hamburger span:nth-child(2) {
	top: 12px;
}
.hamburger span:nth-child(3) {
	top: 22px;
}
.hamburger.open span:nth-child(1) {
	top: 14px;
	-webkit-transform: rotate(135deg);
	-moz-transform: rotate(135deg);
	-o-transform: rotate(135deg);
	transform: rotate(135deg);
}
.hamburger.open span:nth-child(2) {
	opacity: 0;
	left: -60px;
}
.hamburger.open span:nth-child(3) {
	top: 14px;
	-webkit-transform: rotate(-135deg);
	-moz-transform: rotate(-135deg);
	-o-transform: rotate(-135deg);
	transform: rotate(-135deg);
}
.mobilenav {
	display: none;
	opacity: 0;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 100;
	background: rgba(255, 255, 255, 0.96);
	margin: 0;
	padding: 0;
	text-align: center;
	margin: 0 auto;
	margin-top: 60px;
	overflow: scroll;
	-webkit-overflow-scrolling: touch;
	padding-bottom: 200px; /* owv scroll long*/
}
.mobilenav .first,
.mobilenav .second {
	list-style: none;
	margin: 0;
	padding: 0;
}
.mobilenav .first a,
.mobilenav .second a {
	text-decoration: none;
}
.mobilenav .first {
	margin-top: -1rem;
}
.mobilenav .first li a {
	opacity: 0;
	display: block;
	width: 100%;
	color: #000;
	font-family: var(--font-sans);
	font-size: 1.2rem;
	font-weight: 400;
	padding: 10px 0;
	text-transform: uppercase;
}

/* mobile lang */
.mobilenav .language {
	position: relative;
	margin: 0 auto;
	margin-top: 80px;
	text-align: center;
	z-index: 101;
}
.mobilenav .language ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.mobilenav .language li {
	display: inline;
}
.mobilenav .language li a {
	display: inline-block;
	font-family: var(--font-sans);
	font-size: 0.9rem;
	width: 40px;
	height: 40px;
	font-weight: 500;
	text-transform: uppercase;
	color: #fff;
	text-decoration: none;
	padding: 6px 10px;
	padding-top: 8px;
	transition: all .3s ease-out;
	border-radius: 50%;
	line-height: 1.8;
	background: #bbb;
	color: #fff;
	letter-spacing: 0.5px;
}
.mobilenav .language li a.active,
.no-touchevents .mobilenav .language li a:hover {
	background: #000;
	color: #fff;
}

/* !CONTENT */
section {
	padding: 4rem 0 0;
}
table,
section p,
section ul {
	font-size: 1.2rem;
}
.grid-container.full .center,
.grid-container.fluid.reduced .center {
	max-width: 70%;
	margin: 0 auto;
}

/* !horizontal-scroll -> mouse scroll + grab (via js) */
.horizontal-scroll {
	width: 100%;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-behavior: smooth; /* of niet, geen snapping, maar dan wat schokkendere js-grabbing */
	scrollbar-width: none;
}
.horizontal-scroll::-webkit-scrollbar {
	display: none;
}
.no-touchevents .horizontal-scroll:hover{
	cursor: col-resize;
	cursor: grab;
}
.no-touchevents .horizontal-scroll.is-dragging {
	cursor: grabbing;
}
.track {
	display: flex;
	gap: 10px;
	padding: 20px 0;
	padding-left: 0;
	width: max-content;
}
.horizontal-scroll .item {
	flex: 0 0 auto;
}
.horizontal-scroll .item img,
.horizontal-scroll .item video {
	display: block;
	height: 50vh;
	width: auto;
	/* want drag-to-scroll via js, dan ook: */
	pointer-events: none;
	user-select: none;
}

/* !od_accordion */
.od_accordion {}
.od_accordion > h3 {display: flex; font-size: 1rem; padding: 15px 0; margin: 0; cursor: pointer; border-top: 1px solid #ccc;}
.od_accordion > h3 > div:first-child {flex: 0 0 30px; text-align: center;}
/* .od_accordion > h3:last-of-type {border-bottom: 1px solid #ccc; margin-bottom: 15px;} */
.no-touchevents .od_accordion > h3:hover,
.od_accordion > h3.open {}
.od_accordion > h3 .fa {}
.od_accordion div.content {display: none; margin-left: 30px;}
/* .od_accordion > h3.open + div {display: block; } */ /* beter via jquery, als er init al een h3.open is, dan geen flash na 1ste klik */
.od_accordion p {margin-top: 0;}

/* !Overlays/Modals */
.overlay {
	display: none;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 9999;
	background-color: rgba(0,0,0,0.6);
}
.overlay .overlay-inner {
	position: absolute;
	top: 30%;
	left: 50%;
	transform: translate(-50%, -30%);
	width: 80%;
	height: 80%;
	overflow: auto;
	background-color: #fff;
	padding: 0;
	
	height: auto;
	max-height: 90%;
}
@media screen and (max-width: 40em) /* <= 640 */
{
	.overlay .overlay-inner {
		width: 90% !important;
		height: 90% !important;
		top: 50% !important;
		left: 50% !important;
		transform: translate(-50%, -50%) !important;
	}
}
.overlay .overlay-inner .overlay-header {
	padding: .5rem 1rem;
	text-align: right;
	line-height: 1rem;
	border-bottom: 1px solid #eee;
}
.overlay .overlay-inner .overlay-header a.close {
	display: inline-block;
	width: 40px;
	height: 40px;
	background: transparent url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1024 1024"><path fill="%23000000" d="m466.752 512l-90.496-90.496a32 32 0 0 1 45.248-45.248L512 466.752l90.496-90.496a32 32 0 1 1 45.248 45.248L557.248 512l90.496 90.496a32 32 0 1 1-45.248 45.248L512 557.248l-90.496 90.496a32 32 0 0 1-45.248-45.248L466.752 512z"/><path fill="%23000000" d="M512 896a384 384 0 1 0 0-768a384 384 0 0 0 0 768zm0 64a448 448 0 1 1 0-896a448 448 0 0 1 0 896z"/></svg>') no-repeat center center;
	-webkit-transition:.25s ease-in-out;-moz-transition:.25s ease-in-out;-ms-transition:.25s ease-in-out;-o-transition:.25s ease-in-out;transition:.25s ease-in-out;
	background-size: 100%;
	opacity: 0.2;
}
.no-touchevents .overlay .overlay-inner .overlay-header a.close:hover {
	 transform: rotate(180deg);
	 transition-duration: .4s;
}
.overlay .overlay-inner .overlay-content {
	padding: 1rem;
}
.overlay-inner p {
	font-size: 1rem;
	line-height: 1.5rem;
}

/* !img grid - toggle overlay */
.grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: .9375rem;
	margin: 2rem 0;
}
.grid .item {
	aspect-ratio: 1/1;
	overflow: hidden;
	background: #eee;
}
.grid a {
	display: block;
	width: 100%;
	height: 100%;
	position: relative;
	text-decoration: none;
	color: inherit;
}
.grid a img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	transition: all 0.25s ease-in-out;
	/*filter: grayscale(1);*/
}
.no-touchevents .grid a:hover img {
	/*filter: grayscale(0);*/
	/*transform: scale(1.1);*/
}
/* img grids - overlay */
.grid .item .overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(255, 255, 255, 0.75);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.25s ease-in-out;
	pointer-events: none;
}
.no-touchevents .grid .item a:hover .overlay {
	opacity: 1;
}
.grid .item .overlay-content {
	line-height: 1.4rem;
	text-align: center;
	padding: 20px;
	transform: translateY(10px);
	transition: transform 0.3s ease-in-out;
}
.no-touchevents .grid .item a:hover .overlay-content {
	transform: translateY(0);
}
.grid .item .overlay-content h3 {
	margin: 0 0 10px 0;
	font-size: 1.8rem;
	font-weight: 600;
}
.grid .item .overlay-content p {
	margin: 0;
	font-size: 1rem;
}

/* !Home */
section#home {
	max-width: 700px;
	margin: 0 auto;
	padding-top: 2rem;
}
#home h1 {
	font-size: 1.4rem;
	font-weight: 600;
	line-height: 1.6rem;
}

/* !Vakmanschap */
#craftsmanship .slick-dots li button:before {
	color: rgba(204,204,204,0.8);
}
#craftsmanship .slick-dots li.slick-active button:before {
	color: #fff;
}
#craftsmanship .technical {
	margin: 4rem 0 3rem;
}
#craftsmanship .technical h2 {
	font-family: var(--font-sans);
	font-size: 2rem;
	margin-bottom: 0;
}
#craftsmanship .technical h3 {
	font-size: 1.2rem;
}
#craftsmanship .technical p {
	font-size: 1.1rem;
}
#craftsmanship .technical .cell {
	padding-right: 3rem;
}
#craftsmanship .material .item {
	padding: 4rem 0;
}

/* !Proces */
#process {
	padding-top: 0;
}
#process hr {
	height: 0;
	border: 0;
	border-top: 1px solid #000;
	max-width: 100px;
	margin: 0 auto;
}
/* Proces > horizontal scroll, licht afwijken van de home */
#process .horizontal-scroll {
	padding-left: 10%;
}
#process .horizontal-scroll .track {
	gap: 2rem;
	width: 100%;
}
#process .horizontal-scroll .item {
	flex: 0 0 320px; /* fixed width */
	flex: 0 0 19vw; /* fixed width, beter voor media-queries */
}
#process .horizontal-scroll .item a.trigger-modal {
	display: block;
}
.no-touchevents #process .horizontal-scroll .item a.trigger-modal:hover {
	opacity: 0.8;
}
#process .horizontal-scroll .item img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 6/7;
	object-fit: cover;
}
.step-1 {margin-top: 0;}
.step-2 {margin-top: 80px;}
.step-3 {margin-top: 0;}
.step-4 {margin-top: 120px;}
.step-5 {margin-top: 0;}
.step-6 {margin-top: 80px;}
.step-7 {margin-top: 0;}
.step-8 {margin-top: 120px;}

#process h2,
#process h3 {
	font-family: var(--font-sans);
}
#process h2 {
	font-size: 2.4rem;
	margin: 2rem 0 1rem;
}
#process h3 {
	margin: 0;
	font-size: 1.15rem;
	line-height: 1.4rem;
	font-weight: 500;
}
/* process overlays/modals */
.overlay.process .overlay-inner .overlay-header {
	display: none;
	text-align: center;
	border-bottom: none;
}
.overlay.process h2 {
	font-size: 1.6rem;
	font-weight: 600;
	font-family: var(--font-sans);
	margin: 2rem 0;
}
.overlay.process h2 span {
	display: block;
	margin-right: 5px;
	font-size: 2.4rem;
	font-weight: 700;
}
.overlay.process img {
	display: block;
}

/* !Cases overview */
section.cases {
	padding-top: 0;
}
.no-touchevents .cases.overview .grid a:hover img {
	transform: scale(1.1);
}

/* !Cases detail */
.cases.detail a.back {
	font-size: 1rem;
	font-family: var(--font-sans);
	text-transform: uppercase;
	text-decoration: none;
}
.cases.detail .grid-detail {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: .9375rem;
}
.cases.detail .grid-detail > div:nth-child(1) {
	grid-row: 1;
	grid-column: 1/3;
	align-content: center;
}
.cases.detail .grid-detail > div:nth-child(2) {
	grid-row: 1;
	grid-column: 3/5;
}
.cases.detail .grid-detail > div:nth-child(3) {
	grid-row: 2;
	grid-column: 1/5;
}
.cases.detail .grid-detail img.w100 {
	aspect-ratio: 1;
	object-fit: cover;
	object-position: center;
}
.cases.detail .thumbs {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: .9375rem;
}
.cases.detail table.specs th,
.cases.detail table.specs td {
	text-align: left;
	vertical-align: top;
	padding: .3rem 0;
}
.cases.detail table.specs th {
	padding-right: 40px;
	font-family: var(--font-sans);
}

/* !FAQ */
#faq .od_accordion h3 {
	font-size: 1.2rem;
	line-height: 1.4rem;
}
#faq .od_accordion p {
	font-size: 1.1rem;
}

/* !Contact */
#contact h2 {
	margin: 0;
	font-size: 1.3rem;
}
#contact h2 em {
	font-weight: 500;
}
#contact h2 + p {
	margin-top: 0;
}
#contact p {
	font-size: 1.1rem;
}
#contact a:not(.underline) {
	text-decoration: none;
}
.no-touchevents #contact a:hover {
	text-decoration: underline;
}

/* !FOOTER */
footer {
	font-size: 1rem;
	font-weight: 300;
	font-family: var(--font-sans);
	padding: 4rem 0 2rem;
}
footer div.inner {
	padding: 1rem 0;
	border-top: 1px solid #707070;
}
footer h3 {
	font-family: var(--font-sans);
	font-size: 1rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 1px;
}
footer p {
	line-height: 1.3rem;
}
footer a {
	text-decoration: none;
}
.no-touchevents footer a:not(.btn):hover {
	text-decoration: underline;
	text-underline-offset: 3px;
}
footer .flex-container.data {
	justify-content: flex-end;
}
footer .btn {
	margin: 0;
}
footer .social a {
	display: inline-block;
}
footer .social a svg {
	width: 32px;
	height: 32px;
	border-radius: 20%;
}


/* !MEDIA */

/* Large and up */
@media screen and (min-width: 64em) /* >= 1024 */
{
	/*body {color: blue;}*/
	
	#craftsmanship .material .item:first-child {
		padding-top: 0;
	}
}
/* Medium */
@media screen and (max-width: 63.99em) /* <= 1023 */
{
	/*body {color: red;}*/
	
	.grid-container.fluid.reduced {max-width: 100%;}
	
	header nav {
		display: none;
	}
	.hamburger {
		display: block;
	}
	#wrap {
		padding-top: 60px;
	}
	header {
		height: 60px;
		padding: 0;
	}
	header div.logo svg {
		width: 130px;
		height: 60px;
	}
	
	section {
		padding: 3rem 0;
	}
	.grid-container.full .center,
	.grid-container.fluid.reduced .center {
		max-width: 100%;
		padding: 0 .9375rem;
		margin-bottom: 1rem;
	}
	.grid-container.fluid.reduced .center {
		padding: 0;
	}
	/* img grids - overlay */
	.grid .item .overlay-content h3 {
		font-size: 1.2rem;
		line-height: 1.3rem;
		margin-bottom: 5px;
	}
	.grid .item .overlay-content p {
		font-size: 0.9rem;
		line-height: 1rem;
	}
	
	#craftsmanship .technical {
		margin: 1rem 0 0;
	}
	#craftsmanship .material .item {
		padding: 2rem 0;
	}
	#craftsmanship .material .item:nth-child(3) .text-right {
		text-align: left;
	}
	#craftsmanship .material .item:nth-child(3) .text-right h2 {
		margin-top: 0;
	}
	#process h2 {
		margin: 1rem 0;
	}
	/* Proces > horizontal scroll, licht afwijken van de home */
	#process .horizontal-scroll {
		padding-left: 0;
	}
	#process .horizontal-scroll .item {
		flex: 0 0 33vw;
	}
	.overlay.process h2 {
		margin: 1rem 0;
	}
	
	footer {
		padding: 2rem 0;
	}
	footer .flex-container.data {
		display: block;
	}
}
/* Small */
@media screen and (max-width: 40em) /* <= 640 */
{
	/*body {color: green;}*/
	
	section {
		padding: 2rem 0;
	}
	table,
	section p {
		font-size: 1.1rem;
		line-height: 1.4rem;
	}
	/* img grids - overlay */
	.grid {
		grid-template-columns: repeat(2, 1fr);
	}
	
	section#home {
		padding-top: 0;
	}
	#home h1 {
		font-size: 1.2rem;
	}
	#home .horizontal-scroll .item img,
	#home .horizontal-scroll .item video {
		height: 40vh;
	}
	#craftsmanship .technical .cell {
		padding-right: 0;
	}
	/* Proces > horizontal scroll, licht afwijken van de home */
	#process .fa-arrows-left-right {
		display: none;
	}
	#process .horizontal-scroll .track {
		flex-direction: column;
	}
	#process .horizontal-scroll .item {
		flex: auto;
		margin-top: 0;
	}
	
	
	.cases.detail .grid-detail > div:nth-child(1) {
		grid-row: 1;
		grid-column: 1/5;
	}
	.cases.detail .grid-detail > div:nth-child(2) {
		grid-row: 2;
		grid-column: 1/5;
	}
	.cases.detail .grid-detail > div:nth-child(3) {
		grid-row: 3;
		grid-column: 1/5;
	}
	.cases.detail .thumbs {
		grid-template-columns: repeat(2, 1fr);
	}
	
	
}