/* FIRST LOAD FONTS */

/* Font Declaration for custom Fonts - EXAMPLE !!! DELETE OR CHANGE WITH A CUSTOM FONT !!! */
/* In Case of Google Fonts Delete Area And load them from header.php */


/* ROOT VARIABLES */
:root {
    /* FONTS */

    /* Main Families */
    --main-fam: 'Manrope', sans-serif;

    /* Extra Fonts to use */

    /* COLOR */
    --main-text-color: #000;
    --main-black: #000; /* var(--main-black) */
	--main-light-blue: #219ebc; /* var(--main-light-blue) */
    --main-yellow: #ffb703; /* var(--main-grey) */
    --main-orange: #fb8500; /* var(--main-orange) */
    --main-white: #fff; /* var(--main-white) */

	/* EASINGS */
	--main-easing: all 0.6s cubic-bezier(0.5, 1, 0.89, 1); /* var(--main-easing) */

	/* TOP PADDING */
	--top-pad: 150px;
}