/*Fade in on Page Load*/

body {
    animation: fadeInAnimation ease 1.5s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
     }
}

/*End of Fade in on Page Load*/

* {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
}

#logo-bm {
  display: block;
  width: 100%;
  height: 100%;
}

#logo-bmValli {
  display: block;
  width: 100%;
  height: 100%;
}

#logo-bmMasters {
  display: block;
  width: 100%;
  height: 100%;
}

#logo-bmMotion {
  display: block;
  width: 100%;
  height: 100%;
}

svg {
  display: block;
}

body{
	font-family: 'Montserrat', sans-serif;
}

/*Navigation*/

/*fixedNavbar is the entire navigation - whitefixedNavbar is a unique id given
to all pages save homepage so that a white bar is created behind navigation.
Reason for white bar is for content not to overlap with navigation upon scroll.*/

.fixedNavbar a {
	text-decoration: none;
	color: #333333;
	font-size: 1em;
}

.name a {
	font-weight: 800;
}

.accordion-menu {
	width: 20%;
	min-width: 255px;
	display: inline-block;
}

.accordion-menu .menu {
	width: 100%;
}

.accordion-menu ul {
	list-style-type: none;
}

.accordion-menu .menu li a {
	display: block;
}

.accordion-menu .menu ul li a {
	padding-top: 1rem; /*This is the leading among sub nav items*/
}

/*.accordion-menu .menu ul li a.white {
	background: #ffffff;
}*/

.accordion-menu .menu ul {
	display: none;
}

.fixedNavbar {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 50;
}

#whitefixedNavbar {
	/*padding: 2% 6% 1.2% 6%;*/
	background-color: #ffffff;
}
/*End of navigation*/

#container {
	padding-bottom: 4%;
	margin-left: 6%;
	margin-right: 6%;
	/*background-color: maroon;*/
}

img{
	max-width: 100%;
}

#page {
	color: #cccccc;
}

#page a {
	color: #cccccc;
	text-decoration: none;
}

#page a:hover{
	color: #666666;
	transition: 0.5s ease-in-out;
}

#work {
	color: #666666;
}

hr {
	height:1px;
	border-width:0;
	color:#dedede;
	background-color:#dedede;
}

/* [1] The container */
.img-hover-zoom {
  /*height: 300px;*/ /* [1.1] Set it as per your need */
  overflow: hidden; /* [1.2] Hide the overflowing of child elements */
	box-shadow: 0px/*r*/ 0px/*b*/ 3px/*spread*/ 1px/*spread*/ rgba(0, 0, 0, 0.1), 0 1px 8px 0 rgba(0, 0, 0, 0.07);
}

/* [2] Transition property for smooth transformation of images */
.img-hover-zoom img {
  transition: transform 1.5s ease;
	height: 100%;
	width: 100%;
	display: block;
}

/* [3] Finally, transforming the image when container gets hovered */
.img-hover-zoom:hover img {
  transform: scale(1.1);
}

#description h1{
	color: #444444;
	line-height: 27px;
}

#description h2{
	color: #666666;
}

#description p{
	color: #666666;
	font-size: .9rem;
	line-height: 22px;
}

#description a{
	color: #0099cc;
	font-weight: bolder;
	text-decoration: none;
}

#description a:hover{
	color: #007ea8;
  transition: 0.5s ease-in-out;
}

#description a.red{
	color: red;
}

#description a.red:hover{
	color: #ca0000;
  transition: 0.5s ease-in-out;
}

#description a.gray{
  font-weight: 600;
	color: #666666;
}

#description a.gray:hover{
	color: #333333;
  transition: 0.5s ease-in-out;
}

#description a.bronze{
	color: #b87c68;
}

#description a.bronze:hover{
	color: #895e50;
  transition: 0.5s ease-in-out;
}

#description a.fuchsia{
	color: #ff008a;
}

#description a.fuchsia:hover{
	color: #c4006a;
  transition: 0.5s ease-in-out;
}

#description a.turquoise{
	color: #22aab6;
}

#description a.turquoise:hover{
	color: #17848e;
  transition: 0.5s ease-in-out;
}

#description a.yellow{
	color: #f8bb00;
}

#description a.yellow:hover{
	color: #d6a100;
  transition: 0.5s ease-in-out;
}

#contentMaral #pic{
  padding-top: .15rem;
  /*background-color: red;*/
}

#contentMaral h3{
	color: #666666;
  font-weight: 700;
}

#contentMaral div{
  /*background-color: #f6f6f6;
  padding: 1rem;*/
}

#contentMaral p{
	color: #888888;
	font-size: .92rem;
	line-height: 25px;
  /*background-color: teal;*/
  margin-top: 0;
  margin-bottom: 0;
}

#contentMaral a{
	color: #0099cc;
	font-weight: bolder;
	text-decoration: none;
}

#footer {
  background-color: #e1e1e1;
  font-size: .7rem;
  padding: 1.5rem;
  text-align: center;
}

a#mail {
  color: #333333;
  text-decoration: none;
  font-weight: 700;
}

a#mail:hover {
  color: #777777;
  transition: 0.5s ease-in-out;
}


