body {font-family: Arial, Helvetica, sans-serif;}
* {box-sizing: border-box;}

input[type=text], select, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;
}

input[type=submit] {
  background-color: rgb(4, 170, 109);
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

input[type=submit]:hover {
  background-color: #45a049;
}

.container {
  border-radius: 10px;
  background-color: #e3dede;
  padding: 50px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Josefin Sans", sans-serif;
}

header {
  width: 100%;
  height: 100vh;
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.15)),
    url("./photo25.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}

#logo1{
  border-radius: 50%;
  width: 100px;
  height: 100px;
}

.menu-bar{
 /* background:rgba(0,100,0);*/
  text-align:center;
}
.menu-bar ul{
  display:inline-flex;
  list-style:none;
  color:#fff;
}
.menu-bar ul li{
  width:140px;
  margin:15px;
  padding:15px;
}
.menu-bar ul li a
{
  text-decoration:none;
  color:#fff;
}
.active, .menu-bar ul li:hover{
  background:#2bab0d;
  
  border-radius:3px;
}
.menu-bar .fa{
  margin-right:8px;
}
.sub-menu-1
{
  display:none;
}
.menu-bar img{
  margin-left: 50px;
  margin-top: 20px;
  float: left;
}
.menu-bar ul li:hover .sub-menu-1
{
  display:block;
  position:absolute;
  background:rgb(0,150,100);
 /* background: plum;*/
  margin-top:15px;
  margin-left:-15px;
}
.menu-bar ul li:hover .sub-menu-1 ul{
  display:block;
  margin:10px;

}
.menu-bar ul li:hover .sub-menu-1 ul li{
  width:150px;
  padding:10px;
  border-bottom:1px dotted #fff;
  background:transparent;
  border-radius:0;
  text-align:left;
  
}
.menu-bar ul li:hover .sub-menu-1 ul li:last-child{
  border-bottom:none;
}
.menu-bar ul li:hover .sub-menu-1 ul li a:hover{
  color:#b2ff00;
}