 
body
{
	font-family:"Raleway";
	font-size: 1em;
	background: #16174f;
	margin: 0;
}
.mobileShow { display: none;}

   /* Smartphone Portrait and Landscape */
@media only screen
and (min-device-width : 320px)
and (max-device-width : 780px){
	
.mobileHide { display: none;}	
.burger-nav{
	display:block;
	height:50px;
	width:auto;
	background: url(/images/burger.png) no-repeat 98% center;
	background-color:#808080;
	cursor: pointer;
}

.mobileShow { display: inline;}
.menu {
	  background: #808080;
	  display: none;
	  width: 100%;
	}
.menu ul {
	  list-style: none;
	  margin: 0;
	  padding: 0;
	  text-align: center;
	}
.menu ul li {
	  color: #fff;
	  font-size: 12px;
	  letter-spacing: 2px;
	  padding: 15px 0;
	  text-transform: uppercase;
	}
.menu ul li:hover { background: #5E5D5D; }

	 

.menu a {
	  text-decoration: none;
	  color: #fff;
}}

a {
	text-decoration: none; /* Remove the underline from links */
	color: white; /* change the colour, note US spelling and HEX notation */
	font-weight: bold; /* make the text bold */
	font-size: 23px;
}

a:focus {
	color: #000000; /* change colour when link gets focus */
} 

a:hover {
	color: #0000FF; /* change colour when pointer moves over hyperlink */
}
a:active {
	color: #ff0000; /* change colour when hyperlink is clicked */
} 
#Container
{
    max-width: 960px; /* Ensure the width does not go beyond this value */
	height: 100vh; /* Make the height the full screen or viewing size*/
	margin: 0 auto; /* Align the page in the centre - "auto" makes the left and right margins center the container */
}
 
.nav2{
	display: inline-table;
	height: auto;
	margin: 5px;
	text-align: left;
}

.heading {
	color: white;
	margin:30px;
	font-family:"Raleway";
}
 
 
 
 /* Style the Image Used to Trigger the Modal */
#myModelImages img{
	border-radius: 5px;
	cursor: pointer;
	border: 1px solid #ddd;
	padding: 5px;
	margin-left: 10px;
	
	margin-top:10px;
	
    transition: 0.3s;
}

#myModelImages img:hover {opacity: 0.7;
box-shadow: 0 0 2px 1px rgba(255, 255, 255, 0.5);}

/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}

/* Modal Content (Image) */
.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
	border:none;
}

/* Caption of Modal Image (Image Text) - Same Width as the Image */
#caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}

/* Add Animation - Zoom in the Modal */
.modal-content, #caption {
    -webkit-animation-name: zoom;
    -webkit-animation-duration: 0.6s;
    animation-name: zoom;
    animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
    from {-webkit-transform:scale(0)}
    to {-webkit-transform:scale(1)}
}

@keyframes zoom {
    from {transform:scale(0)}
    to {transform:scale(1)}
}

/* The Close Button */
.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}


.kit {
	text-decoration:none;
	display:inline-block;
	-webkit-border-radius: 50px;
	border:0;
    position: relative;
    -webkit-transition: all 200ms ease-in;
    -webkit-transform: scale(1); 
    -ms-transition: all 200ms ease-in;
    -ms-transform: scale(1); 
    -moz-transition: all 200ms ease-in;
    -moz-transform: scale(1);
    transition: all 200ms ease-in;
    transform: scale(1);   

}
.kit:hover {
    box-shadow: 0px 0px 100px #000000;
    z-index: 2;
    -webkit-transition: all 100ms ease-in;
    -webkit-transform: scale(1.25);
    -ms-transition: all 100ms ease-in;
    -ms-transform: scale(1.25);   
    -moz-transition: all 100ms ease-in;
    -moz-transform: scale(1.25);
    transition: all 100ms ease-in;
    transform: scale(1.25);
	
