/* FORMATTING GLOBAL*/
/* white text, dark backgorund for title*/
.white-cont-title {
	background-color: var(--global-color-9);
	color: var(--base-3);
	display: inline-block;
	padding: 5px 10px;
	font-weight: bold;
}

/* padding for mobile view */
.mob-pad {
	padding: 0 25px;
}
 
/* float in animation */
.moveTrans {
	opacity: 0;
	transform: translate(-80px, 0%);
}
.moveTransAnim {
	opacity: 1;
	transform: translate(0px, 0%);
	transition: 0.75s ease-in-out;
}
