@import url('https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');
*,*::before,*::after {
	box-sizing: border-box;

}

body{
	margin: 0;
	background:#fff;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.6;
	color: #333;
	font-family: 'Exo 2', sans-serif;
}

img{
	max-width: 100%;
}

.logo{
	text-decoration: none;
	color:#FFF;
	font-size:32px;
}

.logo:hover{
	text-decoration: none;
	color:#FFF;
}

.logo img{
	max-height:40px;
	border-radius:10px;
}

/*header*/
.header{
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	z-index: 1000;
	padding: 15px 30px;
	background-color: rgba(0, 0, 0, 0.6);
	border-bottom:2px solid rgba(56, 56, 56, 0.6);
	transition: background-color 1s;
	font-family: 'Exo 2', sans-serif;
}

.header:hover{
	background-color: rgba(0, 0, 0, 0.95);
}

.nav_icon{
	font-size: 18px;
	color: #fff;
	margin:0px 30px;
	font-weight:300;
	padding:10px;
}

.nav_icon:hover{
	text-decoration: none;
	background-color:#FFF;
	color:#FFF;
	opacity: 0.9;
	border-radius:10px;
}

.block-row{
	min-height: 100vh;
	background-size: cover;
	background-position: center center;
	background-blend-mode: darken;
	background-color: rgba(9, 9, 9, 0.7);
	font-size: 20px;
}

.block-row h2{
	font-size: 60px;
	font-weight: 700
}

.main_container{
	height: 100vh;
	overflow: hidden;
}

.footer{
	padding: 7px 0;
	text-align: center;
	color: #fff;
	background: rgba(14, 12, 12, 0.9) !important;
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	z-index: 100;
	font-family: 'Exo 2', sans-serif;
}

.mobil_logo{
	display: none;
}

a.flags{
    padding:5px;
    margin-right:5px;

}

a.flags img{
    width:30px;
    border:1px solid rgba(255,255,255,0.4);
    transition: all 0.5s !important;
}

a.flags img:hover{
    cursor: pointer;
}



.pictures{
    margin:0px;
    padding:0px;
    height:100%;
    max-height:100%;
}

.belepes_container{
	display: flex;
	align-items: center;
	justify-content: center;
	height:100vh;
}

.belepes_container_window{
	width:500px;
	min-height:100px;
	max-height:75vh;
	padding:25px;
	border-radius:20px;
	background-color:rgba(0,0,0,0.5);
	backdrop-filter: blur(3px);
	overflow: hidden;
	overflow-y:auto;

}

.belepes_container_window::-webkit-scrollbar {
  width: 3px;
}

/* Track */
.belepes_container_window::-webkit-scrollbar-track {
  background: transparent
}

/* Handle */
.belepes_container_window::-webkit-scrollbar-thumb {
  background: rgba(80,80,80,0.4);
}

/* Handle on hover */
.belepes_container_window::-webkit-scrollbar-thumb:hover {
  background: #888;
}

.belepes_container_window hr{
	background-color:rgba(255,255,255,0.2);
	border-bottom:1px solid rgba(255,255,255,0.3);
}

.belepes_container_window h1{
	font-weight:bold;
	font-size:24px;
	text-align: center;
	color: #e01f0a;
}

.belepes_container_window p{
	color:#FFF;
}

.belepes_container_window label{
	font-size:16px;
	color:#FFF;
}

.belepes_container_window input{
	color:#333;
}





@media screen and (max-width:1000px){

	.nav_icon{
		display: block;
		text-align:center;
		font-size: 14px;
		color: #fff;
		font-weight:300;
		padding:5px;
	}

	.logo_container{
		display:none;
	}

	.mobil_logo{
		display:block;
		position: absolute;
		top:5px;
		left:5px;
		width:30px;
		height:20px;
	}

	.mobil_logo img{
		max-width:100%;
		border-radius:5px;
	}

}