/* DESIGN CSS */

@import url(https://fonts.googleapis.com/css?family=Open+Sans);
@import url(https://fonts.googleapis.com/css?family=Oswald);

.column {
	/* PADDING OVERRIDES */
    padding-left: 0px !important;
    padding-right: 0px !important;
}

/* HEADER SYSTEM STYLING */

#header-div {
	text-align: center;
	text-decoration: none;
	width: 100%;
	height: auto;
	background-color: #fff;
}

#header-div img {
	padding: 10px;
}


/* NAVIGATION/MENU SYSTEM STYLING */

#navibar-div {
	padding: 5px 0px;
	text-align: center;
	font-weight: bold;
	font-size: 1.25em;
	font-family: 'Lato';
	text-decoration: none;
	text-transform: uppercase;
	color: #FFFFFF;
	background-color: #352828;
}

#navibar-div ul {
	list-style: none;
	padding: 0px;
	margin: 0px;
}

#navibar-div li {
	margin: 0;
	display: inline;
	text-shadow: 0px 0px 2px #000000;
}

#navibar-div ul li a {
	text-decoration: none;
	color: #FFFFFF;
	padding: 0px 10px;
	transition: all .5s;
}

#navibar-div ul li a:hover {
	color: rgba(255,0,0,1.00);
}

#error404  {
	position: relative;
	/* ^ SET POSITION OF NAVIGATION BAR: RELATIVE or FIXED */
	width: 100%;
	height: auto;
	vertical-align: central;
	-moz-box-shadow: 5px 5px 5px rgba(10,10,10,.75);
	-webkit-box-shadow: 5px 5px 5px rgba(10,10,10,.75);
	box-shadow: 5px 5px 5px rgba(10,10,10,.75);
	/* For IE 8 */
	-ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=120, Color='rgb(10,10,10)')";
	/* For IE 5.5 - 7 */
	filter: progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=120, Color='rgb(10,10,10)');
	
	font-family: 'Oswald', sans-serif;
	font-size: 1.5em;
	text-align: center;
	background-image: -webkit-linear-gradient(270deg,rgba(215,214,214,1.00) 46.23%,rgba(204,203,203,1.00) 49.41%);
	background-image: linear-gradient(180deg,rgba(215,214,214,1.00) 46.23%,rgba(204,203,203,1.00) 49.41%);
}

#error404 a {
	color: #4D4D4D;
	/* ^ SET NAVIGATION LINKS COLOR */
	padding: 10px;
	transition: all .25s;
}
#error404 a:hover {
	color: #FFF;
	/* ^ SET NAVIGATION ROLLOVER LINKS COLOR */
	text-shadow: 0px 0px 5px #000;
	/* ^ ADD OUTER GLOW TO NAVIGATION ROLLOVER LINKS */
}

#pagecontent {
	padding: 40px;
}

#footer-div {
	position: fixed;
	bottom: 0px;
	z-index: 1000;
	width: 100%;
	height: auto;
	background-color: rgba(202,202,202,0.90);
	font-size: 12px;
	font-family: 'Lato';
	color: #5B5B5B;
	border-radius: 8px 8px 0px 0px;
	padding-bottom: 20px;
	backdrop-filter: blur(10px);
}

.footer-links {
	font-size: small;
	color: #5B5B5B;
}

.footer-links a {
	color: #5B5B5B;
	text-decoration: none;
	transition: all .5s;
}

.footer-links a:hover {
	text-decoration: none;
	color: rgba(255,0,0,1.00);
}

.footer-links img, .footer-copyright img {
	padding: 0px 5px;
	height: 32px;
}



@media only screen and (min-width: 1024px) {
/* DESKTOP 1024 or Higher*/

	.hide-on-desktop {
		display: none;
	}
	
	#header-logo {
		width: 100%;
		max-width: 402px;
	}

	.footer-links {
		float: left;
		text-align: left;
		padding: 10px 20px;
		color: #5B5B5B;
	}

	.footer-links ul {
		list-style: none;
		padding: 0px;
		margin: 0px;
	}

	.footer-links li {
		padding: 0px;
		margin: 0px;
		font-size: small;
	}

	.footer-links li a, a:hover {
		text-decoration: none;
		color: #5B5B5B;
	}


	.footer-copyright {
		float: right;
		text-align: right;
		width: auto;
		padding: 10px 20px;
		font-size: small;
		font-family: 'Lato';
		color: #5B5B5B;
	}

	.footer-copyright a, a:hover {
		text-decoration: none;
		color: #5B5B5B;
	}
	
	
	/* BANNER DESKTOP */
	
	.banner-container {
		height: 250px;
		width: 100%;
	}
	
	.banner-container-text {
		position: absolute;
		z-index: 1000;
		margin: auto 0px;
		width: 50%;
		padding: 20px;
		color: white;
		text-shadow: 0px 0px 5px #000;
		font-family: "Open Sans", sans-serif;
		text-decoration: none;
		font-weight: bold;
		text-align: justify;
		background-color: rgba(0,0,0,0.25);
		border-radius: 0px 8px 8px 0px;
		transform: translateY(20%);
		transition: all 2s;
	}
	
	.banner-container-text:hover {
		cursor: pointer;
		background-color: rgba(0,0,0,0.85);
	}

	.scrolling-image-container {
		overflow: hidden;
		height: 250px;
		width: 100%;
		background-color: #338ca4;
		transition: all 2s;
	}
	
	.scrolling-image-container:hover {
		filter: blur(4px) grayscale(100%);
		cursor: pointer;
	}

	.scrolling-image {
		background: url("map-of-the-world.jpg");
		background-size: contain;
		height: 901px;
		animation: slideDesktop 180s linear infinite;
	}

}

@keyframes slideDesktop {
	  0% {
		transform: translateY(0);
	  }
	  100% {
		transform: translateY(-901px)
	  }
}

@media only screen and (max-width: 1023px) {
/* MOBILE 1023 or Less*/
	
	.hide-on-mobile {
		display: none;
	}
	
	#header-logo {
		width: 90%;
	}

	.footer-links {
		text-align: center;
		padding: 10px 20px;
		font-size: medium;
		font-family: 'Lato';
		color: #5B5B5B;
	}

	.footer-links ul {
		list-style: none;
		padding: 0px;
		margin: 0px;
	}

	.footer-links li {
		padding: 0px;
		margin: 0px;
		font-size: small;
	}

	.footer-links li a, a:hover {
		text-decoration: none;
		color: #5B5B5B;
	}


	.footer-copyright {
		float: none;
		text-align: center;
		width: 100%;
		font-size: small;
		font-family:  'Lato';
		color: #5B5B5B;
	}

	
	/* BANNER MOBILE */

	.scrolling-image-container {
		background: url("home-web-apps.png") no-repeat;
		background-size: contain;
		height: 60vw;
	}
	
	.banner-container-text {
		padding: 20px;
		color: #5B5B5B;
		text-shadow: 0px 0px 5px #DCDCDC;
		font-family: "Open Sans", sans-serif;
		text-decoration: none;
		font-weight: bold;
		text-align: justify;
	}

}
