@charset "UTF-8";
/* Simple fluid media
   Note: Fluid media requires that you remove the media's height and width attributes from the HTML
   http://www.alistapart.com/articles/fluid-images/ 
*/
img, object, embed, video {
	max-width: 100%;
}

/* IE 6 does not support max-width so default to width 100% */
.ie6 img {
	width:100%;
}

/*
	Dreamweaver Fluid Grid Properties
	----------------------------------
	dw-num-cols-mobile:		4;
	dw-num-cols-tablet:		8;
	dw-num-cols-desktop:	12;
	dw-gutter-percentage:	25;
	
	Inspiration from "Responsive Web Design" by Ethan Marcotte 
	http://www.alistapart.com/articles/responsive-web-design
	
	and Golden Grid System by Joni Korpi
	http://goldengridsystem.com/
*/

.fluid {
	width: 100%;  
	

	
}

.fluidList {
    list-style:none;
    list-style-image:none;
    margin:0;
    padding:0;
	width: 100%;        
}

/* Add a black background color to the top navigation */
#navbar {
    
    background-color: #ffffff;
    overflow: hidden;
	border-bottom: 4px;
	border-bottom-style: solid;
	border-bottom-color: #9e005d;
	 padding: 50px 10px; /* Large padding which will shrink on scroll (using JS) */
  transition: 0.4s; /* Adds a transition effect when the padding is decreased */
  position: fixed; /* Sticky/fixed navbar */
  width: 100%;
  top: 0; /* At the top */
  z-index: 99; 

}

.topnav2 {
 
	
	margin: auto;
	
	max-width: 1024px;

	
}
/* Style the links inside the navigation bar */
#navbar a {
  float: left;
  
  text-align: center;
  padding-right: 16px;
	padding-left: 16px;
  text-decoration: none;
  font-size: 17px;
	
}

/* Change the color of links on hover */
#navbar a:hover {
 background-color: #ffffff;
   
	
	
}

/* Add a color to the active/current link */
#navbar a.active {
  background-color: #ffffff;
  color: white;
}

/* Centered section inside the top navigation */


.topnav-centered {
  float: none;
  position: absolute;
  top: 50%;
  left: 50%;
	padding-right: 7px;
  transform: translate(-50%, -50%);
}

/* Right-aligned section inside the top navigation */
.topnav-right {
  float: right;
	margin-top:-2px;
}
.topnav-right2 {
  line-height: 60px;
	float: right;
	padding-right: 10px;
}

/* Responsive navigation menu - display links on top of each other instead of next to each other (for mobile devices) */
@media screen and (max-width: 600px) {
  #navbar a, .topnav-right {
    float: none;
    display: block;
  }

  .topnav-centered a {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
  }
}

/* Dropdown Button */
.dropbtn {
    background-color: #ffffff;
	border-top: none;
	border-right: none;
	border-left: none;
    border-bottom: 1px;
	border-bottom-style: solid;
	border-bottom-color: #ffffff;
    cursor: pointer;

}

/* Dropdown button on hover & focus */
.dropbtn:hover, .dropbtn:focus {
    background-color: #ffffff;
}
.dropbtn2 {
    background-color: #ffffff;
	border-top: none;
	border-right: none;
	border-left: none;
    border-bottom: 1px;
	border-bottom-style: solid;
	border-bottom-color: #ffffff;
	
    

}

.dropbtn2 a:hover {
	background-color: #ffffff;
   	border-top: none;
	border-right: none;
	border-left: none;
	border-bottom: 1px;
	border-bottom-style: solid;
	border-bottom-color: #9e005d;
}

.dropbtn3 {
    background-color: #ffffff;
	border-top: none;
	border-right: none;
	border-left: none;
float: left;
	
    

}

.dropbtn3 a:hover {
	background-color: #ffffff;
   	border-top: none;
	border-right: none;
	border-left: none;
	border-bottom: 1px;
	border-bottom-style: solid;
	border-bottom-color: #9e005d;
}



/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: relative;
    display: inline-block;
	float: left;
	background-color: #ffffff;
	margin-top:-1px;
	

}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: fixed;
    background-color: #ffffff;
   width: 172px;
   text-align: left;
    z-index: 1;
	float: left;
	margin-left: -10px;
	
}

