/* EXTRA FONT */

@font-face {
	font-family: 'MyriadPro Regular';
	src: url('../fonts/MyriadPro-Regular/MyriadPro-Regular.eot');
	src: url('../fonts/MyriadPro-Regular/MyriadPro-Regular.eot?#iefix') format('embedded-opentype'),
		 /* url('../fonts/MyriadPro-Regular/MyriadPro-Regular.otf') format('opentype'), */
		 url('../fonts/MyriadPro-Regular/MyriadPro-Regular.woff') format('woff'),
		 url('../fonts/MyriadPro-Regular/MyriadPro-Regular.ttf') format('truetype');
	font-style: normal;
	font-display: swap;
	font-weight: normal;
}


/* MAIN CSS */

*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

.banner {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	color: #f1dfc1;
	background: url('../images/bkg_spblux.jpg') center center/cover no-repeat;
	height: 60px;
}

.ul {
	list-style: none;
	margin-right: 20px;
}

.ul__wrapper {
	display: flex;
	flex-grow: 0;
	flex-shrink: 0;
}

.banner__half {
	width: 50%;
	padding-right: 15px;
}

.h-1 {
	font-family: "MyriadPro Regular", Arial, sans-serif;
	font-size: 20px;
	line-height: 100%;
	color: #f9ead1;
	text-align: center;
}

.h-2 {
	font-family: "MyriadPro Regular", Arial, sans-serif;
	font-size: 18px;
	line-height: 100%;
	color: #f9ead1;
	text-align: left;
}

.banner__wrap {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	flex-direction: column;
	margin-left: auto;
	width: fit-content;
}

.banner__wrapper {
	display: flex;
	align-items: center;
	width: 50%;
	padding-left: 15px;
}

.banner__item {
	position: absolute;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 368px;
}

.banner__mini-logo {
	display: flex;
	align-items: flex-end;
	height: 60px;
	width: 99px;
	padding-bottom: 5px;
	margin-left: 5px;
}

.banner__mini-logo img {
	width: 100%;
}

.banner__mini-logo svg { 
	width: 100px;
	height: 24px;
}

.banner__logo {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 368px;
}

.banner__logo img {
	width: 230px;
}

.s-1, .s-2, .s-3, .s-4 {
	opacity: 0;
	transition: all 1s;
}


/* @MEDIA OPTIMISATION */

/* Different display sizes */
@media(max-width: 925px) {
	.ul {
		font-size: 15px;
	}

	.banner__wrapper {
		padding-left: 12px;
	}

	.banner__half {
		padding-right: 12px;
	}

	.banner__item {
		font-size: 17px;
		line-height: 100%;
		width: 282px;
	}

	.banner__logo {
		width: 282px;
	}

	.banner__logo img {
		width: 220px;
	}
}

@media(max-width: 768px) {
	.ul {
		/* font-size: 12px; */
		margin-right: 10px;
	}

	.banner__wrapper {
		padding-left: 8px;
	}

	.banner__half {
		padding-right: 8px;
	}

	.banner__item {
		font-size: 16px;
		line-height: 100%;
		width: 265px;
	}

	.banner__logo img {
		width: 175px;
	}
}

@media(max-width: 600px) {
	.banner__half {
		width: 100%;
		height: 100%;
	}

	.banner__wrap {
		justify-content: center;
		align-items: center;
		width: 100%;
		height: 100%;
	}

	.banner__wrapper {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 100%;
		height: 100%;
	}

	.banner__item {
		text-align: center;
	}

	.banner__logo {
		width: 175px;
	}

	.u-1, .u-2, .u-3 {
		display: none;
	}

	.h-2 {
		display: none;
	}
}

/* Special cases */
@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}