/* EXTRA FONT */

@font-face {
	font-family: 'Share Tech';
	/* src: url('../fonts/ShareTech/sharetech.eot'); */
	src: /* url('../fonts/ShareTech/sharetech.eot?#iefix') format('embedded-opentype'), */
		 /* url('../fonts/ShareTech/sharetech.otf') format('opentype'), */
		 /* url('../fonts/ShareTech/sharetech.woff') format('woff'), */
		 url('../fonts/ShareTech/sharetech.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}


/* MAIN CSS */

.wrapper {
	display: -webkit-box;
	display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
	flex-direction: column;
	height: 100vh;
}

.main {
	-webkit-box-flex: 0;
	flex: none;
	position: absolute;
	width: 100%;
	background: #000;
}

.mainbox {
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: justify;
	justify-content: space-between;
	/* -webkit-box-align: center; */
	/* align-items: center; */
}

.container {
	box-sizing: border-box;
	margin: 0 auto;
	width: 100%;
	max-width: 1050px;
	height: 100vh;
	padding: 0 20px;
}

.background_container {
	position: relative;
	width: 220px;
	z-index: 1;
}

.background_container img {
	position: absolute;
	left: -150px;
	bottom: -496px;
	width: 430px;
	transition: opacity 1s ease-in-out;
}

.layout--block_logo {
	-webkit-box-flex: 0;
	flex: 0 0 180px;
	background: transparent url(../images/logo_white.svg);
	background-size: 100% auto;
	background-position: 0% 50%;
	background-repeat: no-repeat;
	margin: 0 20px;
	z-index: 2;
}

.layout--block_logo2 {
	-webkit-box-flex: 0;
	flex: 0 0 80px;
	background: transparent url(../images/logo2_white.svg);
	background-size: 100% auto;
	background-position: 0% 50%;
	background-repeat: no-repeat;
	margin: 0 20px;
	z-index: 2;
}

.layout--block_text {
	align-self: center;
	white-space: nowrap;
	margin: 0 20px;
	/* safe for old browsers */
	-webkit-box-flex: 0;
	flex: 0 0 auto;
	z-index: 1;
}

.layout--block_promo {
	align-self: center;
	white-space: nowrap;
	margin: 0 20px;
	/* safe for old browsers */
	-webkit-box-flex: 0;
	flex: 0 0 auto;
	z-index: 1;
}

.block_text-item-company {
	color: #fff;
	font-family: 'Share Tech', monospace;
	font-size: 18px;
	line-height: 22px;
	text-decoration: none;
	letter-spacing: 0;
}


/* @MEDIA OPTIMISATION */

/* Different display sizes */
@media all and (max-width: 920px) {
	.background_container img {
		opacity: 0.6;
	}
}

/* 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;
	}
}