:root
{
	--mainOrange: #d75d38;
	--secOrange: #d75d38;
	--thirdOrange: #d75d38;
	--txtOrange: #fec695;
	
	--mainGreen: #38d75d;
	--secGreen: #38d75d;
	--txtGreen: #38d75d;
	
	--mainGrey: #454545;
	--secGrey: #353535;
	--txtGrey: #e2d3af;
}

/*----------------------------------------------------------------------------------*/
/*---------------------------------------------*/
/*------ MAIN ---------------------------------*/
/*---------------------------------------------*/

html
{
	background-color: var(--secGrey);
	width: 100%;
	height: 100%;
	
	font-family: Raj;
}

body
{
	margin: 0;
	padding: 0;
	
	width: 100%;
	height: 100%;
	
	color: var(--txtGrey);
}

a
{
	text-decoration: none;
	color: var(--txtGrey);
}

/*----------------------------------------------------------------------------------*/
/*---------------------------------------------*/
/*------- MENU --------------------------------*/
/*---------------------------------------------*/
.Menu
{
	z-index:100;
	position: fixed;
	
	width: 150px;
	height: 100%;
	
	background-color: var(--secGrey);
	border-right: 1px solid var(--mainOrange);
	/*box-shadow: 1px 0px 2px var(--mainOrange);*/
	
	animation: menuAppear ease 3s;
	-webkit-animation: menuAppear ease 3s;
}

.Menu .Logo
{
	margin-top: 10px;
	margin-bottom: 5px;
}

.Menu .Logo img
{
	margin-left: 4%;
	width: 92%;
}

.Menu .Languages
{
	text-align: right;
	margin-right: 10px;
}

.Menu .Languages img
{
	width: 15%;
	margin: 2px;
}

.Menu .FirstMenuElement
{
	padding-top: 6px;
	padding-bottom: 5px;
	font-size: 17px; /* menu reached max width when screen width = 750px. 1.8vw of 750 = 13.5px */
	
	border-top: solid var(--mainGrey) 1px;
	border-bottom: solid var(--mainGrey) 1px;
}

.Menu .MenuElement
{
	padding-top: 6px;
	padding-bottom: 5px;
	font-size: 17px; /* menu reached max width when screen width = 750px. 1.8vw of 750 = 13.5px */
	
	border-bottom: solid var(--mainGrey) 1px;
	/*box-shadow: -2px 1px 2px var(--mainGrey);*/
}

.Menu .MenuElement img, .Menu .FirstMenuElement img
{
	vertical-align: -40%;
	
	margin-left: 5%;
	margin-right: 8%;
	width: 20%;
	height: auto;
	
	background-color: var(--txtGrey);
	box-shadow: 0px 0px 5px var(--txtGrey);
}

.Menu .MenuElement img:hover, .Menu .FirstMenuElement img:hover
{
	vertical-align: -40%;
	
	margin-left: 5%;
	margin-right: 8%;
	width: 20%;
	height: auto;
	
	background-color: var(--thirdOrange);
	box-shadow: 0px 0px 5px var(--thirdOrange);
}

/*.Menu .MenuElement .Name:hover, .Menu .FirstMenuElement .Name:hover
{
	color: var(--secOrange);
}*/

.Menu .Network
{
	position: absolute;
	
	width: 100%;
	
	bottom: 5px;
	text-align: center;
	
	font-size: 1.5vw;
	font-variant : small-caps;
}

.Menu .Network img
{
	margin: 5px;
	width: 15%;
}