/* Links inside the dropdown */
.dropdown-content a {
    color: black;
    text-decoration: none;
    display: block;
	float: left;
	width: 140px;
	border-bottom: 1px;
	border-bottom-style: solid;
	border-bottom-color: #ffffff;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
	background-color: #ffffff;
  
	border-bottom: 1px;
	border-bottom-style: solid;
	border-bottom-color: #9e005d;}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {display: block;}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {background-color: #ffffff;
   
	border-bottom: 1px;
	border-bottom-style: solid;
	border-bottom-color: #9e005d;}

/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.show {display:block;}


#top {
	float: left;
	height: 72px;
	width: 20%;
	margin-right: auto;
	margin-left: auto;
	
}
#top:hover {
	border-bottom: 4px;
	border-bottom-style: solid;
	border-bottom-color: #9e005d;

	
}




@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Center the loader */
#loader {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: 150px;
  height: 150px;
  margin: -50px 0 0 -50px;
     border: 4px solid #f3f3f3;
  border-radius: 50%;
  border-top: 4px solid #9e005d;
  width: 100px;
  height: 100px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
	
}

@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Add animation to "page content" */
.animate-bottom {
  position: relative;
  -webkit-animation-name: animatebottom;
  -webkit-animation-duration: 1s;
  animation-name: animatebottom;
  animation-duration: 1s
}

@-webkit-keyframes animatebottom {
  from { bottom:0; opacity:0 } 
  to { bottom:0px; opacity:1 }
}

@keyframes animatebottom { 
  from{ bottom:0; opacity:0 } 
  to{ bottom:0; opacity:1 }
}

#myDiv {
  display: none;
}

.nav {

	width: 100%;
	height: 75px;
	margin-right: auto;
	margin-left: auto;
	border-top: 3px;
	border-top-style: solid;
	border-top-color: #9e005d;
	background-color: #ffffff;
			border-bottom: 1px;
	border-bottom-style: solid;
	border-bottom-color: #cccccc;

}


#graphicdesign {
	max-width: 200px;
	height: 40px;
	float: right;

	padding-top: 6px;
	padding-right: 15px;

}

#daniellegerard{
	max-width: 200px;
		height: 40px;
	border-right: 1px;
	border-right-style: solid;
	border-right-color: #9e005d;
	padding-top: 5px;
	
	float: left;

}

	


h1{color:#9e005d;
font-family: century-gothic, sans-serif;
font-size:14px;
line-height: 14px;
font-weight: lighter;
text-align: right;

}

h2{color:#999999;
font-family: century-gothic, sans-serif;
font-size:14px;
line-height: 6px;
font-weight: lighter;
text-align: left;


}


h3{color:#999999;
font-family:century-gothic, sans-serif;
font-size:12px;
line-height: 43px;
font-weight: lighter;
text-align: left;

}


h4{
	color: #999999;
	font-family: century-gothic, sans-serif;
	font-size: 13px;
	font-weight: lighter;
	text-align: center;
	font-style: italic;
	line-height: 25px;

}

h5{
	color: #9e005d;
	font-family: century-gothic, sans-serif;
	font-size: 14px;
	font-weight: lighter;
	text-align: center;
font-style: italic;
padding-bottom: 20px;
	
}

h6{color:#999999;
font-family:century-gothic, sans-serif;
font-size:13px;
font-weight: lighter;
text-align: center;
line-height: 25px;


}

h7{color:#999999;
font-family:century-gothic, sans-serif;
font-size:14px;
line-height: 36px;
font-weight: lighter;
text-align: center;


}

h7:hover {
	padding-bottom: 20px;
	border-bottom: 4px;
	border-bottom-style: solid;
	border-bottom-color: #9e005d;

	
}


h9{color:#ffffff;
font-family:century-gothic, sans-serif;
font-size:30px;
text-align: center;
line-height: 70px;
padding-left: 23px;

}

h10{color:#9e005d;
font-family:century-gothic, sans-serif;
font-size:300%;
line-height: 30px;
font-weight: bold;
text-align: center;

}

h11{color:#ffffff;
font-family:century-gothic, sans-serif;
font-size:300%;
line-height: 200%;
font-weight: bold;
text-align: center;

}
p{
	color:#999999;
font-family:century-gothic, sans-serif;
font-size:14px;
line-height: 23px;
font-weight: lighter;
text-align: center;
	
	

}

p2{
	color:#ffffff;
font-family:century-gothic, sans-serif;
font-size:14px;
line-height: 23px;
font-weight: lighter;
text-align: center;
	
	

}

p3{
	color:#999999;
font-family:century-gothic, sans-serif;
font-size:14px;
line-height: 23px;
font-weight: lighter;
text-align: left;
	
	

}

h13{
	color:#999999;
font-family:century-gothic, sans-serif;
font-size:12px;
line-height: 23px;
font-weight: lighter;
text-align: center;
letter-spacing:.02em;

}

h14{
	color:#9e005d;
font-family:century-gothic, sans-serif;
font-size:14px;
line-height: 16px;
font-weight: lighter;
text-align: left;

}


