/* EXTRA FONT */

@font-face {
	font-family: 'PT Sans Caption Bold';
	src: url('../fonts/PTSans-CaptionBold/PTSans-CaptionBold.eot');
	src: url('../fonts/PTSans-CaptionBold/PTSans-CaptionBold.eot?#iefix') format('embedded-opentype'),
		 /* url('../fonts/PTSans-CaptionBold/PTSans-CaptionBold.otf') format('opentype'), */
		 url('../fonts/PTSans-CaptionBold/PTSans-CaptionBold.woff') format('woff'),
		 url('../fonts/PTSans-CaptionBold/PTSans-CaptionBold.ttf') format('truetype');
	font-style: normal;
	font-display: swap;
	font-weight: 700
}


/* MAIN CSS */

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

.banner {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 100px;
	overflow: hidden;
	background: linear-gradient(#181411, #312213, #382715);
	background-size: cover;
}

.banner__text {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	white-space: nowrap;
}

.logo_group {
	position: absolute;
	top: 0;
	left: 50%;
}

.logo_group_block {
	background: transparent url(../images/logo_group.svg);
	background-size: 100% auto;
	background-position: 0% 50%;
	background-repeat: no-repeat;
	position: relative;
	top: 72px;
	left: 380px;
	width: 80px;
	height: 20px;
}

.banner__wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
}

.banner__item {
	font-family: TimesNewRoman, "Times New Roman", Times, Baskerville, Georgia, serif;
	color: #BB7E46;
	font-size: 42px;
	text-transform: uppercase;
	margin: 0 15px;
}

.banner__item_white {
	font-family: "PT Sans Caption Bold", Arial, sans-serif;
	font-size: 16px;
	line-height: 40px;
	color: #fff;
	text-align: right;
}

.logo, .text-1, .text-2, .text-3, .text-4, .text-5 {
	opacity: 0;
	transition: all 1s;
}


/* @MEDIA OPTIMISATION */

/* Different display sizes */
@media (max-width: 741px) {
	.banner__item {
		font-size: 32px;
	}
	.banner__item_white {
		font-size: 13px;
	}
	.text-4 {
		transform: translateX(24%);
	}
	.text-5 {
		transform: translateX(-32%);
	}
}

/* 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;
	}
}