/*----- SMALL RESOLUTIONS -----*/
@media only screen and (max-width: 650px)
{
	.Menu
	{
		width: 50px;
	}
	
	.Menu .Logo img
	{
		margin-left: 10%;
		/*margin-bottom: 5px;*/
		margin-right: 10px;
		
		width: 80%;
	}
	
	.Menu .Languages
	{
		text-align: center;
		margin-right: 0px;
	}

	.Menu .Languages img
	{
		width: 35%;
	}
	
	.Menu .MenuElement, .Menu .FirstMenuElement
	{
		margin-top: 6px;
		padding: 0px;
		box-shadow: none;
		border: none;
	}
	
	.Menu .MenuElement img, .Menu .FirstMenuElement img
	{
		margin-left: 10%;
		margin-right: 10%;
		width: 80%;
		background-color: var(--txtGrey);
	}
	
	.Menu .MenuElement img:hover, .Menu .FirstMenuElement img:hover
	{
		margin-left: 10%;
		margin-right: 10%;
		width: 80%;
		background-color: var(--thirdOrange);
		box-shadow: 0px 0px 5px var(--thirdOrange);
	}
	
	.Menu .MenuElement .Name, .Menu .FirstMenuElement .Name/*,
	.Menu .MenuElement .Name:hover, .Menu .FirstMenuElement .Name:hover*/
	{
		display: none;
	}
	
	.Menu .Network img
	{
		margin: 0px;
		margin-top: 5px;
		width: 55%;
	}
}

/* Have to do this to more compatible than with min() and max() functions...*/
@media only screen and (min-width: 856px)
{
	.Menu .Network
	{
		font-size: 12.84px;
	}
}

/*----- ANIMATIONS -----*/
@keyframes menuAppear
{
	0% 
	{
		opacity:0;
		transform:  translate(-25px, 0px);
	}
	5%
	{
		opacity:0;
		transform:  translate(-25px, 0px);
	}
	15%
	{
		opacity: 1;
		transform:  translate(0px,0px);
	}
	100%
	{
		opacity: 1;
		transform:  translate(0px,0px);
	}
}

@-webkit-keyframes menuAppear
{
	0% 
	{
		opacity:0;
		-webkit-transform:  translate(-25px, 0px);
	}
	5%
	{
		opacity:0;
		-webkit-transform:  translate(-25px, 0px);
	}
	15%
	{
		opacity: 1;
		-webkit-transform:  translate(0px,0px);
	}
	100%
	{
		opacity: 1;
		-webkit-transform:  translate(0px,0px);
	}
}

/*----------------------------------------------------------------------------------*/
/*---------------------------------------------*/
/*------- PAGE SKELETON -----------------------*/
/*---------------------------------------------*/
.Banner
{
	z-index: 99;
	position: fixed;
	
	display: flex;
	
	padding-left: 160px;
	padding-bottom: 4px;
	
	width: 100%;
	/*max-width: 1000px;*/
	
	height: 40px;
	
	background-color: var(--secGrey);
	
	border-bottom: 1px solid var(--mainOrange);
	/*box-shadow: 0px 1px 2px var(--mainOrange);*/
	
	font-variant : small-caps;
	font-size: 30px;
	/*font-family: Raj-light; /* Raj-bold;*/
}

.Banner span
{
	align-self: flex-end;
}

.Page
{
	z-index:1;
	position: relative;
	
	min-height: 100%;
	
	padding-left: 150px;
	margin-right: 5px;
	/*max-width: 1000px;*/
	
	background-color: var(--mainGrey);
	
	border-right: 1px solid var(--mainOrange);
	/*box-shadow: 1px 0px 2px var(--mainOrange);*/
}

.Page a
{
	color: var(--secGreen);
}

.Page .Content
{
	margin: 0px 1.5vw 0px 1.5vw;
	
	position: relative;
	padding-top: 40px;
	
	font-size: 2vw;
}

.Page .Content .TitleSeparator
{
	display: block;
	
	margin: 8vw auto 0px auto;
	width: 70%;
	height: 4px;
	
	border-top: 1px solid var(--mainOrange);
	border-bottom: 1px solid var(--mainOrange);
}

.Page .Content .Title
{
	width: 100%;
	margin: 2vw 0px 2vw 0px;

	font-variant : small-caps;
	font-size: 4vw;
	font-family: Raj-medium;
	color: var(--mainOrange);
}

.Page .Content .Subtitle
{
	margin: -2vw 0px 3vw 0px;
	
	text-align: right;
	font-size: 2.5vw;
	font-family: Raj-medium;
}

.Page .Content .SubtitleAlone
{
	margin: 6vw 0px 3vw 0px;
	
	text-align: right;
	font-size: 2.5vw;
	font-family: Raj-medium;
}

.Page .Content img
{
	display: block;
	
	margin-left: auto;
	margin-right: auto;
	
	max-width: 100%;
	max-height: 300px;
}

