/*LAYOUT*/

/*DESKTOP*/

/*scrollbar*/
::-webkit-scrollbar {
	display: none;
}

/*selection*/
::selection, ::-moz-selection {
	color: #f5f5f5;
	background: transparent;
}

/*scroll animation*/
html {
	scroll-behavior: smooth !important;
}

/*types faces*/
@font-face {
	font-family: Maison Mono;
	src: url("fonts/maison-neue-mono.woff");
}

@font-face {
	font-family: Maison Mono Italic;
	src: url("fonts/maison-neue-mono-italic.woff");
}

/*types and links formats*/
h1, h2, h3, h4, h5 {
	font-weight: 400;
	margin-block-start: 0;
	margin-block-end: 0;
	margin-inline-start: 0px;
	margin-inline-end: 0px;
	padding: 0;
	margin: 0;
	display: inline;   
}

p {
	display: block;
	margin-block-start: 0;
	margin-block-end: 0;
	margin-inline-start: 0px;
	margin-inline-end: 0px;
}

ul {
	display: block;
	list-style-type: none;
	margin-block-start: 0;
	margin-block-end: 0;
	margin-inline-start: 0;
	/*margin-inline-end: 8px;*/
	margin-inline-end: 0;
	padding-inline-start: 0;
}

body,
h1, p, span,
a, nav.menu a,
nav.menu span {
	font-family: Maison Mono;
	font-size:  0.75vw;;
	letter-spacing: -0.015vw;
	word-spacing: -0.15vw;
	line-height: 1.25;
	text-decoration: none;
	color: #000000;
	transition: color .15s;
}

i, em {
	font-style: normal !important;
	font-family: Maison Mono Italic;
}

p.sub-title{
	text-decoration: underline;
}

a:not(.title-data):hover {
	color: #999;
	text-decoration-color: #000;
}

/*body*/
body {
	/*
	position: relative;
	*/
	margin: 0;
	background: white;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
}

/*menu bar*/
.menu-bar{
	width: 50vw;
	height: 3vw;
	position: fixed;
	bottom: 0;
	left; 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: white;
	z-index: 99;
}

.site-title {
	/*position: absolute;*/
	width: 11vw;
    margin-left: 1.5vw;
}

nav.menu ul {
	margin-right: 1vw;
}

li.lang-switcher {
	text-transform: uppercase;
}

li.lang-switcher a{
  	margin-left: 0vw;
}

/*columns desktop*/
.col-left {
	width: 50vw;
	height: calc(100vh - 4.5vw);
	position: fixed;
	top: 0;
	left: 0;
	padding-top: 1.5vw;
	/*overflow-x: hidden;*/
	overflow-y: scroll;
}

.col-right {
	width: 50vw;
	height: 100vh;
	position: fixed;
	top: 0;
	right: 0;
	/*overflow-x: hidden;*/
	overflow-y: scroll;
}

.col-right-prog {
  width: 50vw;
  margin-left: 50vw;
}

/*TABLET*/
@media (max-width:1024px) {
}

/*MOBILE*/
@media (max-width:600px) {

/*viewport height*/
body {
  height: 100vh; /* Use vh as a fallback for browsers that do not support Custom Properties */
  height: calc(var(--vh, 1vh) * 100);
  /*margin: 0 auto;*/
}

/*text formats*/
body,
h1, p, span,
a, nav.menu a,
nav.menu span {
	font-size:  3vw;;
	letter-spacing: -0.015vw;
	word-spacing: -0.15vw;
	line-height: 1.25;
	text-decoration: none;
	color: #000000;
	transition: color .15s;
}

/*menu bar*/
.menu-bar{
	width: 100vw;
	height: 10vw;
	/*padding: 5vw 0 3.5vw 0;*/
	position: fixed;
	bottom: 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: white;
}

.site-title {
	/*position: absolute;*/
	width: 37.5vw;
	margin-top: 0.75vw;
    margin-left: 4vw;
}

nav.menu ul {
	margin-top: 0.75vw;
	margin-right: 4vw;
}

li.language-switcher a{
  	margin-left: 2vw;
}

/*columns desktop*/
.col-left {
	display: none;
}

.col-right {
	width: 100vw;
	height: calc(100vh - 10vw);
	position: fixed;
	/*
	top: 0;
	right: 0;
	*/
	overflow-x: hidden;
	overflow-y: scroll;
}

.col-right-prog {
	width: 100vw;
	height: calc(100vh - 10vw);
	/*
	position: fixed;
	top: 0;
	right: 0;
	*/
	margin-left: 0;
	overflow-x: hidden;
	overflow-y: scroll;
}

.col-right.disable {
	overflow-y: hidden;
}

}