/* EXTRA FONT */

@font-face {
	font-family: 'Oswald Regular';
	src: url('../fonts/Oswald-Regular/Oswald-Regular.eot');
	src: url('../fonts/Oswald-Regular/Oswald-Regular.eot?#iefix') format('embedded-opentype'),
		/* url('../fonts/Oswald-Regular/Oswald-Regular.woff2') format('woff2'), */
		url('../fonts/Oswald-Regular/Oswald-Regular.woff') format('woff'),
		url('../fonts/Oswald-Regular/Oswald-Regular.ttf') format('truetype');
	font-style: normal;
	font-weight: normal;
	font-display: swap;
}


/* MAIN CSS */

*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

.wrapper {
	display: flex;
	flex-direction: column;
	height: 100vh;
}

.main {
	flex: none;
	position: absolute;
	width: 100%;
	background: #fff;
}

.mainbox {
	display: flex;
	justify-content: space-between;
	/* justify-content: center; */
	/* align-items: center; */
}

.container {
	margin: 0 auto;
	width: 100%;
	max-width: 250px;
	height: 100vh;
	/* padding: 0 20px; */
}

.background_container {
	width: 100%;
	height: 100%;
	background-color: #fad95d;
	background-image:
		repeating-linear-gradient(
		-45deg,
		#007DC3,
		#007DC3 10px,
		transparent 10px,
		transparent 20px,
		#EF4035 20px,
		#EF4035 30px,
		transparent 30px,
		transparent 40px
	);
	padding: 5px;
}

.background_container_inner {
	background: #f5f5f5;
	width: 100%;
	height: 100%;
}

.layout--inner-block-items {
	display: flex;
	align-items: center;
}

.layout--block_text {
	align-self: center;
	white-space: nowrap;
	margin: 0 10px;
	flex: 0 0 auto;
	z-index: 1;
	padding-top: 60px;
}

.layout--block_promo {
	position: absolute;
	top: 0;
}

.block_text-item-company {
	color: #000;
	font-family: "Oswald Regular", Arial, san-serif;
	font-size: 17px;
	line-height: 100%;
	text-decoration: none;
	letter-spacing: 0;
	/* margin: 5px 0; */
}

.block_text-item-phone {
	color: #000;
	font-family: "Oswald Regular", Arial, san-serif;
	font-size: 18px;
	line-height: 22px;
	text-decoration: none;
	letter-spacing: 0;
	/* margin: 5px 0; */
}

.block-item-icons-bottom {
	height: 22px;
	margin: 2px 0 0 5px;
}

.icon-official {
	flex: 0 0 18px;
	background: transparent url(../images/icon_official.svg);
	background-size: 100% auto;
	background-position: 0% 50%;
	background-repeat: no-repeat;
}

.icon-link {
	flex: 0 0 18px;
	background: transparent url(../images/icon_link.svg);
	background-size: 100% auto;
	background-position: 0% 50%;
	background-repeat: no-repeat;
}


/* @MEDIA OPTIMISATION */

/* 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;
	}
}