@font-face {
    font-family: 'RawengulkSans-094';
    src: url('../font/RawengulkSans-094.otf');
    src: url('../font/RawengulkSans-094.ttf') format('truetype'),
    font-weight: normal;
    font-style: normal;
	}
	
          /*BODY*/
body{margin: 
	0px;
	width: 100%;}
	
          /*LOGO*/
				
#logo img{
         height:150px;
		 margin: auto;
		 margin-bottom: 10px;
  		 display: block;
		  }		
		  		  		
		/*END OF LOGO*/
		
		/*DROPMENU*/

#menubar{	
 	width: 100%;
 	height: 50px;
	margin: auto;  
	background-color: black;
	position: absolute;
	}
	
#menu{
	width: 100%;
	padding: 10px 0px 0px 0px;
	margin-top: -47px;  
	position: relative;
	display: inline-block;
	-moz-border-radius: 0px;
	border-radius: 0px;
	list-style: none;
	}
  
#menu li{
	margin-left: 10px;
	padding: 0px 0px 0px 0px;
	position: relative;
	text-align: center;
	display: inline-block;
	padding: 50px;
	}

#menu a{
	height: 25px;
	padding: 0 10px;
	color: white;
	text-transform: uppercase;
	font: bold 12px/25px RawengulkSans-094;
	text-decoration: none;
	}

#menu li:hover > a{
	color: #79C476;
	}

*html #menu li a:hover{ /* IE6 */
	color: #79C476;
	}

#menu li:hover > ul{
	display: block;
	}

/* Sub-menu */

#menu ul{
 	width: 100%;
    list-style: none;
    margin: 0;
    padding: 10px;    
    display: none;
    position: absolute;
    z-index: 99999;    
    background: rgba(0, 0, 0, 0.8);
	}

#menu ul li{
    float: none;
    margin: 0;
    padding: 0;
    display: block;  
	}

#menu ul li:last-child{   
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;    
	}

#menu ul a{    
    padding: 10px;
    height: auto;
    line-height: 1;
    display: block;
    white-space: nowrap;
    float: none;
    text-transform: none;
	}


#menu ul a:hover{
        background: 0;
	}

#menu ul li:first-child a{
    -moz-border-radius: 0px 0px 0 0;
    -webkit-border-radius: 0px 0px 0 0;
    border-radius: 0px 0px 0 0;
	}

#menu ul li:first-child a:after{
    content: '';
    position: absolute;
    left: 30px;
    top: -8px;
    width: 0;
    height: 0;
    border-left: 0px solid transparent;
    border-right: 0px solid transparent;
    border-bottom: 0px solid ;
	}

#menu ul li:first-child a:hover:after{
    border-bottom-color: 0; 
	}

#menu ul li:last-child a{
    -moz-border-radius: 0px 0px 0 0;
    -webkit-border-radius: 0px 0px 0 0;
    border-radius: 0px 0px 0 0;
	}

/* Clear floated elements */

#menu:after{
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
	}


		/*END DROPMENU*/		
				
			
		/*MIDDLE*/
 	
span{
	font:bold 30px/30px RawengulkSans-094;
	color: #79C476;
	background-color: 
	}		



#swiss img{
		margin: 0px;
		margin-top: -60px;
		width: 100%;
 		}  
 		
#spacing{
		margin: 30px;
		} 
		
#me img{
		width: 200px;
		height: 200px;
		border-radius: 70%;
		object-fit: cover;
		object-position: -20% 0
 		} 				

 		/*END MIDDLE*/

        

	         
		/*FOOTER*/
			
#footer{
		background: black;
	    width: auto;
	    height: auto;
	    padding: 30px 50px 90px 0px;
		}    

#sitemap{
	width: 100%;
	padding: 10px;  
	list-style-type: none;
	-moz-border-radius: 0px;
	border-radius: 0px;
	}
  
#sitemap li{
	float: middle;
	margin-left: 50px;
	font: bold 15px/35px RawengulkSans-094;
	color: white;
	text-align: center;
	position: relative;
	display: inline;
	}

#sitemap li:hover > a{
	color: #79C476;
	}

*html #sitemap li a:hover{ /* IE6 */
	color: #79C476;
	}

a:link{text-decoration: none; color: white;}	
a:visited { text-decoration: none; color:white; }	
 
          /*LOGO.Footer*/
				
#logo2 img{
         height: 50px;
		 margin-top: -30px;
  		 display: block;
		  }	
		  		  		
		/*END OF LOGO.Footer*/
		
		/*Copyright*/
		
#copyright{
 		  font: bold 15px/35px RawengulkSans-094;
	      color: white;
	      margin-top: 30px;
	      margin-left: 70px;
	      line-height: normal;
	      }		

	 	
	 	/*End Copyright*/
	
			/*END FOOTER*/
			
			
* {box-sizing: border-box}

/* Container needed to position the overlay. Adjust the width as needed */
.container {
  position: relative;
  width: 100%;
  max-width: auto;
}

/* Make the image to responsive */
.image {
  display: block;
  width: 100%;
  height: auto;
}

/* The overlay effect - lays on top of the container and over the image */
.overlay {
  position: absolute;
  bottom: 0;
  background: rgb(0, 0, 0);
  background: rgba(0, 0, 0, 0.5); /* Black see-through */
  color: #f1f1f1;
  width: 100%;
  transition: .5s ease;
  opacity:0;
  color: white;
  font-size: 20px;
  padding: 10px;
  text-align: center;
  margin-bottom: 5px;
}

/* When you mouse over the container, fade in the overlay title */
.container:hover .overlay {
  opacity: 1;
}			
			