h15{
	color:#ffffff;
font-family:century-gothic, sans-serif;
font-size:12px;
line-height: 23px;
font-weight: lighter;
text-align: center;
letter-spacing:.02em;

}

h16{color:#ffffff;
font-family:century-gothic, sans-serif;
font-size:20px;
line-height: 25px;
font-weight: bold;
text-align: center;


}

h17{color:#ffffff;
font-family:century-gothic, sans-serif;
font-size:14px;
line-height: 20px;
font-weight: lighter;
text-align: center;


}

h18{
	color: #9e005d;
	font-family: century-gothic, sans-serif;
	font-size: 14px;
	font-weight: lighter;
	text-align: left;
font-style: italic;
	line-height: 20px;
	padding-right: 20px;

	
}



 a{text-decoration: none;}
 



#footer {
	min-height: 150px;
	background-color: #f9f9f9;
}
#footer-copy {
padding-top: 30px;


}



#social {
	height: 20px;
	width: 120px;
	margin: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
	padding-bottom:50px;
}
#tumblr { height: 20px;
width: 20px;
float: right;
padding-right: 30px;
}

#linkedin{
	height: 20px;
	width: 20px;
	float: right;
	padding-right: 30px;

	}
#gmail{
	height: 20px;
	width: 20px;
	float: right;
}
#content{ 
	margin: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

}
#nav-content{ 
max-width: 2024px;
margin-right: auto;
	margin-left: auto;



}
#explore-image{
	height: 50px;
	width: 50px;
	margin: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
	padding-top: 1%;
	
}



#featured-video{
			width: 100%;
	margin-top: 7em;
	background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAYAAACp8Z5+AAAAF0lEQVQIW2NkYGCoB+JGIAYDRhiDeAEAPuoBBQUs7qUAAAAASUVORK5CYII=
    ) repeat;
	height: auto;
padding-bottom: 5em;

}

	#row-video{
	margin: auto;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;

	}

#video-copy-type-notes {
	width: 440px;
	max-height: 100px;
	margin: auto;
		top: 0;
		bottom: 0;
		right: 0;
		left: 0;
	padding: 10px;
	margin-top: 25px;
		
	background-color: #ffffff;
}

	#more-header {
		width: 100%;
		margin: auto;
		right: 0;
		left: 0;
		bottom: 0;
		top: 0;
		z-index:1;



	}
	

#more-header-copy {
	text-align: center;
	padding-top: 5em;
	padding-bottom: 2em;

}
	
	

#type-notes {
max-width: 740px;
height: 150px;
padding-top: 30px;
	margin: auto;
		top: 0;
		bottom: 0;
		right: 0;
		left: 0;
		text-align: center;

}

#caption {
max-width: 740px;
height: 50px;
padding-top: 30px;
	margin: auto;
		top: 0;
		bottom: 0;
		right: 0;
		left: 0;
		text-align: center;

}

	 
	
 
	

	 
	 	#more-campaigns{
	margin: auto;
	right: 0;
		left: 0;
		bottom: 0;
		top: 0;

		width: 100%;
			background-color: #ffffff;
			position: relative;
			
		


	}
	


#more-header-copy-bottom {
	text-align: center;
		padding-top: 8em;
		width: 100%;
		height: 50px;
		margin: auto;
		right: 0;
		left: 0;
		bottom: 0;
		top: 0;
	

	

}

#more-grid{
	
	max-width: 85%;
	margin: auto;
		right: 0;
		left: 0;
		bottom: 0;
		top: 0;
		padding-top: 50px;
				position: relative;
			overflow: hidden;
	
	
	}
	
	#more-grid-container{
	
	width: 100%;
	
	}
	


	 
	 
		
	
	.back-to-top {
position: fixed;
bottom: 0;
right: -0;
    text-decoration: none;
    color: #000000;
    background-color: #9e005d;
	height: 65px;
	width: 65px;
z-index: 1000;

}



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

	.topnav2 {
 
	
	margin: auto;
	
	max-width: 1024px;
		padding-left: 10px;

	
}

	/* Right-aligned section inside the top navigation */
.topnav-right {
  float: right;
	margin-top:-2px;
	margin-right: 20px;
}
	#featured-video{
			width: 100%;
	margin-top: 2em;
	background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAYAAACp8Z5+AAAAF0lEQVQIW2NkYGCoB+JGIAYDRhiDeAEAPuoBBQUs7qUAAAAASUVORK5CYII=
    ) repeat;
	height: auto;
padding-bottom: 5em;

}

	#more-header-copy {
	text-align: center;
	padding-top: 4em;
	padding-bottom: 2em;

}

