/* 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 */

@font-face {
	font-family: 'Segoe';
	src: url('../inc/fonts/segoeuithis.ttf')  format('truetype');
}
@font-face {
	font-family: 'SegoeBold';
	src: url('../inc/fonts/segoeuithibd.ttf')  format('truetype');
}


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

    /* Main Families */
    /* --main-text-fam: 'Segoe', sans-serif;
    --main-title-fam: 'SegoeBold', sans-serif; */
	--main-text-fam: 'Manrope', sans-serif;
    --main-title-fam: 'Manrope', sans-serif;

    /* COLOR */
    --main-text-color: #0a0a0a;
    --main-black: #0a0a0a; /* var(--main-black) */
	--main-red: #d3052b; /* var(--main-red) */
	--main-grey: #e6e7e8; /* var(--main-grey) */
    --main-white: #fff; /* var(--main-white) */

	--red-gradient: linear-gradient(90deg, #d3052b 0%, #d3052b 100%); /* var(--red-gradient) */


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

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