* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	/* border: 1px dashed #ddd; */
}

img{
	max-width: 100%;
}

ul,
li {
	list-style: none;
}

.absolute{
	position: absolute;
}

.text-primary{
	color: var(--main-color);
}

.text-center{
	text-align: center;
}

.text-white{
	color: #fff;
}

.relative{
	position: relative;
}

.d-grid {
	display: grid;
}

.grid-3{
	grid-template-columns: repeat(3, 1fr);
}

.grid-4{
	grid-template-columns: repeat(4, 1fr);
}

.d-flex {
	display: flex;
}

.d-inline-block{
	display: inline-block;
}

.flex-column{
	flex-direction: column;
}

.flex-1{
	flex: 1;
}

.gap-05 {
	gap: 0.5em;
}

.gap-1 {
	gap: 1em;
}

.gap-2 {
	gap: 2em;
}

.gap-3 {
	gap: 3em;
}

.gap-4 {
	gap: 4em;
}

.align-center {
	align-items: center;
}

.align-stretch {
	align-items: stretch;
}

.align-self-center{
	align-self: center;
}

.align-self-start{
	align-self: flex-start;
}

.justify-center{
	justify-content: center;
}

.justify-between {
	justify-content: space-between;
}

.ml-auto{
	margin-left: auto;
}

.mt-auto{
	margin-top: auto;
}

.filter-gray{
	filter: grayscale(1);
}

.p-1{
	padding: 1em;
}

.p-2{
	padding: 2em;
}

.pb-1{
	padding-bottom: 1em;
}

.link{
	color: var(--main-color);
}

.box-shadow{
	box-shadow: 5px 5px 20px 0 rgba(0,0,0,0.2);
}

.br-1{
	border-radius: 1em;
}

.w-50 {
	width: calc(50% - 2px);
}

.border-bottom {
	border-bottom: 1px solid #E9EDFF;
}

input, textarea {
	font-family: inherit;
	background-color: #fff;
	padding: 1em 0;
}

.field-wrapper, .field-wrapper > * {
	width: 100%;
}

.transition-150{
	transition: all 150ms ease-in-out;
}