html{
	overflow-x: hidden;
}
*{
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
	border: none;
}
p, a, h1, button {
	font-family: 'Lato', sans-serif;
	font-weight: 400;
}
a{
	color: inherit;
	text-decoration: none;
}
h1{
	font-size: 40px;
	font-weight: 400;
	color: #ED258B;
	text-align: center;
}
p{
	font-size: 1.5em;
}
.hero-image {
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	width: 100%;
	position: fixed;
	bottom: 100px;
	z-index: -1;
}


/* Navigation******************************************************************************************/

#full-nav{
	position: fixed;
	z-index: 100;
	width: 100%;
	background-color: white;
	top: 0px;
}
.logo{
	padding:15px 15px 15px 30px;
	width: 250px;
}
#topNav{
	display: flex;
	justify-content: space-between;
	width: 100%;
	z-index: 101;
	background-color: white;
	border-bottom: solid 5px #000000;
}

.nav-links{
	overflow: hidden;
	display: flex;
	text-decoration: none;
	text-align: center;
}
.nav-links button {
	border: none;
	float: left;
	outline: none;
	cursor: pointer;
	padding: 10px 20px 10px 20px;
	font-weight: 600;
	transition: 0.3s;
	font-size: 13px;
	text-transform: uppercase;
}

.page1-btn{
	color: white;
	float: left;
	background-color: #ead300;
}

.page2-btn{
	color: white;
	float: left;
	background-color: #592B81;
}
.page3-btn{
	color: white;
	float: left;
	background-color: #ed1d31;
}
.page1-btn:hover{
	background-color:#c9b100;
	transition: .2s;
}

.page2-btn:hover{
	background-color: #431F60;
	transition: .2s;
}
.page3-btn:hover{
	background-color: #c1272d;
	transition: .2s;
}

/*main-container*/

#main-container{
	position: relative;
	margin: auto;
	top: 60px;
	width: 80%;
	min-height: 80vh;
}
#content-wrap{
	padding-bottom: 2.5rem;
}

.title{
	font-size: 40px;
	margin: auto;
	display: flex;
	justify-content: center;
	text-align: center;
}
.sub-title {
	font-weight: 600;
	padding-top: 10px;
	font-size: 18px;
	margin: auto;
	display: flex;
	justify-content: center;
	text-align: center;
}

.one-column{
	width: calc(100%/3);
	float: left;
	padding: 0px;
}
#cube-column1{
	height: 200px;
	background-image: url("../Imgs/Graphics_cube1b.png");
	background-position: 50% 50%;
	background-size: contain;
	background-repeat: no-repeat;
}
#cube-column2{
	height: 200px;
	background-image: url("../Imgs/Graphics_cube2b.png");
	background-position: 50% 50%;
	background-size: contain;
	background-repeat: no-repeat;
}
#cube-column3{
	height: 200px;
	background-image: url("../Imgs/Graphics_cube3b.png");
	background-position: 50% 50%;
	background-size: contain;
	background-repeat: no-repeat;
}
#cube-column1:hover{
	background-image: url("../Imgs/Graphics_cube1a.png");
	transition: .2s;
}
#cube-column2:hover{
	background-image: url("../Imgs/Graphics_cube2a.png");
	transition: .2s;

}
#cube-column3:hover{
	background-image: url("../Imgs/Graphics_cube3a.png");
	transition: .2s;
}
.cubes{
	opacity:1;
}
.cubes:hover{
	opacity: .5;
	transition: 0.2s;
}
.full-column{
	justify-content: center;
	margin: auto;
	width: 80%;
	padding: 20px;
	
}
/*footer*****************************************************************************************/

#footer{
	width: 100%;
	background-color: #333333;
	background-image: url("../Imgs/Graphics_footer.png");
	background-size: cover;
	background-repeat: no-repeat;
	padding: 30px;
	position:relative;
	bottom: 0px;
	height: auto;
	float: none;
}
.footnotes{
	color: white;
	font-size: 12px;
	font-weight: 100;
}
.footerlogo{
	padding-top: 150px;
	width: 20%;
}
.footertagline{
	width: 50%;
	padding-top: 20px;
}

@media screen and (max-width:768px){
	.title{
		font-size: 25px;
	}
	.sub-title {
		font-size: 14px;
	}
	.full-column{
	width: 100%;
	
}
}