.header {
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../app/img/login_background.jpg');
  height: 80vh;
  align-items: center;
}

.nav_bar {
	position: relative;
	height: 5vh;
	width: 100%;
	background: rgba(0, 0, 0, .3);
	padding-top: 1vh;
}

.nav_bar h3 {
	position: absolute;
	left: 60px;
	color: var(--primary-color);
	font-family: var(--font-sonetag);
	font-size: 3vh;
	cursor: default;
}

.logo {
	position: absolute;
	height: 3vh;
	width: auto;
	left: 20px;
}

#avatar_account {
	position: absolute;
	height: 3vh;
	width: auto;
	right: 20px;
	cursor: pointer;
}


.split_half {
	position: relative;
	padding: 20px;
	width: 100%;
	height: auto;
	display: flex;
	flex-direction: row;
}

.div_animation{
	display: block;
}

.split_half_div {
	position: relative;
	width: 50%;
	height: 100%;
	margin-top: 32vh;
	transform: translateY(-50%);
}

.split_half_div h1{
	margin-left: 20px;
	color: var(--primary-color);
	font-size: 60px;
	cursor: default;
}

.div_button {
	margin-top: 30px;
	width: 100%;
	padding: 15px;
	display: flex;
	flex-direction: row;
	text-align: center;
	align-items: center;
}

.button {
	position: relative;
	display: block;
	width: 200px;
	text-align: center;
	padding: 8px;
	font-weight: 600;
	font-size: 25px;
	border: 2px solid var(--primary-dark-color);
	margin-left: 15px;
	cursor: pointer;
}

.button:hover {
	box-shadow: 3px 3px 0 0 rgba(0, 0, 0, .5);
	transform:scale(1.01);
}

.full {
	background: var(--primary-dark-color);
	color: #000000;

}

.empty {
	color: var(--primary-dark-color);
}

.stat_section {
	height: 20vh;
	width: 100%;
	background: #E6E6E6;/*ECECEC;*/
	display: table;
	padding: 20px;
	text-align: center;
}

.div_center{
  display:table-cell;
  vertical-align:middle;
}

.stat_section span {
	font-size: 70px;
	font-weight: 600;
	color: var(--primary-color);
}

.stat_section h2 {
	font-size: 2.5em;/*40px*/
}

.home_section {
	width: 100%;
	height: auto;
	padding: 20px;
}

.home_section h1 {
	width: 100%;
	text-align: center;
	font-family: var(--font-sonetag);
	color: var(--primary-color);
	font-size: 50px;
	cursor: default;
}

.div_container{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.div_item {
	display: block;
	width: 40%;
	text-align: center;
	margin: 5%;
	min-width: 230px;
}

.div_item h3 {
	cursor: default;
}

.div_item p {
	text-align: justify;
	cursor: default;
}

.card {
	width: 300px;
	height: auto;
	border: 1px solid var(--primary-dark-color);
	border-radius: 5px;
	margin-top: 40px;
	margin-right: 10px;
	margin-left: 10px;
	padding: 10px;
}

.card h2 {
	margin: 20px;
	text-align: center;
	font-size: 40px;
	color: #3A6CFF;
	cursor: default;
}

.card p{
	text-align: center;
	position: relative;
	font-size: 10px;
	margin-bottom: 0;
	cursor: default;
}

.card ul {
	list-style:none;
	padding: 5px 5px 5px 20px;
	margin-top: 40px;
	cursor: default;
}

.card li {
	list-style:none;
	margin-bottom: 10px;
}

#btn_register_bis {
	margin: auto;
	margin-top: 20px;
	margin-bottom: 20px;
}

.div_divider {
	width: 50%;
	height: 2px;
	background: var(--primary-dark-color);
	margin: auto;
	margin-bottom: 20px;
}

body {
	background: #EFEEEE;
}

footer{
	height: 4vh;
	width: 100%;
	background: white;
	padding: 5px;
}








@media screen and (max-width: 800px){
	.button {
		font-size: 20px;
	}

	.split_half_div h1{
		font-size: 50px;
	}

	.stat_section span {
		font-size: 60px;
	}

	.stat_section h2 {
		font-size: 2em;
	}


}


@media screen and (max-width: 500px){
	.button {
		font-size: 18px;
	}

	.split_half_div h1{
		font-size: 40px;
	}

	.div_animation{
		display: none;
	}

	.split_half_div {
		width: 100%;
	}

	.stat_section h2 {
		font-size: 1.5em;
	}

	.home_section h1 {
		font-size: 40px;
	}
}