.flex{
	display: flex;
}

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

.flex-col{
	flex-direction: column;
}

.gap-y-8{
	row-gap:2rem;
}

.py-10{
	padding-top: 10px;
	padding-bottom: 10px;
}





.grid{
	display: grid;
}

.grid-cols-2{
	grid-template-columns: repeat(2, minmax(0,1fr));
}

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

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

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

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

.col-span-full{
	grid-column-end: -1;
	grid-column-start: 1;
}

.w-full{
	width: 100%;
}

.p-4{
	padding: 16px;
}

.p-2{
	padding: 8px;
}

.py-1{
	padding-top: 4px;
	padding-bottom: 4px;
}

.pt-3{
	padding-top: 12px;
}

.py-3{
	padding-top: 12px;
	padding-bottom: 12px;
}

.px-4{
	padding-left: 16px;
	padding-right: 16px;	
}

.px-2{
	padding-left: 8px;
	padding-right: 8px;		
}

.mt-4{
	margin-top: 16px;
}


.font-light{
	font-weight: 300;
}

.font-normal{
	font-weight: normal;
}

.font-semibold{
	font-weight: 600;
}

.font-bold{
	font-weight: bold;
}

.text-xs{
	font-size: 12px;
}

.text-lg{
	font-size: 18px;
}

.text-xl{
	font-size: 20px;
}

.text-2xl{
	font-size: 24px;
}

.text-3xl{
	font-size: 30px;
}

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

.uppercase{
	text-transform: uppercase;
}

.text-white{
	color: white;
}

.bg-white{
	background-color: white;
}

.bg-blue-900{
	background-color: #051937;
}

.rounded-md{
	border-radius: 6px;
}

.border-t-2{
	border-top-width: 2px;
	border-top-style: solid;
}

.border-blue-200{
	border-color: #e7efff;
}

.hidden{
	display: none;
}

@media (width >= 48rem)
{
	.md\:flex-row{
		flex-direction: row;
	}
	
	.md\:grid {
		display:grid
	}
	
	.md\:hidden {
		display:none;
	}
}