#more-header-copy-bottom {
	text-align: center;
		padding-top: 4em;
		width: 100%;
		height: 50px;
		margin: auto;
		right: 0;
		left: 0;
		bottom: 0;
		top: 0;
	

	

}
/* Style the video: 100% width and height to cover the entire window */
	
	
#myVideo {
position: relative;
width: 100%; 
	
}

/* Add some content at the bottom of the video/page */
.content {
position: absolute;

text-align: center;

    color: #ffffff;
    width: 100%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%)
    
}

#video{
	
  position: relative;
    text-align: center;
    color: white;
	margin-top: 150px;
	background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAYAAACp8Z5+AAAAF0lEQVQIW2NkYGCoB+JGIAYDRhiDeAEAPuoBBQUs7qUAAAAASUVORK5CYII=
    ) repeat;
	
}

#video-watch{
	
  position: relative;
    text-align: center;
    color: white;
}


#profile{
max-width: 1080px;
	margin: auto;
	min-height: 400px;
left:0;
right:0;
top:0;
bottom:0;

}

#profile-image{
	
	width: 30%;
float: left;
	border-radius: 50%;
	border: 4px;
	border-style: solid;
	border-color:#9e005d;
	margin-bottom:4em;
	margin-left: 5em;

	
}


#profile-type{
	
	float: right;
	width: 50%;
	margin-bottom: 5em;
	margin-top: 5em;
	margin-right: 4em;
	
	
}
	
	
	#footer {
	min-height: 150px;
	background-color: #f9f9f9;
}

	

	#more-grid-container{
	
	width: 100%;
	margin: auto;
	
	}
	
	#row-3{
		margin: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
	padding-top: 0px;
	padding-bottom: 0px;
	width: 95%;
	max-width: 1663px;
	text-align: center;

}



ul.img-list li:hover span.text-content {
  opacity: 1;
}

span.text-content {
  background: rgba(0,0,0,0.3);
  color: white;
  cursor: pointer;
  display: table;
  height: 16em;
  left: 0;
  position: absolute;
  top: 0;
  width: 16em;
  opacity: 0;
  -webkit-transition: opacity 500ms;
  -moz-transition: opacity 500ms;
  -o-transition: opacity 500ms;
  transition: opacity 500ms;
}


span.text-content span {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
}



ul.img-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
  text-align: center;
}

ul.img-list li {
  display: inline-block;
  height: 16em;
  margin: 0 .5em 1em .5em;
  position: relative;
  width: 16em;
}


	}
	
	@media only screen and (min-width: 1025px) {

			
/* Style the video: 100% width and height to cover the entire window */
#myVideo {
position: relative;
width: 100%;

	background: #000000;
	
	
}

/* Add some content at the bottom of the video/page */
.content {
position: absolute;

text-align: center;

    color: #ffffff;
    width: 100%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%)
    
}

#video{
	
  position: relative;
    text-align: center;
    color: white;
	background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAYAAACp8Z5+AAAAF0lEQVQIW2NkYGCoB+JGIAYDRhiDeAEAPuoBBQUs7qUAAAAASUVORK5CYII=
    ) repeat;
margin-top: 100px;
	
}

#video-watch{
	
  position: relative;
    text-align: center;
    color: white;
}

/* Style the button used to pause/play the video */
#myBtn {
    width: 200px;
    font-size: 18px;
    padding: 10px;
    border: none;
    background: #000;
    color: #fff;
    cursor: pointer;
}

#myBtn:hover {
    background: #ddd;
    color: black;
}	

#profile{
max-width: 1080px;
	margin: auto;
	min-height: 500px;
left:0;
right:0;
top:0;
bottom:0;

}

#profile-image{
	
	width: 38%;
float: left;
	border-radius: 50%;
	border: 4px;
	border-style: solid;
	border-color:#9e005d;
	margin-bottom: 5em;
	margin-left: 20px;

	
}


#profile-type{
	
	float: right;
	width: 50%;
	margin-bottom: 9em;
	margin-top: 9em;
	margin-right: 20px;
	
	
}
	
		ul.img-list li:hover span.text-content {
  opacity: 1;
}

span.text-content {
  background: rgba(0,0,0,0.3);
  color: white;
  cursor: pointer;
  display: table;
  height: 28em;
  left: 0;
  position: absolute;
  top: 0;
  width: 28em;
  opacity: 0;
  -webkit-transition: opacity 500ms;
  -moz-transition: opacity 500ms;
  -o-transition: opacity 500ms;
  transition: opacity 500ms;
}


span.text-content span {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
}



