/* Fonts
–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––– */
@import url(https://fonts.bunny.net/css?family=bebas-neue:400);

@font-face {
	font-family: 'Bicubik Regular';
	src: url('../fonts/Bicubik.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Suisse Intl';
	src: url('../fonts/SuisseIntl-Regular.woff2') format('woff2'),
		 url('../fonts/SuisseIntl-Regular.woff') format('woff');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Suisse Intl';
	src: url('../font/SuisseIntl-SemiBold.woff2') format('woff2'),
		 url('../fonts/SuisseIntl-SemiBold.woff') format('woff');
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Suisse Intl';
	src: url('../fonts/SuisseIntl-Black.woff2') format('woff2'),
		 url('../fonts/SuisseIntl-Black.woff') format('woff');
	font-weight: 900;
	font-style: normal;
	font-display: swap;
}

.font-bebasNeue {
	font-family: 'Bebas Neue', display;
}

.font-bicubik {
	font-family: 'Bicubik Regular', display;
}

.font-suisseIntl {
	font-family: 'Suisse Intl', display;
}


/* Base Styles
–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––– */
html {
	font-size: 100%;
}

body {
	font-family: 'Suisse Intl', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
	font-size: 1em;
	font-weight: 400;
	color: #1a1a1a;
}

/* 1024px */
@media (max-width: 64em) {

	body {
		font-size: 0.9em;
	}

}


/* Typography
–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––– */
h1,
h2,
h3,
h4,
h5 {
	margin: 0;
	font-family: inherit;
	font-weight: bold;
}

h1 {
	margin-bottom: 0.5em;
	font-size: 2.5em;
	line-height: 1.1;
}

h2 {
	margin-top: 1.5em;
	font-size: 2em;
	line-height: 1.175;
}

h3 {
	margin-top: 1.5em;
	font-size: 1.75em;
	line-height: 1.225;
}

h4 {
	margin-bottom: -0.5em;
	font-size: 1.25em;
	line-height: 1.4;
}

h5 {
	margin-bottom: -1em;
	font-size: 1em;
	line-height: 1.6;
}

p, ul, ol {
	margin: 1em 0;
}

small {
	font-size: 0.889em;
}


/* Links
–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––– */
a {
	color: blue;
	text-decoration: none;
	cursor: pointer;
}

a:hover {
	text-decoration: underline;
}