@charset "utf-8";
/* CSS Document */

*, *:before, *:after {
	box-sizing: border-box;
}
body {
	margin: 0px;
	font-family: 'Lato', sans-serif;
	font-size: 14px;
	color: #000000;
	background-color:#AAAAAA;
}

h1, p {
	margin: 0px;
}

b1 {
	color:#FFFFFF;
	font-family: 'Lato', sans-serif;
	font-size: 14px;
	font-weight: 400;
}

b2 {
	color: #000000;
	font-size: 16px;
	font-weight: 600;
}

h2 {
	font-size: 16px;
}

a {
font-family: 'Lato', sans-serif;
}
.products{
	display: block;
	color: #ffffff;
	background-color: #2e3192;
	padding: 10px 0px 10px 20px;
}
.geniejet {
	background-color: #FFFFFF;
	padding: 10px 10px 20px 20px;
}

.logo {
	margin-left: auto;
	margin-right: auto;
}
/*----------------- Top Navigation Bar -----------------*/
.topnav {
	overflow: hidden;
	background-color: #2e3192;
}
.topnav a {
	float: left;
	display: block;
	color: #FFFFFF;
	text-align: center;
	padding: 10px 40px 10px 40px;
	text-decoration: none;
}
.topnav a:active {
	background-color: #2B338C;
	color: white;
}

.topnav a:hover {
	background-color: #555;
	color: white;
}

.page {
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	background-color:#CCCCCC;
}

.wrapper {
	display: grid;
	grid-template-columns: 270px 1fr;
	grid-template-rows: auto 1fr auto;
	grid-template-areas: "sidebar header" "sidebar article" "footer footer";
	grid-gap: 20px;
	margin-top: 20px;
}
.header {
	grid-area: header;
	margin-right: 20px;
}
.sidebar {
	display: block;
	grid-area: sidebar;
	background-color: #555555;
	margin-left: 20px;
	padding: 0px;
}
.article {
	grid-area: article;
	background-color: white;
	padding: 20px;
	margin-right: 20px;
}
.footer {
	grid-area: footer;
	background-color: #ee3342;
	color: white;
	text-align: center;
}
	


/*  SIDE MENU */

.new {
	margin-top: 300px;
}

li b4 {
	display: block;
	min-width: 250px;
	height: 37px;
	text-align: left;
	line-height: 37px;
	color: #fff;
	background: #3D3D3D;
	text-decoration: none;
	padding: 0 0 0 20px;
	border-bottom: thick;
	border-color: #fff;
}

#menu{
	display: none;
}

ul {
	width: 250px;
	list-style-type: none;
	margin-top: 20px;
	padding: 0px;
	position: absolute;
}

li {
	display: block;
	float: left;
	margin-top: 0px;
}

li a {
	display: block;
	min-width: 250px;
	height: 37px;
	text-align: left;
	line-height: 37px;
	color: #fff;
	background: #555;
	text-decoration: none;
	padding: 0 0 0 35px;
}
/* -- Hover State for Top Level links -- */
li:hover a {
	background: #2B338C;
}

/* -- Style for Dropdown links -- */
li:hover ul li a {
	background: #BDCDF9;
	color: #2B338C;
	height: 40px;
	line-height: 40px;
}
/* -- Hover State for dropdown links -- */
li:hover ul li a:hover {
	background: #ee3342;
	color: #fff;
}

/* -- Hide Dropdown Links until they are needed -- */
li ul {
	display: none;
}

/* -- Make Dropdown links vertical -- */
li ul li {
	display: block;
	float: none;
}
/* -- Prevent Text Wrapping on dropdown links -- */
li ul li a {
	min-width: 100%;
	padding: 0 20px;
}
/* -- Display the dropdown on Hover -- */

ul li a:hover + .hidden, .hidden:hover {
	margin-top: 0px;
	display: block;
}
/* Hide Check Box*/
input[type=checkbox] {
	display: none;
}
/* Show menu when invisible checkbox is checked */
input[type=checkbox]:checked ~ #menu {
	display: block;
}
/* Style for the Button */
.show-menu,
.fas,
.fa-bars{
	display: none;
}





/* Begin Responsive Styling */

@media screen and (max-width: 768px) {
	
.wrapper {
	margin-top: -3px;
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: auto auto 1fr 1fr;
	grid-template-areas: "header" "sidebar" "article" "footer";
	grid-gap: 0px;
}
.header {
	grid-area: header;
	margin-right: 0px;
	border-radius: 0px;
}
.sidebar {
	display: block;
	margin-left: 0px;
}
.article {
	grid-area: article;
	margin: 0px;
}
.footer {
	grid-area: footer;
}
.topnav {
	border-radius: 0px 0px 0px 0px;
}
.topnav a {
	min-width: 25%;
	float: center;
	display: block;
	color: #FFFFFF;
	text-align: center;
	padding: 10px 10px 10px 10px;
	text-decoration: none;
	font-size: 12px;
}

.products {
	display: none;
	}
	
	li a {
	display: block;
	min-width: 100%;
	height: 50px;
	text-align: left;
	line-height: 50px;
	color: #fff;
	background: #555;
	text-decoration: none;
	padding: 0 0 0 20px;
}
	
	/* Make dropdown appear links */
	ul {
		margin-top: 0px;
		font-size: 18px;
		position: static;
		display: none;
		min-height: 50px;
		min-width: 90%;
	}
	/* Create Vertical Spacing */
	li {
		margin-top: 0px;
		margin-bottom: 0px;
	}
	/* Make all menu links full width */
	ul li, li a {
		min-width: 100%;
	}
	/* Make the menu show up in collapsed form */
	.show-menu {
	display: block;
	text-decoration: none;
	color: #fff;
	background: #555;
	font-size: 20px;
	text-align: left;
	padding: 20px;
	}
}


.headline {
	display: block;
	color: #ffffff;
	background-color: #2e3192;
	padding: 10px 0px 10px 20px;
}

.home-intro {
	background-image:url(../images/background_image.jpg);
	background-size: cover;
	padding: 20px 30px 0px 30px;
}

.trblue {
	background-color: #2e3192;
	color: #fff;
	border: 1px;
	cellpadding: 4px;
	cellspacing: 1px;
	text-align: left;
	vertical-align: middle;
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 0px solid #fff;
    margin: 6px 0;
    padding: 0; 
	border-color: #BBBBBB;
	background-color: #BBBBBB;
}

.products-table {
	border: 1px;
	border-color: #BBBBBB;
	padding: 3px;
	width: 100%;
	border-spacing: 1px;
}

.gj-home {
		background-image:url(../images/background_image.jpg);
	background-size: cover;
	padding: 20px 30px 0px 30px;
}

.text {
	padding: 0px 30px 0px 20px;
}

.center {
	display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Style buttons */
.btn {
  background-color: DodgerBlue;
  border: none;
  color: white;
  padding: 12px 30px;
  cursor: pointer;
  font-size: 20px;
}

/* Darker background on mouse-over */
.btn:hover {
  background-color: RoyalBlue;
}


