/* ---------------- BASE ---------------- */

* {
	box-sizing: border-box;
	font-family: 'Open Sans', sans-serif;    
}

body {
	overflow-x: hidden;
	color: black;
	width: 100%;
	height: 100vh;
	background-color: white;
}

.container {
	padding-right: 8px;
	padding-left: 8px;
	margin-right: auto;
	margin-left: auto;
}

.content {
	min-height: 50vh;
	width: 100%;
}

input, textarea, select {
	min-width: 256px;
	padding: 6px 12px;
	background-color: #fff;
	border: 1px solid #D1D1D1;
	border-radius: 2px;
	box-shadow: none;
}

textarea {
	min-height: 64px;
	padding-top: 6px;
	padding-bottom: 6px; 
}

input:focus,
textarea:focus,
select:focus {
	border: 1px solid #FF1500;
	outline: 0; 
}

label {
	display: block;
	margin-bottom: 4px;
	font-weight: normal; 
}

@media screen and (min-width: 1000px) {
	.container {
		width: 75% !important;
	}
}

/* ---------------- NAVBAR ---------------- */

nav {
	z-index: 999;
	width: 100%;
	height: 96px;
	position: relative;
	background-color: white;
}

.languages {
	cursor: pointer;
	width: 100%;
	height: auto;
	padding-top: 10px;
	text-align: end;
	font-weight: normal;
}

.change-language {
	color: black;
	font-size: 14px;
	text-decoration: none;
}

.change-language:hover {
	text-decoration: underline;
}

.selected-language {
	color: #FF1500;
	font-weight: bold;
}

.navbar-classic {
	background-color: white;
	position: absolute;
	width: 100%;
	height: 32px;
	bottom: 0;
	left: 0;
	box-shadow: 0 1px 0 0 #cecece;
}

.navbar-fixed {
	background-color: white;
	position: fixed;
	width: 100%;
	height: 32px;
	top: 0;
	left: 0;
	box-shadow: 0 1px 0 0 #cecece;
}

.menu {
	display: flex;
	flex-direction: row;
	background-color: white;
	width: 100%;
	height: 32px;
}

.menu-links, .menu-info {
	display: flex;
	flex-direction: row;
	width: 100%;
	height: 32px;
	line-height: 32px;
}

.mobile-menu {
	display: none;
}

.menu-links .selected, .menu-links .link:hover {
	box-shadow: 0px 3px 0px -1px #242424;
}

.menu-links .link {
	text-decoration: none;
	display: inline-block;
	text-align: center;
	white-space: nowrap;
	font-weight: bold;
	cursor: pointer;
	font-size: 12px;
	color: #FF4000;
	height: 100%;
	width: 100%;
}

.menu-info .info {
	display: inline-block;
	text-align: center;
	white-space: nowrap;
	cursor: auto;
	font-size: 12px;
	color: #FF4000;
	height: 100%;
	width: 100%;
}

.logo-big {
	user-select: none;
	pointer-events: none;
	transition: 0.15s all ease-in-out;
	width: 128px;
	height: 128px;
	min-width: 128px;
	min-height: 128px;
	margin-top: -48px;
}

.logo-small {
	user-select: none;
	pointer-events: none;
	transition: 0.15s all ease-in-out;
	width: 64px;
	height: 64px;
	min-width: 64px;
	min-height: 64px;
	margin-top: -4px;
}

@media screen and (max-width: 1000px) {
	.menu-info, .menu-links {
		display: none;
	}

	.mobile-menu {
		display: flex !important;
	}

	.logo-big, .logo-small {
		width: 64px !important;
		height: 64px !important;
		min-width: 64px !important;
		min-height: 64px !important;
		margin-top: -4px;
	}

}

/* ---------------- FOOTER ---------------- */

footer {
	display: block;
	overflow: hidden;
	width: 100%;
	height: auto;
	position: relative;
	background-color: #e7e9eb;
}

.footer-line1 {
	z-index: 0;
	user-select: none;
	pointer-events: none;
	visibility: visible;
	position: absolute;
	filter: invert(1);
	left: 16px;
	top: 0;
	max-width: 256px;
	max-height: 256px;
}

.footer-line2 {
	z-index: 0;
	user-select: none;
	pointer-events: none;
	visibility: visible;
	position: absolute;
	filter: invert(1);
	right: 16px;
	bottom: 0;
	max-width: 256px;
	max-height: 256px;
	transform: rotate(180deg);
}

.footer-text {
	width: 100%;
	display: flex;
	flex-direction: column;
}

.footer-text-block {
	height: 100%;
	width: 100%;
	display: flex;
	flex-direction: row;
}

.footer-links-block {
	display: flex;
	flex-direction: column;
	height: 100%;
	width: auto;
	padding-right: 4vw;
}

.footer-link {
	z-index: 1;
	cursor: pointer;
	width: auto;
	height: auto;
	font-size: 14px;
	color: #FF1500;
	font-weight: bold;
	white-space: nowrap;
	padding-bottom: 32px;
	text-decoration: none;
}

.footer-link:hover {
	text-decoration: underline;
}

.footer-info {
	width: auto;
	height: auto;
	margin: 0;
	padding: 0;
	font-size: 14px;
	color: black;
	font-weight: normal;
	padding-bottom: 8px;
}

.footer-copyright-block {
	height: 32px;
	line-height: 32px;
	font-size: 12px;
	width: 100%;
	vertical-align: middle;
}

.footer {
	display: flex;
	width: 100%;
	height: auto;
	flex-direction: row;
	padding-bottom: 128px;
	padding-top: 128px;
}

.footer-info-block {
	height: 100%;
	display: flex;
	padding-right: 16px;
	flex-direction: column;
	width: 100%;
}

.footer-map {
	z-index: 1;
	display: block;
	max-height: 360px;
	max-width: 100%;
	text-align: end;
	float: right;
	height: 360px;
	width: 100%;
	padding: 0;
	border: 0;
	box-shadow: 0 4px 32px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 1200px) {
	.menu-links .link {
		font-size: 10px;
	}

	.menu-info .info {
		font-size: 10px;
	}
}

@media screen and (max-width: 1000px) {
	.footer-line1 {
		visibility: hidden;
	}
	
	.footer-line2 {
		visibility: hidden;
	}

	.footer-map {
		display: none;
	}

	.footer {
		padding-bottom: 32px;
		padding-top: 64px;
		padding-left: 4vw;
		padding-right: 4vw;
	}
	
	.footer-links-block {
		width: 100%;
		padding-right: 32px;
	}
	
	.footer-info-block {
		text-align: end;
		padding-right: 0;
	}

	.menu-links .link {
		font-size: 10px;
	}
}

@media screen and (max-width: 600px) {
	.menu-links .link {
		font-size: 8px;
	}
}