*{
	box-sizing: border-box;
}
body{
	margin: 0;
	height: 100vh;
	max-width: 100vw;
	overflow: auto;
	font-family: "Lato";
	font-weight: 600;
	
	color: #555;
	background-color: #ecf0f3;
}

.nav-bar nav{
  position: fixed;
  top: 0px;
  left: 0;
  width: 100%;
  height: 70px;
  display: flex;
  background-image: linear-gradient(#000,#05f,#05f);
  background-color: #15f;
  color: #fff;
  overflow: visible;
  z-index: 1;
}

hr{
	position: absolute;
	top: 60px;
	left: 0;
	width: 100%;
	height: 5px;
	overflow: visible;
	background-color: cyan;
  z-index: -1;
}

.nav-bar nav h1{
	position: relative;
	top: 0;
  padding-left: 50px;
  padding-top: 0;
  font-size: 24px;
}

.nav-bar nav ul{
	display: flex;
	position: absolute;
	right: 0;
	padding-right: 60px;
	list-style-type: none;
}

.nav-bar nav ul span{
padding: 0 20px;
color: #fff;
font-size: 18px;
}

.nav-bar nav ul a{
	padding: 0 20px;
	color: #fff;
  text-decoration: none;
}

 .dropbtn {
  display: inline-block;
  color: #111;
  text-align: center;
  padding: 7px;
  text-decoration: none;
  min-width: 100px;
  border-radius: 5px;
  z-index: 2;
}

li a:hover, .dropdown:hover .dropbtn {
  background-color: oranger;
}

li.dropdown {
  display: inline-block; 
  z-index: 2;
  border-radius: 5px;
}
.nav-bar nav ul .logout:hover{
   background-color: orangered;
   color: white;
}

.dropdown-content {
  display: none;
  color: #000;
  position: absolute;
  background-color: lightgray;
  min-width: 100px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 3;
}

.dropdown-content a {
  color: #000;
  height: 40px;
  padding: 10px 16px;
  text-decoration: none;
  display: block;
  min-width: 100px;
  text-align: left;
}

.dropdown-content a:hover {
	background-color: seagreen;
	color: white;
}

.dropdown:hover .dropdown-content {
  display: block;
  z-index: 2;
  color: #000;
}
.dropdown:hover .dropdown-content a{
  color: #000;
}

.container .image{
	position: absolute;
	width: 100%;
	height: 100vh;
	overflow: hidden;
}

.container .image .img{
	display: inline-block;
}

.image .img1{
	position: absolute;
	right: 0px;
	width: 50%;
	height: 100vh;
	margin: 10px 0px 10px 10px;
	overflow-y: hidden;
}

.image .img2{
	position: absolute;
	left: 0px;
	width: 50%;
	height: 100vh;
	margin: 10px 10px 10px 0px;
	overflow-y: hidden;
}
.text{
	position: absolute;
	top: 300px;
	left: 30%;
	background-color: #FF8C00;
	height: 200px;
	width: 40%;
	text-align: center;
	line-height: 100px;
	font-size: 20px;
	color: #fff;
	opacity: 0.8;
	z-index: 1;
}





footer{
	position: absolute;
	bottom: 0;
	text-align: center;
	background-color: #15f;
  height: 7vh;
  width: 100%;
   color: #fff;
  overflow: auto;
  justify-content: center;
}

footer .fo-sp{
	position: absolute;
	top: 15px;
	left: 40%;
	margin: 0 20px;
	padding: 0 20px;
}
footer .fo-sp a{
	color: #fff;
	text-decoration: none;

}