/** Caricamento dei fonts **/
/* jost-regular - latin */
@font-face {
	font-family: 'Jost';
	font-style: normal;
	font-weight: 400;
	src: url('../fonts/jost-v14-latin-regular.eot'); /* IE9 Compat Modes */
	src: local(''),
	url('../fonts/jost-v14-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
	url('../fonts/jost-v14-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
	url('../fonts/jost-v14-latin-regular.woff') format('woff'), /* Modern Browsers */
	url('../fonts/jost-v14-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
	url('../fonts/jost-v14-latin-regular.svg#Jost') format('svg'); /* Legacy iOS */
}

/* jost-800 - latin */
@font-face {
	font-family: 'Jost';
	font-style: normal;
	font-weight: 800;
	src: url('../fonts/jost-v14-latin-800.eot'); /* IE9 Compat Modes */
	src: local(''),
	url('../fonts/jost-v14-latin-800.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
	url('../fonts/jost-v14-latin-800.woff2') format('woff2'), /* Super Modern Browsers */
	url('../fonts/jost-v14-latin-800.woff') format('woff'), /* Modern Browsers */
	url('../fonts/jost-v14-latin-800.ttf') format('truetype'), /* Safari, Android, iOS */
	url('../fonts/jost-v14-latin-800.svg#Jost') format('svg'); /* Legacy iOS */
}

/* jost-300italic - latin */
@font-face {
	font-family: 'Jost';
	font-style: italic;
	font-weight: 300;
	src: url('../fonts/jost-v14-latin-300italic.eot'); /* IE9 Compat Modes */
	src: local(''),
	url('../fonts/jost-v14-latin-300italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
	url('../fonts/jost-v14-latin-300italic.woff2') format('woff2'), /* Super Modern Browsers */
	url('../fonts/jost-v14-latin-300italic.woff') format('woff'), /* Modern Browsers */
	url('../fonts/jost-v14-latin-300italic.ttf') format('truetype'), /* Safari, Android, iOS */
	url('../fonts/jost-v14-latin-300italic.svg#Jost') format('svg'); /* Legacy iOS */
}

/* jost-italic - latin */
@font-face {
	font-family: 'Jost';
	font-style: italic;
	font-weight: 400;
	src: url('../fonts/jost-v14-latin-italic.eot'); /* IE9 Compat Modes */
	src: local(''),
	url('../fonts/jost-v14-latin-italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
	url('../fonts/jost-v14-latin-italic.woff2') format('woff2'), /* Super Modern Browsers */
	url('../fonts/jost-v14-latin-italic.woff') format('woff'), /* Modern Browsers */
	url('../fonts/jost-v14-latin-italic.ttf') format('truetype'), /* Safari, Android, iOS */
	url('../fonts/jost-v14-latin-italic.svg#Jost') format('svg'); /* Legacy iOS */
}

/* jost-800italic - latin */
@font-face {
	font-family: 'Jost';
	font-style: italic;
	font-weight: 800;
	src: url('../fonts/jost-v14-latin-800italic.eot'); /* IE9 Compat Modes */
	src: local(''),
	url('../fonts/jost-v14-latin-800italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
	url('../fonts/jost-v14-latin-800italic.woff2') format('woff2'), /* Super Modern Browsers */
	url('../fonts/jost-v14-latin-800italic.woff') format('woff'), /* Modern Browsers */
	url('../fonts/jost-v14-latin-800italic.ttf') format('truetype'), /* Safari, Android, iOS */
	url('../fonts/jost-v14-latin-800italic.svg#Jost') format('svg'); /* Legacy iOS */
}



body {
	background-color: #fff;
	font-family: "Jost", sans-serif;
	margin: 0;
	padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	line-height: 1.2;
	font-weight: 700;
	font-family: "Jost", serif;
	color: #000;
}


/* 
Formula per ridemensionamento responsive del font:
calc(minFonf + (maxFont - minFont) * ((100vw - minWidth) / (maxWidth - minWidth))); 
*/
h1 {
	font-size: calc(32px + (48 - 32) * ((100vw - 360px) / (1920 - 360)));
}
h2 {
	font-size: calc(28px + (42 - 28) * ((100vw - 360px) / (1920 - 360)));
}
h3 {
	font-size: calc(24px + (32 - 24) * ((100vw - 360px) / (1920 - 360)));
}
h4 {
	font-size: calc(22px + (28 - 22) * ((100vw - 360px) / (1920 - 360)));
}
h5 {
	font-size: calc(20px + (24 - 20) * ((100vw - 360px) / (1920 - 360)));
}

p,
li,
table,
td,
tr,
th,
span,
label,
input,
a {
	font-size: 18px;
	color: #000;
	line-height: 1.8em;
	text-decoration: none;
	font-family: "Jost", sans-serif;
}

a.button:hover, a.btn:hover {
	background-color: #A6703D;
	color: #fff !important;
}
a.button, a.btn {
	font-weight: bold;
	color: #fff !important;
	padding: 20px 50px;
	display: inline-block;
	text-transform: uppercase;
	text-align: center;
	margin-bottom: 20px;
	background: #f27d39;
	background: -webkit-linear-gradient(to right, #91368f 0, #e7297c 50%, #f27d39 100%);
	background: -moz-linear-gradient(to right, #91368f 0, #e7297c 50%, #f27d39 100%);
	background: -ms-linear-gradient(to right, #91368f 0, #e7297c 50%, #f27d39 100%);
	background: linear-gradient(to right, #91368f 0, #e7297c 50%, #f27d39 100%);
	border-radius: 10px;
	font-size: 20px;

}

