/* CSS Document */
@charset"utf-8";
@font-face {
    font-family: 'IBM_VGA';
    src: url('../fonts/IBM_VGA.woff2') format('woff2'),
         url('../fonts/IBM_VGA.woff') format('woff'),
         url('../fonts/IBM_VGA.ttf') format('truetype'),
         url('../fonts/IBM_VGA.eot'); /* IE legacy */
    font-weight: normal;
    font-style: normal;
}

/* General CSS */
*{
	font-family: 'IBM_VGA';
	margin:0;
	padding:0;
	box-sizing:border-box;
	border-radius: 0;
	background-color: transparent;
}
.clearer{
	clear:both;
}
*:focus{
	outline:none;
}
body{
	font-family: 'IBM_VGA';
	font-size: 1rem;
	color:#00FF00;
	background-color: #000000;
}
.content{
	width:85%;
	margin:0 auto;
}
img{
	display:block;
	border:none;
}
header,nav,article,aside,section,footer,main,figure,figcaption,hgroup{
	display:block;
}
.clearfix::before,.clearfix::after{
	content:"\0020";
	display:block;
	height:0;
	overflow:hidden;
}
.clearfix::after{
	clear:both;
}
.responsive{
	width:100%;
	height:auto;
}
.invisible {
    opacity: 0;
}

/* Typography */
#logo{
	font-size: 2.5rem;
	margin-top: 35px;
	text-align: center;
}
h1,h2,h3,h4,h5,h6{
	color: #FFFFFF;
	margin-bottom:20px;
}
p, pre{
	margin-bottom:20px;
	line-height:25px;
}
pre{
	line-height:20px;
}
a{
	color: #FFFFFF;
	text-decoration:none;
	width: auto;
}
.tex-center{
	text-align:center;
}
.tex-right{
	text-align:right;
}

/* Header */
.blue{
	color: #007bff;
}
.yellow{
	color: #fffb00;
}
header{
	width:100%;
	height:auto;
	background-size:cover;
}
nav {
  display: block;
  width: 100%;
  height: auto;
  border-right: 2px solid #00FF00;
  text-align: left;
}
nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
nav li {
  display: block;
  margin: 0;
}
nav a {
  display: block;
  padding: 15px 25px;
  color: #00FF00;
  text-decoration: none;
}
nav li:hover > a {
  color: #ffffff;
}
nav li#current > a {
  color: #000000;
  background-color: #00FF00;
}
.mob-nav {
    display: none;
}

/* Tabs */
.tabs {
    display: flex;
    list-style: none;
	padding: 50px 50px 0;
	margin: -1px;
}
.tab-item {
    padding: 15px 25px;
    cursor: pointer;
}
.tab-item:hover {
    color: #FFFFFF;
}
.tab-item.active {
    color: #000000;
	background-color: #00FF00;
}

/* Content */
section{
	min-height:500px;
}
.box{
	padding: 50px;
	margin: -2px;
	border-left: 2px solid #00FF00;
}
.box-s{
	padding:20px;
}
.to-home{
	display: inline-block;
	padding: 10px 35px;
	margin: 20px 0 0;
	border: 2px solid #00FF00;
	background-color: transparent;
	color: #00FF00;
	font-size: 16px;
	cursor: pointer;
}
.to-home{
	color: #00FF00;
}
.cover img{
	width:auto;
	height:320px;
	margin:35px auto;
	padding:8px;
	opacity:0.75;
	transition:0.3s;
	-webkit-transition:0.3s;
	-moz-transition:0.3s;
	-o-transition:0.3s;
}
.cover img:hover{
	padding:0;
	opacity:1;
}
.insert a{
	display:block;
	width:180px;
	height:200px;
	margin:90px auto;
	padding:60px 30px;
	line-height:40px;
	font-weight:100;
	font-size:20px;
	color:#00FF00;
	border:1px solid#00FF00;
	background:none;
	cursor:pointer;
	transition:0.3s;
	-webkit-transition:0.3s;
	-moz-transition:0.3s;
	-o-transition:0.3s;
}
.insert:hover >a{
	color:#00FF00;
	border-color:#00FF00;
}
.divider, .divider-top, .divider-bottom{
	display: block;
    width: 100%;
	height: auto;
	float: inline-start;
}
.divider{
	margin: 15px;
}
.divider-top{
	margin-top: 20px;
    border-top: 2px solid #00FF00;
}
.divider-bottom{
	margin-bottom: 20px;
    border-bottom: 2px solid #00FF00;
}
::-webkit-scrollbar{
	width: 20px;
}
::-webkit-scrollbar-track{
	background: #000000;
}
::-webkit-scrollbar-thumb{
	background: #FFFFFF;
	border: 5px solid #000000;
}
::-webkit-scrollbar-thumb:hover {
	cursor: pointer;
}