ul.img-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
  text-align: center;
}

ul.img-list li {
  display: inline-block;
  
  margin: 0 1.5em 3em 1.5em;
  position: relative;
  width: 28em;
}

		

}



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

	ul.img-list li:hover span.text-content {
  opacity: 1;
}

span.text-content {
  background: rgba(0,0,0,0.3);
  color: white;
  cursor: pointer;
  display: table;
  height: 19em;
  left: 0;
  position: absolute;
  top: 0;
  width: 19em;
  opacity: 0;
  -webkit-transition: opacity 500ms;
  -moz-transition: opacity 500ms;
  -o-transition: opacity 500ms;
  transition: opacity 500ms;
}


span.text-content span {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
}



ul.img-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
  text-align: center;
}

ul.img-list li {
  display: inline-block;
  height: 19em;
  margin: 0 1.5em 3em 1.5em;
  position: relative;
  width: 19em;
}
}



@media only screen and (min-width: 1441px) {#video{
	
  position: relative;
    text-align: center;
    color: white;
	background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAYAAACp8Z5+AAAAF0lEQVQIW2NkYGCoB+JGIAYDRhiDeAEAPuoBBQUs7qUAAAAASUVORK5CYII=
    ) repeat;
margin-top: 0px;
	
}}
	
	

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

	
#more-grid{
	
	max-width: 100%;
	margin: auto;
		right: 0;
		left: 0;
		bottom: 0;
		top: 0;
		padding-top: 50px;
				position: relative;
			overflow: hidden;
	
	
	}
	
	
	#more-header-copy {
	text-align: center;
	padding-top: 4em;
	padding-bottom: 2em;

}
	
		/* Style the video: 100% width and height to cover the entire window */
#myVideo {
position: relative;
width: 100%; 
	margin-top: 100px;
	
}

/* Add some content at the bottom of the video/page */
.content {
position: absolute;

text-align: center;

    color: #ffffff;
    width: 100%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
    margin-top: 25px;
}

#video{
	
  position: relative;
    text-align: center;
   
	margin-top: 70px;
	background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAYAAACp8Z5+AAAAF0lEQVQIW2NkYGCoB+JGIAYDRhiDeAEAPuoBBQUs7qUAAAAASUVORK5CYII=
    ) repeat;
	
}

#video-watch{
	
  position: relative;
    text-align: center;
    color: white;
}

/* Style the button used to pause/play the video */
#myBtn {
    width: 200px;
    font-size: 18px;
    
    border: none;
    background: #000;
    color: #fff;
    cursor: pointer;
}

#myBtn:hover {
    background: #ddd;
    color: black;
}	

#profile{
max-width: 1080px;
	margin: auto;
	min-height: 300px;
left:0;
right:0;
top:0;
bottom:0;

}

#profile-image{
	
	width: 30%;
float: left;
	border-radius: 50%;
	border: 4px;
	border-style: solid;
	border-color:#9e005d;
	margin-bottom: 4em;
	margin-left: 4em;

	
}


#profile-type{
	
	float: right;
	width: 49%;
	margin-bottom: 2em;
	margin-top:2em;
	margin-right: 3em;
	
	
}
	#explore-image{
	height: 40px;
	width: 40px;
	margin: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
	padding-top: 1%;
	
}

	
	#type-notes {
width: 90%;
height: 100px;
padding-top: 30px;
	margin: auto;
		top: 0;
		bottom: 0;
		right: 0;
		left: 0;
		text-align: center;

}

h10{color:#9e005d;
font-family:century gothic, sans-serif;
font-size:225%;
line-height: 45px;
font-weight: bold;
text-align: center;

}


	 
	 #more-header-copy-bottom {
	text-align: center;
	padding-top: 60px;

	 }
	 
	
	
	h16{color:#ffffff;
font-family:century gothic, sans-serif;
font-size:18px;
line-height: 20px;
font-weight: bold;
text-align: center;


}

h17{color:#ffffff;
font-family:century gothic, sans-serif;
font-size:14px;
line-height: 20px;
font-weight: lighter;
text-align: center;


}



}




	
	/* make keyframes that tell the start state and the end state of our object */
@-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

.fade-in {
  opacity:0;  /* make things invisible upon start */
  -webkit-animation:fadeIn ease-in 1;  /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
  -moz-animation:fadeIn ease-in 1;
  animation:fadeIn ease-in 1;

  -webkit-animation-fill-mode:forwards;  /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
  -moz-animation-fill-mode:forwards;
  animation-fill-mode:forwards;

  -webkit-animation-duration:1s;
  -moz-animation-duration:1s;
  animation-duration:1s;
}
