body {
	font-family: "Zalando Sans", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f4f4f4;
    color: #333446;
	font-size: 16px;
}

a { text-decoration: none; }

ul, li {
	list-style: none;
	margin: 0;
	padding: 0;
}

h1 {
	font-size: 50px;
	font-weight: 800;
}

h2 {
	font-size: 48px;
}

h3 {
	font-size: 40px;
}

h4 {
	font-size: 32px;
}

h1, h2, h3, h4, h5 {
	margin: 0;
	padding: 0;
	font-family: "DynaPuff", system-ui;
}

p { margin: 0; padding: 0; }

/* HEADER */

header {
	
}

header .wrapper {
	display: flex;
	padding-top: 10px;
	padding-bottom: 10px;
}

header .wrapper .logo {
	width: 200px;
}

header .wrapper .logo img {
	width: 100%;
}

header .wrapper nav {
	margin-left: auto;
}

header .wrapper nav ul {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}

header .wrapper nav ul li {
	position: relative;
}

header .wrapper nav ul li a {
	text-decoration: none;
	font-weight: 600;
	transition: .2s;
}

.products {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.products .item {
	display: flex;
	align-items: flex-start;
	background-color: #fff;
	padding: 20px;
}

.products .item .preview {
	width: 40%;
}

.products .item .details {
	flex: 1;
}

.products .item .details h2 {
	font-size: 20px;
}

.pt50 { padding-top: 50px !important; }
.pt100 { padding-top: 100px !important; }
.pt150 { padding-top: 150px !important; }
.pb50 { padding-bottom: 50px !important; }
.pb100 { padding-bottom: 100px !important; }
.pb150 { padding-bottom: 150px !important; }
.mb15 { margin-bottom: 15px !important; }
.mb30 { margin-bottom: 30px !important; }
.mb50 { margin-bottom: 50px !important; }
.mb20 { margin-bottom: 20px !important; }
.mt20 { margin-top: 20px !important; }
.mt30 { margin-top: 30px !important; }
.mt50 { margin-top: 50px !important; }
.g-6 { --bs-gutter-x: 4rem; }
iframe { height: 750px; }

@media (min-width: 0px) and (max-width: 991px) {
	
	header .wrapper nav {
		display: none;
	}
	
	.m-mt20 { margin-top: 20px !important; }
	.m-mt30 { margin-top: 30px !important; }
	
}

@media (min-width: 1200px) {
	
}