/* Global */
*, *::before, *::after {
    box-sizing: border-box;
    background-repeat: no-repeat;
}

html, body {
	position: relative;
	width: 100%;
	height: 100%;
}
body {
	padding: 0;
	margin: 0;
	font-family: 'Work sans', sans-serif;
	font-size: 16px;
	font-weight: 500;
	color: #636363;
	line-height: 28px;
	background-color: #FAFAFA;
}

header, section, footer {
	margin-top: 4rem;
	overflow: hidden;
}
footer {
	padding-bottom: 32px;
}
@media screen and (max-width: 980px) {
	footer {
		padding-bottom: 106px;
	}
}

h1, h2, h3, h4, h6 {
	padding: 0;
	margin: 0;
	color: #1E1D1D;
}

h1, h2 {
	font-size: 68px;
	line-height: 76px;
}
h3 {
	font-size: 36px;
	line-height: 54px;
}
h4 {
	font-size: 28px;
	line-height: 42px;
}
h6 {
	font-size: 16px;
	line-height: 24px;
}
@media screen and (max-width: 768px) {
	h1, h2 {
		font-size: 52px;
		line-height: 64px;
	}
	h3 {
		font-size: 28px;
		line-height: 42px;
	}
	h4 {
		font-size: 24px;
		line-height: 36px;
	}
	h6 {
		font-size: 16px;
		line-height: 24px;
	}
}

p {
	margin: 0;
	line-height: 28px;
}

img,
video {
	display: inherit;
	max-width: 100%;
	height: auto;
}

ul {
	display: inline-block;
	padding: 0;
	margin: 0;
	list-style: none;
}
ul > li {
	display: inline-block;
	margin: 0;
	overflow: hidden;
}

a {
	color: #636363;
	text-decoration: none;
}

span + .material-* {
	font-size: 18px;
}

label {
	display: block;
	margin: 5px;
	font-size: 12px;
	color: #1E1D1D;
	text-transform: uppercase;
}

strong {
	color: #1E1D1D;
}

/* Aligns & floats */

.t-center {text-align: center;}
.t-left {text-aling: left;}
.t-right {text-align: right;}
.t-underline {text-decoration: underline;}

.left {
	float: left;
}
.right {
	float: right;
}

.inline {
	display: inline-block!important;
}

/* Layout */

.container {
	max-width: 1280px;
	padding-left: 16px;
	padding-right: 16px;
	margin: 0 auto;
}
@media screen and (max-width: 1280px) {
	.container {
		max-width: 980px;
		padding-left: 16px;
		padding-right: 16px;
	}
}
@media screen and (max-width: 980px) {
	.container {
		max-width: 768px;
		padding-left: 16px;
		padding-right: 16px;
	}
}
@media screen and (max-width: 768px) {
	.container {
		max-width: 100%;
		padding-left: 8px;
		padding-right: 8px;
	}
}

.flex {
	display: flex;
}
.flex-beetween {
	justify-content: space-between;
	align-items: center;
}

.cols {
	display: flex;
	flex-wrap: wrap;
}

.cols:has(> .p-1) {
	margin-left: -4px;
	margin-right: -4px;
}
.cols:has(> .p-2) {
	margin-left: -8px;
	margin-right: -8px;
}
.cols:has(> .p-3) {
	margin-left: -16px;
	margin-right: -16px;
}
.cols:has(> .p-4) {
	margin-left: -32px;
	margin-right: -32px;
}

[class^="col-"] {
 	position: relative;
 }

.col-1 {
	width: calc((100% / 12) * 1);
}
.col-2 {
	width: calc((100% / 12) * 2);
}
.col-3 {
	width: calc((100% / 12) * 3);
}
.col-4 {
	width: calc((100% / 12) * 4);
}
.col-5 {
	width: calc((100% / 12) * 5);
}
.col-6 {
	width: calc((100% / 12) * 6);
}
.col-7 {
	width: calc((100% / 12) * 7);
}
.col-8 {
	width: calc((100% / 12) * 8);
}
.col-9 {
	width: calc((100% / 12) * 9);
}
.col-10 {
	width: calc((100% / 12) * 10);
}
.col-11 {
	width: calc((100% / 12) * 11);
}
.col-12 {
	width: calc((100% / 12) * 12);
}
@media screen and (max-width: 980px) {
	.col-m-1 {
		width: calc((100% / 12) * 1);
	}
	.col-m-2 {
		width: calc((100% / 12) * 2);
	}
	.col-m-3 {
		width: calc((100% / 12) * 3);
	}
	.col-m-4 {
		width: calc((100% / 12) * 4);
	}
	.col-m-5 {
		width: calc((100% / 12) * 5);
	}
	.col-m-6 {
		width: calc((100% / 12) * 6);
	}
	.col-m-7 {
		width: calc((100% / 12) * 7);
	}
	.col-m-8 {
		width: calc((100% / 12) * 8);
	}
	.col-m-9 {
		width: calc((100% / 12) * 9);
	}
	.col-m-10 {
		width: calc((100% / 12) * 10);
	}
	.col-m-11 {
		width: calc((100% / 12) * 11);
	}
	.col-m-12 {
		width: calc((100% / 12) * 12);
	}
	.col-m-dissable {
		display: none;
	}
}
@media screen and (max-width: 768px) {
	.col-s-1 {
		width: calc((100% / 12) * 1);
	}
	.col-s-2 {
		width: calc((100% / 12) * 2);
	}
	.col-s-3 {
		width: calc((100% / 12) * 3);
	}
	.col-s-4 {
		width: calc((100% / 12) * 4);
	}
	.col-s-5 {
		width: calc((100% / 12) * 5);
	}
	.col-s-6 {
		width: calc((100% / 12) * 6);
	}
	.col-s-7 {
		width: calc((100% / 12) * 7);
	}
	.col-s-8 {
		width: calc((100% / 12) * 8);
	}
	.col-s-9 {
		width: calc((100% / 12) * 9);
	}
	.col-s-10 {
		width: calc((100% / 12) * 10);
	}
	.col-s-11 {
		width: calc((100% / 12) * 11);
	}
	.col-s-12 {
		width: calc((100% / 12) * 12);
	}
	.col-s-dissable {
		display: none;
	}
}