/*Media Queries*/

@media screen and (max-width: 500px) {

	/*Navigation*/
	.fixedNavbar {
		padding-top: 5%; /*Used paddings not margins because want to see if apply background-color.*/
		padding-left: 6%;
	}

	#whitefixedNavbar {
		padding-bottom: 3%;
	}

	.navigation {
		padding-top: 2%;
	}
	/*End of navigation*/

	/*MSU, LA, etc. landing pages*/
	#location {
			margin-top: 45%;
			/*background-color: green;*/
	}

	#page, #work {
		font-size: 1.1rem;
	}

	#content{
		display:grid;
		grid-gap:30px;
		margin: 3% 0; /*tb -- lr*/
		grid-template-columns: 1fr;
		/*background-color: teal;*/
	}

	#project {
		margin-top: 5%;
		/*background-color: red;*/
	}
/*End of MSU, LA, etc. landing pages*/

/*Per project page*/
#description{
	margin-top: 5%;
	/*background-color: red;*/
}

	#description h1{
		font-size: 1.4rem;
	}

	#description h2{
		font-size: 1rem;
	}

  video {
	  width: 100%;
	  height: auto;
	}

	div#centerVideo {
			/*background-color: green;*/
			text-align: center;
	}

	video#oneClub {
		width: 70%;
		height: auto;
	}
/*End of per project page*/

/*Regarding page*/

#contentMaral{
		margin-top: 5%;
    margin-bottom: 6%;
	}

p#credit {
  font-style: italic;
  font-weight: 400;
  color: #999999;
  font-size: .6rem;
  margin-bottom: 2.3rem;
}

p#credit a#green{
  color: #0c9e7e;
}

#footer {
  line-height: 20px;
}
/*End of Regarding page*/

}

@media screen and (min-width: 501px) {
	/*Navigation*/
	.fixedNavbar {
		padding: 4% 6% 1.2% 6%;
	}

	.name {
		float:left;
	}

	.navigation {
		float:right;
	}

	.accordion-menu .menu li a {
		text-align: right;
	}

	.dummy {
		clear:both;
	}
	/*End of navigation*/

	/*MSU, LA, etc. landing pages*/
	#location {
			margin-top: 18%;
			/*background-color: green;*/
	}

	#page, #work {
		font-size: 1.3rem;
	}

	#content{
		display:grid;
		grid-gap:30px;
		margin: 3% 0; /*tb -- lr*/
		grid-template-columns: repeat(3,1fr);
		/*background-color: teal;*/
	}

	#project {
		margin-top: 3%;
		/*background-color: red;*/
	}
/*End of MSU, LA, etc. landing pages*/

/*Per project page*/
	#description{
		margin-top: 3%;
		/*background-color: red;*/
	}

	#description h1{
		font-size: 1.4rem;
	}

	#description h2{
		font-size: 1rem;
	}

video {
	  width: 100%;
	  height: auto;
	}

	div#centerVideo {
			/*background-color: green;*/
			text-align: center;
	}

	video#oneClub {
		width: 45%;
		height: auto;
	}
/*End of per project page*/

/*Regarding page*/
p#credit {
  font-style: italic;
  font-weight: 400;
  color: #999999;
  font-size: .6rem;
  margin-bottom: 2rem;
}

p#credit a#green{
  color: #0c9e7e;
}

#contentMaral{
		margin-top: 3%;
  }
/*End of Regarding page*/

}

@media screen and (min-width: 1024px) {
	.fixedNavbar {
		padding: 2% 6% 1.2% 6%;
	}

	.name {
		float:left;
	}

	.navigation {
		float:right;
	}

	.accordion-menu .menu li a {
		text-align: right;
	}

	.dummy {
		clear:both;
	}

	#location {
		margin-top: 11%;
		/*background-color: green;*/
	}

	#page, #page a, #work{
		font-size: 1.5rem;
	}

	#content{
		display:grid;
		grid-gap:30px;
		grid-template-columns: repeat(5,1fr);
		margin-top: 2%;
		/*background-color: teal;*/
	}

#contentMaral{
		display:grid;
		grid-gap:30px;
		grid-template-columns: repeat(3,1fr);
		margin-top: 2%;
		/*background-color: fuchsia;*/
	}

p#credit {
  font-style: italic;
  font-weight: 400;
  color: #999999;
  font-size: .6rem;
}

p#credit a#green{
  color: #0c9e7e;
}

	#project {
		display: grid;
		grid-gap: 50px;
		grid-template-columns: repeat(5, 1fr);
		grid-template-areas:
			"a a a a b"
			"a a a a b"
			"a a a a b";
			/*background-color: yellow;*/
	}

	#gallery {
		grid-area: a;
		/*background-color: red;*/
	}


	#description {
		grid-area: b;
		/*background-color: blue;*/
	}

	#description h1{
		font-size: 1.7rem;
	}

	#description h2{
		font-size: 1.2rem;
	}

	video {
	  width: 100%;
	  height: auto;
	}

div#centerVideo {
		/*background-color: green;*/
		text-align: center;
}

	video#oneClub {
		width: 35%;
		height: auto;
	}

}
