/* Dev Presets */
img {
	max-width:100%;
	display: block;
}
ul {
	list-style:disc inside;
}
ol {
	list-style:decimal inside;
}
a,
[role="button"] {
	text-decoration:none;
	transition:all ease-in-out 250ms;
	cursor:pointer;
}
a:hover {
	color: inherit;
}
h1,h2,h3,h4,h5,h6,p {
	margin:0;
}
.hidden {
	display:none;
}
.overflow-hidden {
	overflow:hidden;
}
.transition-250ms,
.hover-opacity,
.hover-scale,
.hover-scale-child img {
	transition:all ease-in-out 250ms;
}
.hover-opacity:hover {
	opacity:.8;
}
.hover-scale:hover,
.hover-scale-child:hover img {
	transform:scale(1.05);
}
.grid {
	display: grid;
}
.grid-2-columns {
	grid-template-columns: repeat(2,1fr);
}
.grid-3-columns {
	grid-template-columns: repeat(3,1fr);
}
.grid-4-columns {
	grid-template-columns: repeat(4,1fr);
}
.flex {
	display:flex;
}
.align-center {
	align-items:center;
}
.align-start {
	align-items:flex-start;
}
.align-end {
	align-items:flex-end;
}
.justify-between {
	justify-content:space-between;
}
.justify-center {
	justify-content:center;
}
.justify-evenly {
	justify-content:space-evenly;
}
.justify-around {
	justify-content:space-around;
}
.justify-end {
	justify-content:flex-end;
}
.direction-column {
	flex-direction:column;
}
.relative {
	position:relative;
}
.object-cover {
	object-fit:cover;
}
.flex-1 {
	flex:1;
}
.spacer {
	opacity:0;
	visibility:hidden;
}
.icon {
	display:flex;
	line-height:1;
	pointer-events:none;
}
.icon svg {
	height:100%;
	width:100%;
}
.list-none {
	list-style:none;
}
.height-100 {
	height:100%;
}
.width-100 {
	width:100%;
}
.height-100v {
	height:100vh;
}
.width-100v {
	width:100vw;
}
.abs-center {
	position:absolute;
	top:50%;
	left:50%;
	transform:translate(-50%,-50%);
}
.abs-extend {
	position:absolute;
	top:0;
	left:0;
	height:100%;
	width:100%;
}
.z-1 {
	z-index:1;
}
.text-center {
	text-align:center;
}
@media(max-width:1150px) {
	.tablet-direction-column {
		flex-direction:column
	}
}
@media(max-width:680px) {
	.mobile-direction-column {
		flex-direction:column
	}
}
/* End Dev Presets */