/* Form */
label{
    color: #ffffff;
    display: block;
    margin: 10px 0;
}
input, textarea{
	display: block;
	width: 100%;
	padding: 10px;
	margin-bottom: 25px;
	border: 2px solid #00FF00;
	color: #FFFFFF;
	background-color: transparent;
	font-size: 16px;
	text-align: left;
}
textarea{
	resize: none;
	overflow-y: auto;
	overflow-x: hidden;
	height: 150px;
}
input:focus, output:focus, textarea:focus{
	outline: none;
	border-color: #FFFFFF;
}
button, input[type=submit]{
	display: block;
	width: 150px;
	padding: 10px;
	margin: 20px 0 0;
	border: 2px solid #00FF00;
	background-color: transparent;
	color: #00FF00;
	font-size: 16px;
	cursor: pointer;
}
.to-home:hover, button:hover, input[type=submit]:hover{
	background-color: transparent;
	color: #FFFFFF;
	border: 2px solid #FFFFFF;
}
.to-home:active, button:active, input[type=submit]:active{
	background-color: #00FF00;
	color: #000000;
	border: 2px solid #00FF00;
}
.copy{
	position: relative;
	display: inline-block;
	width: 100%;
}
.copy-button{
	position: absolute; 
    right: 0; 
    top: 0; 
	padding: 15px;
	display: block;
	width: auto;
	margin: 0;
	border: none;
}
.copy-button:hover {
    color: #FFFFFF;
	border: none;
}
.copy-button:active {
    color: #000000;
	background-color: #00FF00;
}
::-webkit-input-placeholder{
	font-size:18px;
	color:#888888;
}
::-moz-placeholder{
	font-size:18px;
	color:#888888;
}
:-moz-placeholder{
	font-size:18px;
	color:#888888;
}
:-ms-input-placeholder{
	font-size:18px;
	color:#888888;
}

/* Footer */
footer p{
	margin:0;
	line-height:30px;
	text-align:center;
	padding: 25px 0;
}

/* Grid System */
.col-1,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-10,.col-11,.col-12{
	display: block;
	float: inline-start;
}
.col-1{
	flex: 0 0 8.33%;
	width: 8.33%;
}
.col-2{
	flex: 0 0 16.66%;
	width: 16.66%;
}
.col-3{
	flex: 0 0 25%;
	width: 25%;
}
.col-4{
	flex: 0 0 33.33%;
	width: 33.33%;
}
.col-5{
	flex: 0 0 41.66%;
	width: 41.66%;
}
.col-6{
	flex: 0 0 50%;
	width: 50%;
}
.col-7{
	flex: 0 0 58.33%;
	width: 58.33%;
}
.col-8{
	flex: 0 0 66.66%;
	width: 66.66%;
}
.col-9{
	flex: 0 0 75%;
	width: 75%;
}
.col-10{
	flex: 0 0 83.33%;
	width: 83.33%;
}
.col-11{
	flex: 0 0 91.66%;
	width: 91.66%;
}
.col-12{
	flex: 0 0 100%;
	width: 100%;
}

/* Responsive CSS*/
@media (max-width: 1024px) {
	.content{
		width:100%;
		margin:0;
	}
	.box{
		padding:30px;
	}
	#logo{
		margin-top:35px;
	}
	.tabs{
		padding: 30px 30px 0;
	}
	.col-1,.col-2,.col-3{
		flex: 0 0 30%;
		width: 30%;
	}
	.col-4,.col-5,.col-6,.col-7,.col-8,.col-9{
		flex: 0 0 70%;
		width: 70%;
	}
	.col-10,.col-11,.col-12{
		flex: 0 0 100%;
		width: 100%;
	}
}

@media (max-width: 600px) {
	.box{
		margin: 0;
		border-left: none;
	}
	header p{
		padding: 0 30px;
	}
	footer p{
		padding: 30px;
	}	
	.mobile-menu {
		display: none;
		border-right: none;
		width: 100%;
	}
	nav {
		display: none;
		border-right: none;
		width: 100%;
	}
	nav.open {
		display: block;
	}
	nav a {
		border-right: none;
		border-bottom: 1px solid #00FF00;
	}
	nav li:active > a {
		border-right: none;
		color: #000000;
		background-color: #00FF00;
	}
	nav li#current > a {
		border-right: none;
	}
	.mob-nav {
		display: flex;
		justify-content: center;
		align-items: center;
		height: 100px;
	}
	.burger-menu {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		width: 50px;
		height: 35px;
		cursor: pointer;
	}
	.burger-menu span {
		display: block;
		height: 5px;
		width: 100%;
		background-color: #FFFFFF;
	}
	.mob-nav, .burger-menu {
		background: none;
	}
	.burger-menu.open span:nth-child(1) {
		transform: rotate(45deg) translate(14px, 14px);
		height: 7px;
		background-color: #FF0000;
	}
	.burger-menu.open span:nth-child(2) {
		opacity: 0;
	}
	.burger-menu.open span:nth-child(3) {
		transform: rotate(-45deg) translate(6px, -6px);
		height: 7px;
		background-color: #FF0000;
	}
	.col-1,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-10,.col-11,.col-12{
		min-width: 100%;
	}
}