@charset "UTF-8";
/* CSS Document */


@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,600&display=swap&subset=cyrillic');
:root {
 --lightgray:#f4f4f4;
 --darkgray:#444;
 --red:#c9002b;
 --gray:#666;
 --font:0.8rem;
 --picture:64vw;
}
body, html {
	height: 100%;
	width: 100%;
}
html {
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}
body {
	position: relative;
	top: 0;
	left: 0;
	overflow: hidden;
	overflow-y: scroll;
	-webkit-overflow-scrolling: touch;
	font-family: 'Source Sans Pro', sans-serif;
	background-color: var(--lightgray);
	color: var(--darkgray);
	font-size: 100%;
	line-height: 1.6rem;
	min-height: 100%;
}
a {
	color: inherit;
	transition: color 0.3s ease;
	transition-delay:0;
}
a:hover {
	color: var(--red);
}
* {
	box-sizing: border-box;
	position: relative;
}
*:focus {
    outline: none;
}
/*==============================================*/
/*===============     NAV   ====================*/
/*==============================================*/
nav {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 6;
	visibility: inherit;
	overflow: auto;
	height: 100%;
	box-sizing: border-box;
	background: none;
	pointer-events: none;
}
/*===============     NAV - CONTAINER   ====================*/
nav .nav-container {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: auto;
	pointer-events: auto;
	overflow: hidden;
	box-sizing: border-box;
	background-color: #fff;
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	align-content: space-between;
	align-items: center;
	box-sizing: border-box;
	padding: 20px;
}
nav .nav-container > * {
	padding: 0;s
	margin: 0;
	cursor: pointer;
}
nav .nav-container li.logo {
	background-repeat: no-repeat;
	background-position: left top;
	background-size: contain;
	background-image: url(/images/symbols/logo-rotate.svg);
 height: calc(3.2 * 35px);
	width: 35px;
}
nav .nav-container li.menu-btn {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	-ms-flex-pack: justify;
	-ms-flex-align: center;
	height: 22px;
}
nav .nav-container li.menu-btn span {
	display: block;
	margin: 0;
	padding: 0;
	width: 36px;
	height: 2px;
	background: #000;
	transition: width .25s ease;
}
nav .nav-container li.menu-btn:hover span:nth-of-type(1), nav .nav-container li.menu-btn:hover span:nth-of-type(3) {
width: calc(36px - (36px * .4));
}
nav .nav-container li.tv {
	background-image: url(/images/symbols/television.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	height: 35px;
	width: 35px;
	transition: transform 0.5s ease-in-out;
}
nav .nav-container li.tv:hover {
	transform: scale(1.1)
}
.tv a, .logo a {
	width: 100%;
	height: 100%;
	display: block;
}
/*===============     NAV - MENU   =============*/


nav .nav-menu {
	background: #fff;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	min-height: 100%;
	position: absolute;
	pointer-events: auto;
	overflow-y: scroll;
	word-wrap: break-word;
	background: rgba(255,255,255,1);
	transform: translateX(-100%);
	opacity: 0;
	transition: transform 0.7s ease, opacity 0.7s ease;
}
nav .nav-menu.visible {
	transform: translateX(0%);
	opacity: 1;
}
nav .wrappe {
	display: flex;
	justify-content: center;
	flex-direction: column;
	min-height: 100%;
	padding: 0;
	box-sizing: border-box;
	margin: 0 auto;
	width: intrinsic;           /* Safari/WebKit verwendet einen nicht standardisierten Namen */
	width: -moz-max-content;    /* Firefox/Gecko */
	width: -webkit-max-content; /* Chrome */
	width: max-content;
}
nav .nav-menu .wrappe > * {
	text-transform: uppercase;
	letter-spacing: 0.1rem;
}
nav .nav-menu .wrappe li {
	line-height: 80px;
	font-size: 50px;
	overflow: hidden;
	width: -webkit-fit-content;
	transition: transform 0.5s ease, color 0.35s ease-in-out;
	transition-delay: 0.5s, 0s;
}
nav .nav-menu .wrappe .second_menu li {
	font-size: 0.9rem;
	display: inline-block;
	padding-right: 20px;
	font-weight:600;
}
nav .nav-menu .wrappe li::before {
	content: attr(data-textbefore);
	display: block;
	transform: translateY(-100%);
	transition: inherit;
	transition-delay: inherit;
}
nav .nav-menu .wrappe .second_menu li:before {
	transform: translateY(150%);
}
nav .nav-menu .wrappe a li:hover::before {
	color: var(--red);
}
nav .nav-menu.visible .wrappe .second_menu li::before, nav .nav-menu.visible .wrappe .main_menu li::before {
	transform: translateY(0%);
}
.close-btn {
	cursor: pointer;
	width: -webkit-fit-content;
}
.close-btn::before {
	background-image: url(/images/symbols/cancel.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	transition: transform .25s ease;
	transform: rotate(0);
	transform-origin: center;
	content: '';
	display: block;
	width: 35px;
	height: 35px;
	padding-bottom: 80px;
}
.close-btn:hover::before {
	transform: rotate(90deg)
}
/*==============================================*/
/*===============     FOOTER   ===================*/
/*==============================================*/
footer {
	z-index: 1;
	background: #000;
	color: #999;
	text-transform: uppercase;
	font-size: 12px;
	letter-spacing: 0.1rem;
	word-spacing: 0.1rem;
	padding: 3rem 0;
}
footer .main_menu {
	text-align: right;
	margin-right: 50%;
	z-index: 1;
}
footer .second_menu {
	margin-left: 50%;
	text-align: left;
	z-index: 1;
}
footer span {
display:inline-block;
}

footer span::before {
	content: attr(data-textbefore);
	display: block;
}
footer .copy {
	text-align: center;
	margin: 3rem 0 0 0;
}
footer a:hover {
	color: var(--red);
}
footer {
	pointer-events: auto;
}
/*==============================================*/
/*===============     MAIN   ===================*/
/*==============================================*/
main {
	position: relative;
	margin: 0;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	overflow: hidden;
	margin-left: 90px;
	width: calc(100vw - 90px);
	min-height: 100vh;
}





/*=================================================*/
/*==================MEDIA QEURY=====================*/
/*===============orientation:landscape=============*/


@media (orientation:landscape) {
nav .nav-container {
	height: 100%;
	width: 90px;
	border: none;
	border-right: #f1f1f1 1px solid;
}
main {
	margin-left: 90px;
	width: calc(100vw - 90px);
}
}


/*=======portrait  max-width:1024px ============*/

@media (orientation:portrait), (max-width:1024px) {
/*======================nav=======================*/	
nav .nav-container {
	height: 60px;
	width: 100%;
	border: none;
	border-bottom: #f1f1f1 1px solid;
	justify-content: space-between;
}
nav .nav-container li.logo {
	background-image: url(/images/symbols/logo.svg);
	height: 32px;
 width:calc(3.2 * 32px);
	order: 2;
}
nav .nav-container li.menu-btn {
	height: 18px;
}
nav .nav-container li.menu-btn span {
	width: 30px;
}
nav .nav-container li.tv {
	display: none;
}
/*===========main==================================*/
		
main {
	margin: 0;
	margin-top: 60px;
	width: 100vw;
}
}


/*====================================================*/
/*===================max-height:600px & 300px=========*/
/*====================================================*/
@media (max-height:600px) {
nav .nav-container li.tv {
	display: none;
}
}
 @media (max-height:300px) and (min-width:1025px) {
nav .nav-container li.logo {
	display: none;
}
}
/*====================================================*/
/*===================Mobile Devices==================*/
/*====================================================*/
@media (hover: none) and (pointer: coarse) {
footer {
	line-height: 2rem;
}
}
 @media (max-width:414px) {
nav .wrappe {
	justify-content: flex-start;
}
nav .nav-menu .wrappe li {
	line-height: 60px;
	font-size: 40px;
}
nav .nav-menu .wrappe .second_menu li {
	display: block;
	padding-right: 0;
	line-height: 40px;
}
.close-btn::before {
	width: 30px;
	height: 30px;
	padding-bottom: 60px;
}
}