.mt-1 {
	margin-top: 4px;
}
.mt-2 {
	margin-top: 8px;
}
.mt-3 {
	margin-top: 16px;
}
.mt-4 {
	margin-top: 32px;
}
.mt-5 {
	margin-top: 64px;
}
.mt-6 {
	margin-top: 128px;
}
.mr-1 {
	margin-right: 4px;
}
.mr-2 {
	margin-right: 8px;
}
.mr-3 {
	margin-right: 16px;
}
.mr-4 {
	margin-right: 32px;
}
.mr-5 {
	margin-right: 64px;
}
.mr-6 {
	margin-right: 128px;
}
.mb-1 {
	margin-bottom: 4px;
}
.mb-2 {
	margin-bottom: 8px;
}
.mb-3 {
	margin-bottom: 16px;
}
.mb-4 {
	margin-bottom: 32px;
}
.mb-5 {
	margin-bottom: 64px;
}
.mb-6 {
	margin-bottom: 128px;
}
.ml-1 {
	margin-left: 4px;
}
.ml-2 {
	margin-left: 8px;
}
.ml-3 {
	margin-left: 16px;
}
.ml-4 {
	margin-left: 32px;
}
.ml-5 {
	margin-left: 64px;
}
.ml-6 {
	margin-left: 128px;
}

.p-1 {
	padding: 4px;
}
.p-2 {
	padding: 8px;
}
.p-3 {
	padding: 16px;
}
.p-4 {
	padding: 32px;
}

.b {
	border: 2px solid #DDDDDD;
	border-radius: 4px;
}
.b-t {
	border-top: 2px solid #DDDDDD;
}
.b-r {
	border-right: 2px solid #DDDDDD;
}
.b-b {
	border-bottom: 2px solid #DDDDDD;
}
.b-l {
	border-left: 2px solid #DDDDDD;
}

/* Forms & buttons */

.form-item {
	display: block;
	width: 100%;
	padding: 10px;
	margin: 5px 0;
	font-family: 'Work sans', sans-serif;
	font-size: 16px;
	font-weight: 600;
	line-height: 24px;
	border: 2px solid #DDDDDD;
	border-radius: 4px;
}

.button {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	padding: 4px 25px;
	gap: 8px;
	font-size: 12px;
	color: #1E1D1D;
	text-transform: uppercase;
	line-height: 36px;
	border: 2px solid #DDDDDD;
	border-radius: 25px;
	cursor: pointer;
}
.button.button--solid {
	color: #ffffff;
	border-color: #1E1D1D;
	background-color: #1E1D1D;
}
.button.button--transparent {
	border-color: transparent;
	background-color: transparent;
}

/* Style */

.brand img {
	max-width: 120px;
}

@media screen and (max-width: 980px) {
	.brand img {
		margin-top: 16px;
	}
}

.nav {
	display: inline-block;
}
.nav a {
	margin: 0 16px;
}
.nav a.active,
.nav a:hover,
.nav a:active,
.nav a:focus {
	color: #1E1D1D;
}
@media screen and (max-width: 980px) {
	.nav {
		display: none;
	}
	.nav.active {
		display: block;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		padding: 35vh 0 0;
		background-color: #ffffff;
		z-index: 1;
	}
	.nav > li {
		display: block;
	}
	.nav > li > a {
	    display: block;
	    padding: 24px 16px;
		margin: 0 16px;
	    font-size: 28px;
	    text-align: right;
	}

}
.nav-mobile {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	border-top: 1px solid #DDDDDD;
	background-color: #ffffff;
}
@media screen and (max-width: 980px) {
	.nav-mobile {
		display: flex;
		z-index: 2;
	}
}
.nav-mobile > li {
	width: 33.3333%;
	text-align: center;
}
.nav-mobile > li a {
	display: inline-block;
	padding: 16px 0;
	font-size: 12px;
	color: #1E1D1D;
	text-transform: uppercase;
	line-height: 18px;
}

.header-wrap {
	padding: 4rem 0;
}

.header-wrap .subtitle img {
	float: left;
	margin-right: 16px;
}
@media screen and (max-width: 768px) {
	.header-wrap .subtitle img {
		float: inherit;
		margin: -42px auto 16px;
	}
	.header-wrap .subtitle p {
		padding: 0 16px;
		text-align: center;
	}
}

.sitebar ul li {
	display: block;
	padding-bottom: 18px;
}

.tags {
	position: absolute;
    top: 20px;
    left: 20px;
}
.tags > li {
    padding: 2px 8px;
    font-size: 14px;
    color: #1E1D1D;
    border-radius: 4px;
	background-color: #ffffff;
}

.badge {
    display: inline-block;
    padding: 0px 8px;
    font-size: 14px;
    color: #1E1D1D;
    border-radius: 4px;
	border: 1px solid #000;
}

.gallery {
	margin: 0 -16px;
}
.gallery__item {
	width: 100%;
	height: 420px!important;
	margin: 16px;
}

.form {
	padding: 4rem 0;
	border-radius: 4px;
	background-color: #EEEEEE;
}

footer img {
	max-height: 24px;
}