*{
	margin: 0;
	padding: 0;
}
header{
	background: #00A7EB;
	height: 70px;
	font-family: 'Iceberg', cursive;
}
header > span{
	height: 100%;
	display: flex;
  	align-items: center;
  	justify-content: center;
  	font-size: 32px;
	color: #FFFFFF;
}
main{
	/*width: 100vh;*/
	height: calc(100vh - 140px);
	overflow: scroll;
}
footer{
	position: sticky;
  	bottom: 0;
  	left: 0;
  	width: 100vw;
  	height: 70px;
  	display: flex;
  	justify-content: space-evenly;
  	align-items: center;
  	background-color: #FFFFFF;
}
.center-border{
	width: 5px;
	height: 50px;
	background-color: black;
	display: inline-block;
}
.icon{
	font-size: 50px;
	color: black;
}
.user_icon{
	width: 50px;
	height: 50px;
	border-radius: 50%;
}
.card_header{
	margin: 0 auto;
    width: 75%;
}
.card_header > p{
	margin: 0;
	height: 50px;
	display: flex;
	align-items: center;
}
.card_header > img{
	float: left;
}
.card_main{
	text-align: center;
}
.card_main > img{
	width: 80%;
	border-radius: 40px;
}
.card_footer > p{
	width: 75%;
	margin: 8px auto;
}
.card{
	border-radius: 40px !important;
	box-shadow: 0 10px 20px 0 rgba(0, 0, 0, .4);
}
.card_contact{
	background:  #fff;
	height: calc(85vh - 140px);
	width: 80%;
	position: absolute;
  	top: 50%;
  	left: 50%;
  	transform: translateY(-50%) translateX(-50%);
  	border-radius: 40px;
}
.line_bar{
	width: 80%;
	height: 3px;
	background-color: black;
	display: block;
	margin: 0 auto;
	opacity: 0.5;
}
.card_contact > form{
	height: 100%;
}
.card_contact > form > input,textarea{
	display: block;
	width: 80%;
	margin: 5px auto !important;
    border: none;
    font-size: 1.2em !important;
    height: 50px;
    outline: none;
}
.card_contact > form > textarea{
	height: calc(100% - 140px) !important;
}
.card_contact > form > i{
	display: flex;
	align-items: center;
	justify-content: right;
	font-size: 30px;
	margin-right: 50px;
	margin-top: 25px;
}
.card_header > p{
	margin-left: 60px;
}
.upload_img{
	border-radius: 40px;
}
.upload_input{
	display: block;
	width: 80%;
	margin: 5px auto !important;
    border: none;
    font-size: 1.2em !important;
    height: 50px;
    outline: none;
}