*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Josefin Sans", sans-serif;
	
  }
  
body{
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.5)),
      url("./photo25.jpg");
      background-size: cover;
}
  #logo1{
    border-radius: 50%;
    width: 100px;
    height: 100px;
  }
  .menu-bar{
    width: 100%;
    height: 16vh;
    
    background-repeat: no-repeat;
    background-size: cover;
    text-align:center;
  }
  .menu-bar ul{
    display:inline-flex;
    list-style:none;
    color:#fff;
  }
  .menu-bar ul li{
    width:130px;
    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 ul li:hover .sub-menu-1
  {
    display:block;
    position:absolute;
    background:rgb(0,100,0);
    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;
  }
  
  
  *{
	margin:0px;
	padding:0px;
	box-sizing: border-box;
	font-family: 'Poppins', sans-serif;
}
.section{
	width: 100%;
	min-height: 100vh;

  margin-top: -20px;
}
.container{
	width: 80%;
	display: block;
	margin:auto;
	padding-top: 100px;
}
.content-section{
	float: left;
	width: 55%;
}
.image-section{
	float: right;
	width: 40%;
}
.image-section img{
	width: 100%;
	height: auto;
}
.content-section .title{
	text-transform: uppercase;
	font-size: 28px;
}
.section h1{
  color:#030303;
  text-shadow: 1px 1px 2px #fff;
}
.content-section .content h3{
	margin-top: 10px;
	color:#030303;
	font-size: 21px;
  
}
.content-section .content p{
	margin-top: 10px;
	font-family: sans-serif;
	font-size: 18px;
	line-height: 1.5;
  color: #fff;
}
.content-section .content .button{
	margin-top: 30px;
  
}
.content-section .content .button a{
	background-color: #3d3d3d;
	padding:12px 40px;
	text-decoration: none;
	color:#fff;
	font-size: 25px;
	letter-spacing: 1.5px;
}
.content-section .content .button a:hover{
	background-color: rgb(0, 184, 148);
	color:#fff;
}
.content-section .social{
	margin: 40px 40px;
}
.content-section .social i{
	color:#3d3d3d;
	font-size: 30px;
	padding:0px 10px;
}
.content-section .social i:hover{
	color:#3d3d3d;
}
@media screen and (max-width: 768px){
	.container{
	width: 80%;
	display: block;
	margin:auto;
	padding-top:50px;
}
.content-section{
	float:none;
	width:100%;
	display: block;
	margin:auto;
}
.image-section{
	float:none;
	width:100%;
	
}
.image-section img{
	width: 100%;
	height: auto;
	display: block;
	margin:auto;
}
.content-section .title{
	text-align: center;
	font-size: 19px;
}
.content-section .content .button{
	text-align: center;
}
.content-section .content .button a{
	padding:9px 30px;
}
.content-section .social{
	text-align: center;
}
}
footer{
	background-color: #5d5d5d;
	width: 100%;
	height: 50px;
	
}
#footeritem{
	color: azure;
	font-size: medium;
	font-weight: bold;
	padding-left: 40px;
	padding-top: 15px;
	
}