.page{
	margin: 0;
	background: #eeeeee;
	height: 100%;
	font-family: 'Open Sans', sans-serif;
	text-align: justify;
}
.page--inner{
	max-width: 99.5%;
	height: 100%;
	background: white;
	margin: 0px calc(-400px + 41vw);
	text-align: justify;
	padding: 5% calc(-50px + 10vw);
}

.page__header{
	border-bottom: 1px solid black;
	display: flex;
    justify-content: center;
}
.page__header--inner{
	border-right: 1px solid black;
	border-left: 1px solid black;
	/*margin: 0px calc(-400px + 41vw);*/
	width: calc(18vw + 800px);
	box-sizing: border-box;
}

.title{
	justify-content: center;
	margin-top: 1%;
}

.page__main{
	display: flex;
	justify-content: center;
}

.page__main--inner{
	background: white;
	border-right: 1px solid black;
	border-left: 1px solid black;
	/*margin: 0px calc(-400px + 41vw);*/
	width: calc(18vw + 800px);
	box-sizing: border-box;
	padding: 50px;
}

.page__footer{
	font-family: 'Comfortaa', cursive;
	font-weight: bold;
	display: flex;
	justify-content: center;
	border-top: 1px solid black;
}

.page__footer--inner{
	border-right: 1px solid black;
	border-left: 1px solid black;
	/*margin: 0px calc(-400px + 41vw);*/
	width: calc(18vw + 800px);
	box-sizing: border-box;
	justify-content: space-around;
    padding-bottom: 2%;
    padding-top: 1%;
    flex-wrap: wrap;
}
.page__description .html{
	overflow-wrap: break-word;
}

h1, h2, h3, h4{
	font-family: 'Comfortaa', cursive;
}

a:hover{
	color: red !important;
}

.block_vertical{
	margin-bottom: 5%;
}

.flex_horizontal{
	display: flex;
}
.flex_wrap{
	flex-wrap: wrap;
}
.nobr{
	white-space: nowrap;
}

.transparent.background{
	background: transparent;
}
.red.background{
	/*background: #fe9e9e;*/
	background: #ff2ad4;
}
.green.background{
	/*background: #8bd08b;*/
	background: #aad400;
}
.blue.background{
	/*background: #9999c0;*/
	background: #00ccff;
}
.orange.background{
	/*background: #efce92;*/
	background: #ff7f2a;
}
.transparent.font{
	color: transparent;
}
.red.font{
	color: #ff2ad4;
}
.green.font{
	color: #aad400;
}
.blue.font{	
	color: #00ccff;
}
.orange.font{
	color: #ff7f2a;
}
.transparent.border{
	border-color: transparent;
}
.red.border{
	border-color: #ff2ad4;
}
.green.border{
	border-color: #aad400;
}
.blue.border{	
	border-color: #00ccff;
}
.orange.border{
	border-color: #ff7f2a;
}

.logo{
	margin: 0 2%;
}
.logo img{
	/*width: 150px;
	height: 150px;*/
	width: 100px;
	height: 100px;
}
.site_name{
	text-align: center;
}
.main_menu{
	/*padding: 1.5% 1.5% 0 1.5%;*/
	padding: 1% 1.5% 0 1.5%;
	justify-content: space-evenly;
    flex-wrap: wrap;
	word-break: keep-all;
}
.main_menu__item{
	display: flex;
    flex-flow: column;
    align-items: center;
}

.button{
    box-sizing: border-box;
    text-transform: uppercase;
    font-weight: bold;
    /* border-radius: 10px; */
    text-align: center;
    white-space: nowrap;
    cursor: pointer;
	/*font-size: larger;*/
	padding-left: 5px;
    padding-right: 5px;
    padding-bottom: 3px;
    padding-top: 2px;
	border: 2px solid black;
	background: white;
	color: black;
	
	transition: background 0.2s;
	transition: color 0.1s;
}
.button.active,.button:hover{
	transition: background 0.2s;
	transition: color 0.1s;
	color: white;
}
.button:active{
	
}

.button.orange.active,.button.orange:hover{
	background: #ff7f2a;
}
.button.red.active,.button.red:hover{
	background: #ff2ad4;
}
.button.blue.active,.button.blue:hover{
	background: #00ccff;
}
.button.green.active,.button.green:hover{
	background: #aad400;
}

.main_menu__item a{
	text-decoration: none;
	color: black;
	font-size: larger;
	transition: color 0.1s;
}

.connector{
	/*height: 20px;*/
	height: 1.5vh;
	width: 0;
	border: 1px solid red;
	
}



.language_select{
    justify-content: flex-end;
	/*margin: 1%;*/
}
.lang__item{
	display: flex;
    justify-content: space-around;
    align-items: center;
}
.lang__item img{
	height: 10px;
	width: 20px;
	border: 1px solid black;
	
}
.lang__item > * {
	margin-right: 5px;
}

.site_name h1{
	/*font-size: xx-large;*/
	font-size: 20px;
}
.site_name h3{
	/*font-size: large;*/
	font-size: 16px;
	margin-bottom: 0;
}

