@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
    font-family: "Inter", serif;
    font-optical-sizing: auto;
    font-weight: 400;
	line-height: 125%;
    font-style: normal;
	vertical-align: baseline;
	box-sizing: border-box;
	color: #323232;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
a {text-decoration: none;}
img{
	box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
	border-radius: 12px;
}
/* FLEX */
.d-flex {
	display: flex
}

.flex-column {
flex-direction: column;
}

.justify-content-start {
justify-content: flex-start;
}

.justify-content-end {
justify-content: flex-end;
}

.justify-content-between {
justify-content: space-between;
}

.justify-content-around {
justify-content: space-around;
}

.justify-content-center {
justify-content: center;
}

.align-items-center {
align-items: center;
}

.align-items-start {
align-items: flex-start;
}

.align-items-end {
align-items: self-end;
}

.flex-nowrap {
flex-wrap: nowrap;
}

.flex-wrap {
flex-wrap: wrap;
}

.text-center {
text-align: center;
}

.text-start {
text-align: left;
}
.text-end {
	text-align: right;
	}
