*{
	/* Universal reset: */
	margin:0;
	padding:0;
}

body{
	/* Setting the default text color, size, page background and a font stack: */
	font-size:0.825em;
	color:#fcfcfc;
	background-color: #0F0F0F;
	
	background-repeat: repeat-x;
	font-family:Arial, Helvetica, sans-serif;
	/* Article styles: */
}
#page{
	width:960px;
	margin:0 auto;
	position:relative;
	background-color:#000;

	
}



div.article{
	background-color: #0B0B0B;
	margin:0.3em 0;
	padding:20px;
	text-shadow:0 2px 0 black;
}
div.article2{
	background-color: #0B0B0B;
	margin:0.3em 0;
	padding:20px;
	text-shadow:0 2px 0 black;
	height:650px;
}


/* Footer styling: */
div.footer .line{
	margin:2em 0;
}
div.footer{
	margin-bottom:30px;
	height:120px;
	background-color:#000;
	text-align:center;
	font-size:1em;
}


div.footer p{
	font-size:18px;
	text-align:justify;
	line-height: 24px;
	color:#fff;
	width:910px;
	font-weight: 300;
	margin-left:20px;
	margin-bottom:20px;
}



div.footer a.up{
	float:right;
	font-size:20px;
	color:#F4F4F4;
	text-decoration:none;
	width:90px;
}

#icons {width:184px;float: right;}




#center input[type="text"], input[type="email"], input[type="password"]  {

 border: 1px solid  #DDDDDD;
    color: #282828;
    height: 30px;
    margin-right: 6px;
    outline: 0 none;
    padding: 3px 3px 3px 5px;
    width: 400px;
    font: normal 12px/12px Georgia, "Times New Roman", Times, serif;
	border-radius:4px;
	background:#FFFFFF;

}
#center select  {

 border: 1px solid #DDDDDD;
    color: #282828;
    height: 30px;
    margin-right: 6px;
    margin-top: 10px;
    outline: 0 none;
    padding: 3px 3px 3px 5px;
    width: 400px;
    font: normal 12px/12px Georgia, "Times New Roman", Times, serif;
	border-radius:4px;
	background:#FFFFFF;

}
#center .submit {
    background: #FFFFCC;
    border: 1px solid #193377;
    padding: 10px 25px 10px 25px;
    color: #282828;
    border-radius: 4px;
	margin:25px 0px 10px 10px;
}

#center .submit:hover {
    background: #009999;
	cursor: default;
}
#center textarea {
   border: 1px solid #DDDDDD;
    color: #282828;
    height: 100px;
    margin-right: 6px;
    margin-top: 10px;
    outline: 0 none;
    padding: 3px 3px 3px 5px;
    width: 400px;
    font: normal 12px/12px Georgia, "Times New Roman", Times, serif;
	border-radius:4px;
	background:#FFFFFF;


}

}
#center11 {
position: relative;
  background: #0D0D0D;
  width:940px;
  border-radius:10px;
  margin-left:10px;
  margin-top:70px;
}



#center11 li{
   font-size:18px;
	text-align:justify;
	line-height: 30px;
	color: #F3F3F3;
	width:880px;
	font-weight: 300;
	padding-bottom:10px;
	margin-left:50px;
	margin-right:20px;
}

p{
	font-size:18px;
	text-align:justify;
	line-height: 30px;
	color: #F3F3F3;
	width:910px;
	font-weight: 300;
	padding-bottom:10px;
	margin-left:20px;
}



div.nav{
	padding:0 5px;
	position:absolute;
	top:19em;
	}	

/* Hyperlink Styles: */


:root {
  --border-color: #fff;
  --dark-green: rgba(255, 255, 255, 0.86);
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
}