.Page .Content .Caption
{
	text-align: center;
	font-size: 2vw;
	font-family: Raj-light;
	font-style: italic;
}

.Page .Content .MainLink
{
	display: block;
	width: 30%;
	margin: 0px auto 0px auto;
}

.Page .Content .MainLink img
{
	display: initial;
	
	height: 4vw;
	width: auto;
	
	margin-right: 1vw;
	margin-bottom: 0.5vw;
	vertical-align: -1.7vw;
}

.Page .Content .Back
{
	margin-top: 20px;
}

.Page .Content .Video
{
	text-align: center;
	width: 100%;
	height: 45vw;
}

.Page .Content .Script
{
	font-family: code;
	font-size: 1.5vw;
	background: var(--secGrey);
	overflow-x: auto;
}

.Page .Content .Script ol
{
	padding: 0 0 0 6vw;
}

/*----- SMALL RESOLUTIONS -----*/
@media only screen and (max-width: 650px)
{
	.Page
	{
		padding-left: 50px;
	}
	
	.Banner
	{
		padding-left: 70px;
	}
	
	.Page .Content
	{		
		font-size: 3.5vw;
	}

	.Page .Content .Title
	{
		margin: 3vw 0px 2vw 0px;
		font-size: 5vw;
	}

	.Page .Content .Subtitle,
	.Page .Content .SubtitleAlone
	{
		font-size: 4vw;
	}
	
	.Page .Content .Caption
	{
		font-size: 3vw;
	}
	
	.Page .Content .MainLink
	{
		width: 50%;
	}
	
	.Page .Content .MainLink img
	{
		height: 6vw;
		width: auto;
		
		margin-right: 1vw;
		margin-bottom: 0.5vw;
		vertical-align: -2.2vw;
	}
	
	.Page .Content .Video
	{
		height: 50vw;
	}

	.Page .Content .Script
	{
		font-size: 2.3vw;
	}

	.Page .Content .Script ol
	{
		padding: 0 0 0 1.9vw;
	}
}

/*----- BIG RESOLUTIONS -----*/
@media only screen and (min-width: 855px)
{
	.Page .Content
	{
		margin: 0px 12.84px;
		
		display: grid;
		grid-template-columns: auto 660px auto;
		
		font-size: 17.12px;
	}
	
	.Page .Content .TitleSeparator
	{
		margin: 68.48px auto 0px auto;
	}
	
	.Page .Content .Title
	{
		margin: 17.12px 0px 17.12px 0px;
		font-size: 34.24px;
	}
	
	.Page .Content .Subtitle
	{
		margin: -17.12px 0px 17.12px 0px;
		font-size: 21.4px;
	}
	
	.Page .Content .SubtitleAlone
	{
		margin: 51.36px 0px 17.12px 0px;
		font-size: 21.4px;
	}
	
	.Page .Content .Caption
	{
		font-size: 17.12px;
	}
	
	.Page .Content .MainLink img
	{
		height: 34.24px;
		width: auto;
		
		margin-right: 8.56px;
		margin-bottom: 4.28px;
		vertical-align: -14.552px;
	}
	
	.Page .Content .Video
	{
		height: 385.2px;
	}

	.Page .Content .Script
	{
		font-size: 13px;
	}

	.Page .Content .Script ol
	{
		padding: 0px 0px 0px 50px;
	}
}

/*----------------------------------------------------------------------------------*/
/*---------------------------------------------*/
/*------- FOOT --------------------------------*/
/*---------------------------------------------*/
.Page .Foot
{
	border-top: 1px dotted var(--mainOrange);
	margin: 3rem auto 0px auto;
	
	padding-top: 0.5rem;
	padding-bottom: 1rem;
	
	font-size: 2vw;
	font-variant : small-caps;
	
	font-family: Raj-light;
	text-align: center;
	color: var(--mainOrange);
}

.Page .Foot img
{
	margin-top: 0.5rem;
	height: 3rem;
}

/*----- SMALL RESOLUTIONS -----*/
@media only screen and (max-width: 650px)
{
	.Page .Foot
	{
		font-size: 2.5vw;
	}
}

/*----- BIG RESOLUTIONS -----*/
@media only screen and (min-width: 855px)
{
	.Page .Foot
	{
		font-size: 17.12px;
	}
}