/* 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: "Roboto", sans-serif;

    /* Extra Fonts to use */

    /* COLOR */
    --main-text-color: #000;
    --main-black: #000; /* var(--main-black) */
    --main-black-lighter: #262626; /* var(--main-black-lighter) */
    --main-red: #D1232A; /* var(--main-grey) */
    --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: 195px;
}