#ham-menu {
  display: none;
}
label[for="ham-menu"] {
  display: block;
  position: relative;
  top: 5px;
  left: 5px;
  z-index: 999;
  width: 60px;
  height: 60px;
  
  border-radius: 15px;
  border: 2px solid var(--border-color);
}
.ham-menu {
  width: 300px;
  height: 500px;
  position: relative;
  top: -55px;
  visibility: hidden;
  transform: translate();
  z-index: 400;
  background-color: #000;
  transition: 0.5s;
  display: flex;
  justify-content: center;
  align-items: center;
}
.ham-menu > ul {
  display: flex;
  flex-flow: column nowrap;
  justify-content: ;
 
  height: ;
}
.ham-menu > ul > li {
  font-size: 25px;
  cursor: pointer;
  line-height:10px;
  color: rgb(255, 255, 255);
}

#ham-menu:checked ~ div.ham-menu {
  transform: translate(0px);
  visibility: visible;
}

[for="ham-menu"] > div {
  width: 100%;
  height: 100%;
  display: flex;
  flex-flow: column wrap;
  align-content: center;
  align-items: center;
}
.menu-line {
  display: block;
  width: 17px;
  height: 2px;
  margin: 10px 0 5px;
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px;
  background-color: var(--border-color);
  transition: 500ms;
  transform-origin: right center;
}
[for="ham-menu"] > div > span:nth-child(4),
[for="ham-menu"] > div > span:nth-child(5),
[for="ham-menu"] > div > span:nth-child(6) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  transform-origin: left center;
}
#ham-menu:checked + label span {
  background-color: var(--dark-green);
}
#ham-menu:checked + label span:nth-child(2),
#ham-menu:checked + label span:nth-child(5) {
  transform: scale(0);
}
#ham-menu:checked + label span:nth-child(1) {
  transform: translateY(17px) rotate(45deg);
}
#ham-menu:checked + label span:nth-child(4) {
  transform: translateY(17px) rotate(-45deg);
}
#ham-menu:checked + label span:nth-child(3) {
  transform: translateY(-17px) rotate(-45deg);
}
#ham-menu:checked + label span:nth-child(6) {
  transform: translateY(-17px) rotate(45deg);
}

a {
	
  font-size: 1.6rem;
  line-height: 20px;
  letter-spacing: 0.1em;
  display: inline;
  text-decoration: none;
  color: #FFf;
  
}

a:visited {
	color: #FF0000;
	text-decoration:none;
	outline:none;
}

a:hover{
	text-decoration: underline;
	color:#0196e3;
}



/* Headings: */

h1,h2,h3{
	font-family:"Myriad Pro","Helvetica Neue",Helvetica,Arial,Sans-Serif;
	color: #fff;
}

h1{
	/* The logo text */
	font-size:3.5em;
	padding:0.5em 0 0;
	text-transform:uppercase;
}

h3{
	/* The slogan text */
	font-family:forte,"Myriad Pro","Helvetica Neue",Helvetica,Arial,Sans-Serif;
	font-size:2em;
	font-weight:normal;
	margin:0 0 1em;
	color:#FF6A07;
}


h2{
	font-size:20px;
	font-weight:normal;
	letter-spacing:0.01em;
	margin-left:20px;
	
}

p{
	font-size:18px;
	text-align:justify;
	line-height: 30px;
	color: #fff;
	width:910px;
	font-weight: 300;
	padding-bottom:10px;
	margin-left:20px;
}

li{
	font-size:14px;
	text-align:justify;
	line-height:1.6em;
	padding-bottom:1em;
	color:#DDDDDD;
}



div.nav{
	padding:0 5px;
	position:absolute;
	top:21em;
	}	
div.article .line{
	/* The dividing line inside of the article is darker: */
	background-color:#fff;
	border-bottom-color:#204656;
	margin:1em 0;
}

div.footer .line{
	margin:;
	
}







#center1 {
	margin: 0; padding: 0;
	float:right;
	width: 600px;
	line-height:25px;
}

/* creating center div  */
#center {
	 margin-left:10px;
	 margin-right:10px;
	width: 960px;
	line-height:25px;
	
}

#center td {
	font-size:20px;
	line-height: 30px;
	color: #fff;
	width:;
	font-weight: 300;
	padding-bottom:30px;
	vertical-align: middle;
	
	

}

