
/*- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
/*- - - - - - - - - - - PHARUS STANDARD CUSTOM CSS - - - - - - - - - - - */
/*- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */




/*------ Center Bottom Bar ------*/  

#footer-info {
	float: none;
	text-align:center;
}



/*ALIGNING*/


/*VERTICAL ALIGN COLUMNS IN A ROW*/
/*add in row to CSS Class : vertical-align*/
.vertical-align {display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
flex-wrap: wrap;
}

/*- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */


/*REVERSE COLUMN STACKING ORDER ON MOBILE*/
/*add in row to class : reverse-columns-mobile*/
@media (max-width:980px) {
	.reverse-columns-mobile {
		display: flex;
		flex-direction: column-reverse;
	}
}


/*CENTER ALIGN TEXT ON MOBILE*/
/*add in section, row or module to class : center-text-mobile*/

@media (max-width:980px) {
	.center-text-mobile,
	.center-text-mobile .et_pb_text_inner,
	.center-text-mobile .et_pb_social_media_follow {
		text-align: center!important;
	}
}

/*- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */

