/*
	MOBILE FIRST, larger devices come with media queries.
*/
	@font-face {
		font-family:PPNeueMontreal;
		src: url("../fonts/PPNeueMontreal-Thin.woff2") format("woff2"); 
		font-style:normal;
		font-weight:200;
	}
	@font-face {
		font-family:PPNeueMontreal;
		src: url("../fonts/PPNeueMontreal-Light.woff2") format("woff2"); 
		font-style:normal;
		font-weight:300;
	}
	@font-face {
		font-family:PPNeueMontreal;
		src: url("../fonts/PPNeueMontreal-Book.woff2") format("woff2");
		font-style:normal;
		font-weight:400;
	}
	@font-face {
		font-family:PPNeueMontreal;
		src: url("../fonts/PPNeueMontreal-Regular.woff2") format("woff2"); 
		font-style:normal;
		font-weight:450;
	}
	@font-face {
		font-family:PPNeueMontreal;
		src: url("../fonts/PPNeueMontreal-Medium.woff2") format("woff2"); 
		font-style:normal;
		font-weight:530;
	}
	@font-face {
		font-family:PPNeueMontreal;
		src: url("../fonts/PPNeueMontreal-Bold.woff2") format("woff2");
		font-style:normal;
		font-weight:800;
	}

/*
	PROJECT SPECIFIC
*/

body{
	margin: 0;
	padding: 0;
	background-color: #ffffff;
}


.page{
	margin: 0 auto;
	padding: 0;

	font-family: 'PPNeueMontreal', 'Helvetica', 'Arial', sans-serif;
	font-size: 16px;
	font-weight: 400;
	background-color: #fff;

	/*max-width: 1440px;*/
}

.row{
	display: flex;
	flex-wrap: wrap;

	margin-left: -.5rem;
	margin-right: -.5rem;
}

.nowrap{
	flex-wrap: nowrap;
}

.h100{
	height: 100%;
}

.col,
.col-1,
.col-2,
.col-3,
.col-4,
.col-6,
.col-12{
	width: auto;

	padding-left: .5rem;
	padding-right: .5rem;
}

.col{
	flex: 0 0 auto;
	width: auto;
}

.col-1{
	flex: 0 0 8.333%;
    max-width: 8.333%;
}

.col-2{
	flex: 0 0 16.666%;
    max-width: 16.666%;
}

.col-3{
	flex: 0 0 25%;
    max-width: 25%;
}

.col-4{
	flex: 0 0 33.333%;
    max-width: 33.333%;
}

.col-6{
	flex: 0 0 50%;
    max-width: 50%;
}

.col-10{
	flex: 0 0 83.3334%;
    max-width: 83.3334%;
}

.col-12{
	flex: 0 0 100%;
    max-width: 100%;
}

.col-auto{
	flex: 0 0 auto;
    max-width: 100%;
}

.align-items-center{
	align-items: center;
}

.align-items-start{
	align-items: flex-start;
}

.align-items-end{
	align-items: flex-end;
}

.justify-content-start{
	justify-content: flex-start;
}

.justify-content-center{
	justify-content: center;
}

.justify-content-between{
	justify-content: space-between;
}

.justify-content-end{
	justify-content: flex-end;
}

.mx-0{
	margin-left: 0!important;
	margin-right: 0!important;
}

.p-0{
	padding-left: 0!important;
	padding-right: 0!important;
}

.br{
	display: none;
}

.page *,
.page *:before,
.page *:after{
	box-sizing: border-box;
}


.img{
	display: flex;
	flex-wrap: wrap;

	width: 100%;
}

.img.lazy{
	opacity: 0;
	transition: opacity 500ms ease-in-out;
}

.img.lazy.loaded{
	opacity: 1;
}

.main-container{
	padding: 0;
	width: 100%;

	font-size: 1rem;
	color: #000000;
}

.m-hidden{
	display: none;
}



@media screen and (min-width: 1024px) {
		
	.m-hidden{
		display: unset;
	}

}

@media screen and (min-width: 1440px) {
		

	.max-width-limiter{
		margin: 0 auto;
		max-width: 1440px;
	}


}