#center li {
	font-size:20px;
	line-height: 30px;
	color:  #fff;
	width:;
	font-weight: 300;
	padding-bottom:20px;
	vertical-align: middle;
	

}

/* end of center div  */

#center001 {
	 margin-left:10px;
	 margin-right:10px;
	width: 920px;
	line-height:25px;
	background-color: #2B2D36;
	border-color: #FF3300;
	border-style:solid;
	border-radius:10px;
}
#center001 p{
	font-size:18px;
	text-align:justify;
	line-height: 24px;
	color: #fff;
	width:880px;
	font-weight: 300;
	padding-bottom:10px;
	margin-left:20px;
}

#center01 {
	margin: 0; padding: 0;
	float: left;
	width: 298px;
	line-height:25px;
}
#center02 {
	margin: 0; padding: 0;
	float:right;
	width: 298px;
	line-height:25px;
}

/* The clearfix hack to clear the floats: */

/* Gallery */

div.gallery1 {
  
  position: relative;
  text-align: center;
  color: white;
  width:500px;
  left:230px;
  
  
}

div.gallery1 img {
  width: 98%;
  height:;
  
}

div.gallery1 a:hover {
  text-decoration: underline;
	color: #FF0000 ;
  
}

div.gallery1 a {
  
	color: #FFF;
	size:50px;
  line-height:30px;
}




  

.centered {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.centered1 {
  position: absolute;
  top: 50%;
  left: 18%;
}

.centered2 {
  position: absolute;
  top: 83%;
  left: 5%;
}

div.gallery {
  margin: 5px;
  border: 1px solid #ccc;
  float: left;
  width: 178px;
 
}

div.gallery:hover {
  border: 1px solid #CC3300;
   
}

div.gallery img {
  width: 98%;
  height:;
  
}

div.desc {
  padding: 15px;
  text-align: center;
  color: #fff;
  font-size:14px;
  background-color:#000;
}

/* End of Gallery */

/* video container */
.video-container {
  max-width: 820px;
  position: relative;
  margin: auto;
}

/* end of video container */

/* Slideshow container */
.slideshow-container {
  position: relative;
  background: #0D0D0D;
  width:640px;
  border-radius:10px;
  margin-left:150px;
  
}

/* Slides */
.mySlides {
  display: none;
  padding: 50px;
  text-align: center;
  
}


/* The dot/bullet/indicator container */
.dot-container {
    text-align: center;
    padding: 20px;
    background: #000;
	width:640px;
	margin-left:150px;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #fff;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

/* Add a background color to the active dot/circle */
.active, .dot:hover {
  background-color: #FF0000;
}

/* Add an italic font style to all quotes */
q {font-style: normal;
	color: #FFFFFF; font-size:30px;
	line-height:40px;
	font-family: Geneva;
	
}

/* Add a blue color to the author */
.author {color: #FFF; font-style:italic; font-size:18px; }


#ak {
			background-color: #CB2128;
			border-radius:10px;
			float:right;

}


/* link in profile page*/
#ak a{

			color: #fff;
			
            text-align: center;
            display: inline-block;
            font-size: 22px;
            margin: 10px 30px;
            cursor: pointer;
            text-decoration: none;
			

}

#ak a:hover {

			color:#868686;
			
            text-align: center;
            display: inline-block;
            font-size: 22px;
            margin: 10px 30px;
            cursor: pointer;
            text-decoration: none;
			

}

/* link in contact page*/
#ac {
			background-color: #990000;
			border-radius:10px;
			float:;

}

#ac a{

			color: #fff;
			
            text-align: center;
            display: inline-block;
            font-size: 20px;
            margin: 10px 30px;
            cursor: pointer;
            text-decoration: none;
			

}

#ac a:hover {

			color: #868686 ;
			
            text-align: center;
            display: inline-block;
            font-size: 20px;
            margin: 10px 30px;
            cursor: pointer;
            text-decoration: none;
			

}


		
