.box-shadow{
	-webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.25);
	-moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.25);
	box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.25);
}
.card-shadow{
	box-shadow: rgba(0, 0, 0, 0.10) 0px 4px 14px 0px, rgba(0, 0, 0, 0.10) 0px 1px 2px 0px;
}
.fmg-btn-wrapper {
    text-align: left;
    margin: 10px 0;
}
.fmg-btn {
    display: flex;
	justify-content: center;
	align-items: center;
    color: #fff;
    background-color: #0c9afa;
    transition: all 0.3s ease;
    padding: 13px 25px;
    text-decoration: none;
	text-align: center;
	font-weight: 600;
	font-family: var(--main-font);
	border-radius: 4px;
	box-shadow: rgba(0, 0, 0, 0.10) 0px 4px 14px 0px, rgba(0, 0, 0, 0.10) 0px 1px 2px 0px;
}
.fmg-btn:hover {
    background-color: #31a9f9;
    color: #fff;
    transform: scale(1.01);
    text-decoration: none;
}
.fmg-btn:active, .fmg-btn:focus {
    color: #ccc;
}
.fmg-submit{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 50px;
	border: none;
	border-radius: 12px;
	font-size: 100%;
	font-family: var(--body-font);
	font-weight: 600;
	cursor: pointer;
	transition: 0.4s;
	margin-top: 20px;
	color: white;
	background-color: green;
	box-shadow: 0px 0px 2px 0px rgba(0,0,0,0.25);
}
.fmg-submit:hover{
	text-decoration: none;
	background-color: lightgreen;
	transform: scale(1.1);
}
.text-shadow{
	text-shadow: 0 0 2px #000;
}
.title-shadow{
	text-shadow: -5px 5px 3px rgba(0,0,0,0.5);
}
.title-bg, .title-bg span{
	font-size: 52px !important;
	font-weight: 900;
	line-height: 1;
	font-family: var(--heading-font);
	text-transform: uppercase;
}
.title-md, .title-md span{
	font-size: 30px;
	font-weight: 900;
	line-height: 1;
	font-family: var(--heading-font);
	text-transform: uppercase;
}
.title-sm{
	font-size: 24px;
	font-weight: 900;
	line-height: 1;
	font-family: var(--heading-font);
	text-transform: uppercase;
}
.sub-title{
	font-size: 20px;
	font-weight: bold;
	line-height: 1;
	font-family: var(--sub-heading-font);
	text-transform: uppercase;
}
.classic-text{
	font-size: 16px !important;
	line-height: 1.5 !important;
	font-family: var(--body-font);
	font-weight: normal;
}