.d-md-flex{
	display:flex;
}
.d-lg-flex{
	display:flex;
}
.d-none{
	display:none;
}
.justify-content-between{
	justify-content: space-between;
}
.justify-content-center{
	justify-content: center;
}
.align-items-center{
	align-items: center;
}
.text-red {color: #d00000;}

.col {
    display: flex;
    padding: 10px;
}

.w-100{
    width: 100%;
}

.w-60{
    width: 60%;
}
.w-80{
    width: 80%;
}
.gap-10{
	gap:10px;
}

.flex-column{
	flex-direction: column;
}