/* Comment */

* {
	box-sizing: border-box;
}

body {
	font-family: Helvetica, Arial, sans-serif;
	background-color: #d5d5d5;
	color: #7f7f7f;
	font-weight: bold;
	margin: 0 auto;
	box-sizing: border-box;
}


p {
	font-weight: normal;
}


a:link {
  text-decoration: underline;
  color: #7f7f7f;
}

a:visited {
  text-decoration: underline;
  color: #7f7f7f;
}

a:hover {
  text-decoration: underline;
  color: #7f7f7f;
  cursor: pointer;
}

a:active {
  text-decoration: underline;
  color: #707070;
}



/* Header */
.sec-menu {
	display: grid;
	grid-template-columns: auto auto auto auto;
	grid-gap: 15px;
	padding: 10px 0 0 0;
	position: absolute;
	top: 0px;
	left: 25%;
	right: 25%;
}

.sec-menu > div {
	text-align: center;
}

.sec-menu a:link {
  text-decoration: none;
  color: #666666
}


.sec-menu a:visited {
  text-decoration: none;
  color: #666666;
}


.title-banner {
	display: block;
	background-color: #999999;
	background-image: url("mesa-arch-crop.jpg");
	/*background-image: url("banner.jpg");*/
	background-repeat: no-repeat;
	background-position: center;
	background-attachment: scroll;
	background-size: cover;
	height: 500px;
	background-position: absolute;
	top: 0px;
	z-index: -1;
}

.title-banner h1 {
	max-width: 400px;
	display: block;
	font-weight: bold;	
	color: #666666;
	border: 4px solid #666666;
	text-align: center;
	border-radius: 2px;
  	margin: 0 auto;
  	padding: 10px;
 	position: relative;
 	top: 50%;
}


/* About */

div.sec-about {
	margin: 80px auto 80px ;
	max-width: 900px;

}

.sec-about img {
	display: block;
	float: left;
	max-height: 320px;
	margin: 0 30px;
}

.name {
	display: block;
	margin: 4px 30px;
}


.backstory {
	margin: 48px 30px;
	display: block;
	font-style: normal;

}

.about-contact {
	margin: 0 30px;
	display: block;

}

h2.about-contact {
	display: block;
	font-size: 1rem;
}

h3.about-contact {
	font-style: normal;
	display: block;
	font-size: .85rem;
}




/* Skills */
.skills {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	align-content: space-around;
	align-items: flex-start;
	margin: 40px auto;
	padding: 0 10px;
	max-width: 1000px;
}

ul {
	list-style-type: circle;
	list-style-position: outside;
	font-weight: normal;
	font-size: .75rem;
	padding: 0 20px 0 8px ;
	margin: 4px 8px ;
}

h4 {
	font-size: .875rem;
	margin: 0;
}

#ind {
	flex: 0 1 240px;
	margin: 0px;
}

#eng {
	flex: 0 1 240px;
	margin: 0px;
}

#img {
	flex: 0 1 240px;
	margin: 0px;
}

#fab {
	flex: 0 1 240px;
	margin: 0px;
}











/* Projects */
.sec-projects {
	margin: auto;
	padding-top: 60px;
}

#projects {
	max-width: 960px;
	margin: 20px auto;
}




/* Slideshow container */
.slideshow-container {
  max-width: 1200px;
  position: relative;
  margin: 40px auto auto;
}

/* Hide the images by default */
.SeraSlides .ApolloSlides {
  display: none;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  background-color: rgba(0,0,0,0.1);
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px 40px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}











/* Work */
.sec-work {
	margin: auto;
	padding-top: 40px;
	max-width: 1232px;
}

#work {
	max-width: 900px;
	margin: 40px auto;
}


/*Image Grid */
.row {
  display: flex;
  flex-wrap: wrap;
  padding: 0 8px;
}

/* Create four equal columns that sits next to each other */
.column {
  flex: 30%;
  max-width: 33.33%;
  padding: 0 8px;

}

.column img {
  margin-top: 8px;
  vertical-align: middle;
  width: 100%;
}


/* Responsive layout - makes a two column-layout instead of four columns */
/*
@media screen and (max-width: 700px) {
  .column {
    flex: 50%;
    max-width: 50%;
  }
}
*/

.column p {
	font-size: .8rem;
	padding: 0 auto 10px;
	margin: 4px;
  	border-bottom: 1px solid #999999;
}




/* Icons */

.sec-icons {
	margin: auto;
	font-size: 1rem;
	padding-top: 80px;
}


.logobar{
	display: flex;
	justify-content: center;
	flex-wrap: nowrap;
	align-content: space-around;
	margin: 30px auto;
	padding: 0 8px;
	max-width: 1200px;
	max-height: 200px;
}

.logobar a {
	margin: 0;
}

.logobar img {
	width: 9%;
	height: 100%;
	margin: 12px;
}



#icons {
	max-width: 900px;
	margin: 30px auto;
}










/* Footer / Contact */
.sec-contact {
	padding: 0 20px 100px;
	margin: 30px auto 100px auto;
	max-width: 600px;

}

.sec-contact h2 {
	margin-top: 0;
	margin-bottom: 0;
	font-size: .9rem;
}

.sec-contact h3 {
	margin-top: 0;
	font-style: normal;
	font-size: .75rem;
}

.sec-contact a {
	margin: 0
}

.school {
	display: inline-block;
	float: left;
}
.contact {
	display: inline-block;
	float: right;
	padding-right: 10px;
}






@media only screen and (max-width: 500px) {


.sec-menu {
	display: none
}

 .title-banner {
	display: block;
	background-color: #999999;
	background-image: url("mesa-arch-crop.jpg");
	/*background-image: url("banner.jpg");*/
	background-repeat: no-repeat;
	background-position: center;
	background-attachment: scroll;
	background-size: cover;
	height: 300px;
	background-position: absolute;
	top: 0px;
	z-index: -1;
}

.title-banner h1 {
	max-width: 300px;
	display: block;
	font-weight: bold;	
	color: #666666;
	border: 4px solid #666666;
	text-align: center;
	border-radius: 2px;
  	margin: 0 auto;
  	padding: 10px;
 	position: relative;
 	top: 50%;
 	font-size: 1.5rem;
}

.sec-about img {
	display: none;
}


.column {
    flex: 100%;
    max-width: 100%;
}

.sec-contact {
	padding: 0 20px 100px;
	margin: 30px auto 100px auto;
}

.school {
	display: inline;
	margin: 0 auto;
	padding-right: 6px;
	float: left;
}

.contact {
	display: inline;
	margin: 0 auto;
	float: left;
}


}

