body, html {
    height: 100%;
	width: 100%;
	overflow-x: hidden;
	background:black;
	font-family: 'Roboto', san-serif;
	display: flex; 
	flex-direction: column;
}

.background-color {
	background:black;
	width:100%;
}
.background-color-black {
	background:black;
	width:100%;
}
.background-color-white {
	background:white;
	width:100%;
}

.header-bar{
	padding-right: 0px !important;
	padding-left: 0px !important;
}

.header-bar input{
	margin-right:20px;
	margin-top:12px;
}

.header-bar input.right{
	float:right;
	margin-top:10x;
	margin-right:22px;
}
.header-bar img.left{
	float:left;
	margin-left:20px;
	margin-top:5px;
	margin-bottom:10px;
}

/* The hero image */
.hero-image {
	/* Use "linear-gradient" to add a darken background effect to the image (photographer.jpg). This will make the text easier to read */
	background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("/images/nasa-background_tiny.jpg");

	/* Set a specific height */
	height: 600px;

	/* Position and center the image to scale nicely on all screens */
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
}

.hero-sub-image {
	background-image: url("/images/TechnoNerds_White.png");

	/* Set a specific height */
	height: 25%;

}

.banner-text{
	height:50px;
	/*
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	*/
}

.banner-text p{
	margin:auto;
	width:max-content;
	font-size:34px;
	font-weight:400;
	text-align: center;
	color: #4e5099;
}

/* Place text in the middle of the image */
.hero-text {
	text-align: center;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: white;
}

.hero-text p {	
	font-size: 24px;
	font-weight: 300;
}

#information-bar{
	margin-top:40px;
}


#information-bar .col .info-contents{
	display: flex;
	align-items: center;
	justify-content: center;
}

#information-bar .col .info-contents P{
	font-size:20px;
	font-weight:400;
	text-align: center;
	color: #4e5099;
	padding-top:10px;
}

.input-button {
	background-color: #1581b2; /* Green */
	border: none;
	color: white;
	text-decoration: none;
	font-size: 16px;
	float:right;
	border-radius: 5px;
}

#image-scroller{
	margin-top:20px;
}

.image-scroller{
	padding-top:10px;
	background-color:pink;
	display: flex;
	align-items: center;
	justify-content: center;	
}

.footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  color: white;
  text-align: center;
}

.footer-centre {
  left: 0;
  bottom: 0;
  width: 100%;
  color: white;
  text-align: center;
  flex-grow: 1;
}


.privacy{	
	display: inline;
	align-items: center;
	justify-content: center;	
	text-align:justify;	
	padding: 10px 20px 10px 20px;
	margin-left:10px;
	width: 99vw !important;
}

.privacy_header {
    font-family: 'Roboto', sans-serif;
    font-size: 30px;
    font-style: normal;
    font-weight: 500;
    line-height: 0.8;
    text-decoration: underline;
    text-transform: uppercase;
}

.privacy_text {
    display: block;
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 300;
    line-height: 1.2;
}

.privacy_title {
    color: #1581b2;
}

.bold_title {
    font-weight: bold;
}

/* Image slider*/
.sliderContainer {
  overflow: hidden;
  width: 100vw;
  height: 200px;
}

.logoSlider>img {
  width: 400px;
  height: 200px;
  padding-right:50px;
}

.logoSlider {
  display: flex;
  animation: slideshow 240s infinite linear;
}

@keyframes slideshow {
  from {
    transform: translate(0px);
  }
  to {
    transform: translate(-3800px);
  }
}