@charset "UTF-8";

body{
	margin: 0;
	padding: 0;
	font-family: "Gill Sans", sans-serif;
}

header {
	background: #152B40;
	position: absolute;
	top: 0;
	left: 0;
	padding: 0px 50px;
	width: 100%;
	box-sizing: border-box;

}
header .cluk {
	color: white;
	height: 50px;
	line-height: 50px;
	vertical-align: auto;
	font-size: 25px;
	float: left;
	font-weight: bold;
	font-family: "Gill Sans", sans-serif;
}


.addH{
	font-weight: normal;
	color: #2196f3;
}
.badge {
  position: relative;
  top: 0;
  padding: 5px;
  border-radius: 50%;
  background: orange;
  color: white;
  margin-left: 5px;
}

header nav{
float: right;
}

header nav ul{
margin: 0;
padding: 0;
display: flex;

}

header nav ul li {
  list-style-type: none;
}


header nav ul li a {
  height: 50px;
  line-height: 50px;
  padding: 0 20px;
  color: #EEE;
  text-decoration: none;
  display: block;
}

header nav ul li a.active {
	color:#fff;
	background-color: #2196f3;
}


li a:hover:not(.active) {
  background-color: Grey;
}
.container {
   margin-top: 5em;
	}

.toggle{
	color: #fff;
	float: right;
	line-height: 50px;
	font-size:24px;
	cursor: pointer;
	display: none;
	
	}
	.active {
  background-color: #33BEFF;
}

.footer {
  background-color: #152B40;
  position: fixed;
  bottom: 0;
  height: 6%;
  width: 100%;
  display: flex;
  flex-direction: row wrap;
  justify-content: space-between;
}

.footerNav {
  display: flex;
  flex-direction: column;
  padding-left: 10px;
}

.footerNav p {
  text-decoration: none;
  color: #EEE;
  font-size: 12px;
  padding-bottom: 10px;
}

.footerNav ul {
  list-style-type: none;
  margin: 0;
  padding: 10px 10px;
}

.footerNav ul a {
  text-align: center;
  text-decoration: none;
  font-size: 12px;
  color: #EEE;
}

#footerContact {
  display: flex;
  flex-direction: column;
  padding-right: 30px;
}


#contactInfo {
  color: #EEE;
  font-size: 16px;
  font-family: "Abel";
  line-height: 4px;
}

	/*phones and small tablets*/
	@media(max-width: 980px)
	{ 
		.container {
	float: center;
	display: flex;
	flex-direction: column;
	margin: 10%;
}
	header
	{
		padding: 0 20px;
	}

	.toggle{ 

	  display: block;
	}
	header nav {	
	    z-index: 2;
		position: absolute;
		width: 100%;
		height:  calc(100vh - 50px);
		background: #333;	
        top: 50px;
        left: -100%;     
        transition: 0.5s;	
	}

	header nav.active{
		   left: 0;
	}

	header nav ul{
		display: block;	
		text-align: center;
	}

	header nav ul li a{
		border-bottom: 1px solid #000000;
	}
	.footer {
		display: none;
	}
	}

