header{
}

.sticky {
	z-index: 10;
    position: fixed;
    top: 0;
}

.fade-header-background{
	z-index:10;
	position:relative;
	transition-property: background-color;
  	transition-duration: 0.6s;
}

.faded-header{
	font-weight: 600;
	background-color: transparent;
	box-shadow: none;
}

.full-header{
	background-color: white;
	box-shadow: 0px 0px 20px #00000033;
}

#myLinks {
	position : relative;
	z-index:9;
  	transition-property: top;
  	transition-duration: 0.3s;
	top:-500px;

		box-shadow: 0px 0px 20px #00000033;
}

.header-element{
	height: 80px;
}

.header-logo{
	height:80%;
}

.anchor-left{
	float:left;
	padding-left:100px;
}

.anchor-right{
	float:right;
	padding-right:100px;
}

.anchor-bottom{
	float:bottom;
	bottom:0px;
	padding-bottom: 0px;
}

.banner{
	position:absolute;
	z-index: 0;
	height:23%;
	opacity:70%;
}

.banner-title{
	text-align: center;
	margin:auto;
	font-weight: 100;
	font-size: 32px;
}

.header-button{
	padding-left: 30px;
	padding-right: 30px;
	padding-top: 5px;
	padding-bottom: 5px;
	height: 60%;
	border-right: 1px solid black;
	line-height: 100%;
}

.burger{
	display:none;
}

.burger-element{
	padding:20px;
	background-color: white;
	color: black;
	border-bottom: 1px solid #dadada;
	font-size: 16px;
	cursor: pointer;
}

/*HEADER BUTTON*/

.btn {
	height: 40px;
	text-align: center;

	width: 90%;
	cursor: pointer;
	transition: all 0.3s;

	position: relative;

	margin:auto;
	margin-top: -37px;
}

.btn-one::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	bottom: 0;
	left:0;
	z-index: 1;
	opacity: 0;
	transition: all 0.3s;
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color: rgba(0,0,0,0.5);
	border-bottom-color: rgba(0,0,0,0.5);
	transform: scale(0.1, 1);
}

.btn-one:hover::before {
	opacity: 1;	
	transform: scale(1, 1);	
}
.btn-one::after {
	width: 100%;
	height: 100%;
	z-index: 1;
	transition: all 0.2s;
}
.btn-one:hover::after {
	opacity: 0;	
	transform: scale(0.1, 1);
}