* {
margin: 0;
padding: 0;
--color-blue-text: #133535;
--color-blue-dark: #376565;
--color-blue-light: #63c4a5;
--color-green-dark: #9abb62;
--color-green-dark-darken: #80a443;
--color-green-light: #e3e9a1;
--color-orange: #f98c4b;
}

/* ===============================================
        Colors 
=============================================== */

/* ===============================================
        Fonts 
=============================================== */
@font-face {
font-family: 'Gadugi';
src: url('../fonts/gadugi-webfont.woff2') format('woff2'),
  url('../fonts/gadugi-webfont.woff') format('woff');
font-weight: normal;
font-style: normal;
}

@font-face {
font-family: 'Gadugi';
src: url('../fonts/gadugib-webfont.woff2') format('woff2'),
  url('../fonts/gadugib-webfont.woff') format('woff');
font-weight: bold;
font-style: normal;
}

@font-face {
font-family: 'Lilita One';
src: url('../fonts/lilitaone-regular-webfont.woff2') format('woff2'),
  url('../fonts/lilitaone-regular-webfont.woff') format('woff');
font-weight: normal;
font-style: normal;
}

/* ===============================================
Basic Stylings
These will affect every size of the site.
=============================================== */
/* Body */
body {
font: normal normal 16px/1.5em 'Gadugi', Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
color: var(--color-blue-text);
}

h1 {
font-family: 'Lilita One';
font-weight: normal;
font-size: 3.6rem;
line-height: 0.8em;
display: none;
color: var(--color-blue-light);
margin: 0 auto 20px;
}

h1 span {
font-family: 'Gadugi';
font-size: 1.8rem;
line-height: 1.05rem;
font-weight: bold;
display: block;
color: var(--color-blue-dark);
padding-top: 5px;
}

h2 {
font-family: 'Lilita One';
font-weight: normal;
font-size: 2.6rem;
line-height: 1em;
margin: 0 auto 20px;
color: var(--color-blue-dark);
}

h2:before {
content: "";
display: block;
margin: 0 auto 15px;
width: 75px;
height: 76px;
background-size: contain;
background-repeat: no-repeat;
vertical-align: center;
}

#design-content h2:before {
background-image: url('../img/thumb_design.png')
}

#development-content h2:before {
background-image: url('../img/thumb_dev.png')
}

#video-content h2:before {
background-image: url('../img/thumb_multimedia.png')
}

#contact-content h2:before {
background-image: url('../img/thumb_contact.png')
}

h3 {
font-family: 'Lilita One';
font-size: 1.8rem;
line-height: 2.05rem;
font-weight: normal;
margin: 0px auto 15px;
color: var(--color-blue-light);
}

h4 {
font-size: 1.2rem;
line-height: 1.3rem;
font-weight: bold;
text-transform: uppercase;
opacity: 0.7;
letter-spacing: 0.03em;
margin: 0 auto 10px;
color: var(--color-blue-dark);
}

p {
letter-spacing: 0.01rem;
margin: 0 auto 1.25rem;
}

a {
color: var(--color-blue-text);
text-decoration: underline;
}

a:hover {
color: var(--color-blue-light);
}

.thumbnail,
.close-btn {
cursor: pointer;
}

ul {
margin-left: 35px;
margin-bottom: 1.25em;
}

#body-container {
display: block;
height: auto;
top: 0;
left: 0;
right: 0;
bottom: 0px;
overflow: hidden;
position: fixed;
background: rgb(193,231,219);
background: -moz-linear-gradient(0deg, rgba(193,231,219,1) 0%, rgba(211,240,231,1) 100%);
background: -webkit-linear-gradient(0deg, rgba(193,231,219,1) 0%, rgba(211,240,231,1) 100%);
background: linear-gradient(0deg, rgba(193,231,219,1) 0%, rgba(211,240,231,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#c1e7db",endColorstr="#d3f0e7",GradientType=1); 
}

#body-container::after {
  content: "";
  background: #FFF;
  position: fixed;
  top: 10px; left: 10px; right: 10px; bottom: 10px;
}

.content {
position: absolute;
width: 100%;
height: auto;
top: 70px;
left: 0;
right: 0;
bottom: 65px;
padding-bottom: 44px;
z-index: 5;
text-align: center;
overflow-y: scroll;
-webkit-transition: 1s;
-moz-transition: 1s;
-o-transition: 1s;
-ms-transition: 1s;
transition: 1s;
}

.content.overflow-true {
overflow-y: auto;
}

.content.overflow-true .int-content {
padding-right: 7px;
}

.content::-webkit-scrollbar-track {
border-radius: 8px;
background-color: transparent;
}

.content::-webkit-scrollbar {
width: 8px;
padding-right: 2px;
background-color: transparent;
}

.content::-webkit-scrollbar-thumb {
border-radius: 8px;
margin-right: 2px;
background-color: rgba(255, 255, 255, 0.7);
}

.active-content {
left: 0%;
}

#home-content {
left: 0;
animation: fadein 2s;
    -moz-animation: fadein 2s;
    -webkit-animation: fadein 2s;
    -o-animation: fadein 2s;
}

#design-content {
left: 100%;
}

#development-content {
left: 200%;
}

#video-content {
left: 300%;
}

#contact-content {
left: 400%;
}

#example-content {
left: 100%;
}

.position_1 #home-content {
left: -100%;
}

.position_1 #design-content {
left: 0%;
}

.position_1 #development-content {
left: 100%;
}

.position_1 #video-content {
left: 200%;
}

.position_1 #contact-content {
left: 300%;
}

.position_2 #home-content {
left: -200%;
}

.position_2 #design-content {
left: -100%;
}

.position_2 #development-content {
left: 0%;
}

.position_2 #video-content {
left: 100%;
}

.position_2 #contact-content {
left: 200%;
}

.position_3 #home-content {
left: -300%;
}

.position_3 #design-content {
left: -200%;
}

.position_3 #development-content {
left: -100%;
}

.position_3 #video-content {
left: 0%;
}

.position_3 #contact-content {
left: 100%;
}

.position_4 #home-content {
left: -400%;
}

.position_4 #design-content {
left: -300%;
}

.position_4 #development-content {
left: -200%;
}

.position_4 #video-content {
left: -100%;
}

.position_4 #contact-content {
left: 0%;
}

.example-moveOut {
left: -100% !important;
}

.example-moveIn {
left: 0% !important;
}

/* Home Content */
#home-content .int-content .logo {
display: block;
margin: 0 auto;
width: 60%;
max-width: 180px;
}

#home-content p {
margin: 15px auto 0;
line-height: 1.5em !important;
}


/* Page Links */
.menu {
position: fixed;
bottom: 0;
left: 0;
right: 0;
z-index: 100;
}

.menu a,
.menu div {
width: 20%;
float: left;
padding: 10px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
cursor: pointer;
background: var(--color-green-dark);
color: #FFF;
text-align: center;
text-decoration: none;
font-weight: 600;
font-size: 0.8em;
letter-spacing: 0.01em;
position: relative;
-webkit-transition: 0.5s;
-moz-transition: 0.5s;
-o-transition: 0.5s;
-ms-transition: 0.5s;
transition: 0.5s;
border-left: 2px solid var(--color-green-dark-darken)
}

.menu a:hover,
.menu div:hover {
background: var(--color-green-light);
color: var(--color-blue-dark);
}

.menu a.active,
.menu div.active {
background: var(--color-green-dark-darken);
}

.menu a.active:hover,
.menu div.active:hover {
color: #FFF;
}

.menu a:first-of-type,
.menu div:first-of-type { border-left: none; }

.menu div#link-development::before {
  content: "Dev";
}

/* Popups */
#blocker {
display: none;
z-index: 10;
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(0, 0, 0, 0.75);
}

.close-btn {
position: fixed;
top: auto;
right: 2%;
bottom: 9%;
left: auto;
display: block;
width: 40px;
height: 40px;
background: var(--color-green-dark) url(../img/arrow.png) center center no-repeat;
background-size: 40px auto;
color: #FFF;
font-size: 16px;
line-height: 40px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
-webkit-border-radius: 50%;
border-radius: 50%;
background-clip: padding-box;
-webkit-box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.2);
box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.2);
z-index: 50;
-webkit-transition: 0.5s;
-moz-transition: 0.5s;
-o-transition: 0.5s;
-ms-transition: 0.5s;
transition: 0.5s;
padding-top: 7px;
display: none;
}

.close-btn:hover {
background-color: var(--color-green-dark-darken);
}

.example-popup {
display: none;
position: fixed;
z-index: 20;
background: #FFF;
top: 90px;
left: 20px;
right: 20px;
bottom: 44px;
-webkit-box-shadow: 0px 7px 7px 0px rgba(0, 0, 0, 0.2);
box-shadow: 0px 7px 7px 0px rgba(0, 0, 0, 0.2);
font-size: 15px;
text-align: center;
}

.example-popup .example-content {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
}

.example-popup .example-img {
height: 45%;
position: relative;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
padding: 15px;
}

.example-text {
text-align: left;
}

.int-content {
display: block;
width: 94%;
max-width: 646px;
padding: 20px 15px 20px;
margin: 0 auto;
text-align: center;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}

.int-thumbnails {
width: 86%;
max-width: 867px;
font-size: 0;
line-height: 1em;
display: inline-block;
vertical-align: middle;
position: relative;
margin: 0 5%;
}

#home-content .int-thumbnails {
font-size: 1em;
}
.int-thumbnails .thumbnail {
display: inline-block;
vertical-align: top;
width: 100%;
max-width: 259px;
height: 145px;
background-repeat: no-repeat;
background-size: cover;
background-position: center;
margin: 15px;
position: relative;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
border: 2px solid var(--color-blue-dark);
-webkit-transition: 0.5s;
-moz-transition: 0.5s;
-o-transition: 0.5s;
-ms-transition: 0.5s;
transition: 0.5s;
transition-timing-function: ease-in-out;
border-radius: 14% 14% 14% 14% / 31% 31% 31% 31% ;
-webkit-box-shadow: 0px 8px 0px 0px var(--color-blue-dark);
-moz-box-shadow: 0px 8px 0px 0px var(--color-blue-dark);
box-shadow: 0px 8px 0px 0px var(--color-blue-dark);
}

.int-thumbnails .thumbnail:hover {
	-webkit-transform: scale(0.95) rotate(1deg);
	-moz-transform: scale(0.95) rotate(1deg);
	-ms-transform: scale(0.95) rotate(1deg);
	-o-transform: scale(0.95) rotate(1deg);
	transform: scale(0.95) rotate(1deg);
	border-color: var(--color-blue-light);
  -webkit-box-shadow: 0px 8px 0px 0px var(--color-blue-light);
  -moz-box-shadow: 0px 8px 0px 0px var(--color-blue-light);
  box-shadow: 0px 8px 0px 0px var(--color-blue-light);
}

.int-thumbnails .thumbnail:nth-of-type(2):hover {
	-webkit-transform: scale(0.95) rotate(-3deg);
	-moz-transform: scale(0.95) rotate(-3deg);
	-ms-transform: scale(0.95) rotate(-3deg);
	-o-transform: scale(0.95) rotate(-3deg);
	transform: scale(0.95) rotate(-3deg);
}

.int-thumbnails .thumbnail:nth-of-type(3):hover {
	-webkit-transform: scale(0.95) rotate(1.5deg);
	-moz-transform: scale(0.95) rotate(1.5deg);
	-ms-transform: scale(0.95) rotate(1.5deg);
	-o-transform: scale(0.95) rotate(1.5deg);
	transform: scale(0.95) rotate(1.5deg);
}

.int-thumbnails .thumbnail:nth-of-type(4):hover {
	-webkit-transform: scale(0.95) rotate(-2.4deg);
	-moz-transform: scale(0.95) rotate(-2.4deg);
	-ms-transform: scale(0.95) rotate(-2.4deg);
	-o-transform: scale(0.95) rotate(-2.4deg);
	transform: scale(0.95) rotate(-2.4deg);
}

.int-thumbnails .thumbnail:nth-of-type(5):hover {
	-webkit-transform: scale(0.95) rotate(4deg);
	-moz-transform: scale(0.95) rotate(4deg);
	-ms-transform: scale(0.95) rotate(4deg);
	-o-transform: scale(0.95) rotate(4deg);
	transform: scale(0.95) rotate(4deg);
}

.int-thumbnails .thumbnail:nth-of-type(6):hover {
	-webkit-transform: scale(0.95) rotate(-1.2deg);
	-moz-transform: scale(0.95) rotate(-1.2deg);
	-ms-transform: scale(0.95) rotate(-1.2deg);
	-o-transform: scale(0.95) rotate(-1.2deg);
	transform: scale(0.95) rotate(-1.2deg);
}

.int-thumbnails .thumbnail:nth-of-type(7):hover {
	-webkit-transform: scale(0.95) rotate(2deg);
	-moz-transform: scale(0.95) rotate(2deg);
	-ms-transform: scale(0.95) rotate(2deg);
	-o-transform: scale(0.95) rotate(2deg);
	transform: scale(0.95) rotate(2deg);
}

.int-thumbnails .thumbnail:nth-of-type(8):hover {
	-webkit-transform: scale(0.95) rotate(-5deg);
	-moz-transform: scale(0.95) rotate(-5deg);
	-ms-transform: scale(0.95) rotate(-5deg);
	-o-transform: scale(0.95) rotate(-5deg);
	transform: scale(0.95) rotate(-5deg);
}

.int-thumbnails .thumbnail:nth-of-type(9):hover {
	-webkit-transform: scale(0.95) rotate(3deg);
	-moz-transform: scale(0.95) rotate(3deg);
	-ms-transform: scale(0.95) rotate(3deg);
	-o-transform: scale(0.95) rotate(3deg);
	transform: scale(0.95) rotate(3deg);
}

.img-int {
position: relative;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-repeat: no-repeat;
background-size: contain;
background-position: center center;
display: block;
height: 500px;
}

.int-thumbnails iframe {
height: 90%;
width: 100%;
position: absolute;
top: 5%;
left: 0;
right: 0;
bottom: 5%;
}

/*-------------- Thumbnail Content -----------------*/

/*-------- Design --------*/
#design_1 {
background-image: url("../img/design/1-thumb.jpg");
}

#design_2 {
background-image: url("../img/design/2-thumb.jpg");
}

#design_3 {
background-image: url("../img/design/3-thumb.jpg");
}

#design_4 {
background-image: url("../img/design/4-thumb.jpg");
}

#design_5 {
background-image: url("../img/design/5-thumb.jpg");
}

#design_6 {
background-image: url("../img/design/6-thumb.jpg");
}

#design_7 {
background-image: url("../img/design/7-thumb.jpg");
}

/*-------- Development --------*/
#development_1 {
background-image: url("../img/development/1-thumb.jpg");
}

#development_2 {
background-image: url("../img/development/2-thumb.jpg");
}

#development_3 {
background-image: url("../img/development/3-thumb.jpg");
}

#development_4 {
background-image: url("../img/development/4-thumb.jpg");
}

#development_5 {
background-image: url("../img/development/5-thumb.jpg");
}

#development_6 {
background-image: url("../img/development/6-thumb.jpg");
}

#development_7 {
background-image: url("../img/development/7-thumb.jpg");
}

#development_8 {
background-image: url("../img/development/8-thumb.jpg");
}

#development_9 {
background-image: url("../img/development/9-thumb.jpg");
}

/*-------- Video --------*/
#video_1 {
background-image: url("../img/video/1-thumb.jpg");
}

#video_2 {
background-image: url("../img/video/2-thumb.jpg");
}

#video_3 {
background-image: url("../img/video/3-thumb.jpg");
}

#video_4 {
background-image: url("../img/video/4-thumb.jpg");
}

#video_5 {
background-image: url("../img/video/5-thumb.jpg");
}

#video_6 {
background-image: url("../img/video/6-thumb.jpg");
}

#video_7 {
background-image: url("../img/video/7-thumb.jpg");
}

#video_8 {
background-image: url("../img/video/8-thumb.jpg");
}

#video_9 {
background-image: url("../img/video/9-thumb.jpg");
}

/*--------------- Form ---------------*/
#contact-content .contact {
padding-bottom: 20px;
}

#contact-content img {
  width: 100%;
  max-width: 393px;
  margin: 0 auto;
}

#contact-content input,
#contact-content textarea {
text-align: left;
outline: none;
margin: 0 auto 30px;
border: 2px solid var(--color-blue-dark);
background: #ffffff;
padding: 10px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
font: normal normal 12px/1.5em 'Gadugi', Helvetica, Arial, sans-serif;
width: 88%;
max-width: 485px;
display: block;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
border-radius: 4px;
}

#contact-content input:focus,
#contact-content textarea:focus {
border-color: var(--color-blue-light);
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}

#contact-content ::-webkit-input-placeholder {
color: var(--color-blue-dark);
}

#contact-content ::-moz-placeholder {
color: var(--color-blue-dark);
}

#contact-content :-ms-input-placeholder {
color: var(--color-blue-dark);
}

#contact-content :-moz-placeholder {
color: var(--color-blue-dark);
}

#contact-content textarea {
height: 75px;
resize: none;
overflow-x: hidden;
}

#contact-content input[type="submit"] {
background: var(--color-green-dark);
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
border: none;
color: #FFF;
font-weight: bold;
text-align: center;
width: 194px;
height: 46px;
font-size: 12px;
line-height: 46px;
text-transform: uppercase;
padding: 0;
cursor: pointer;
margin: 0 auto 20px;
}

#contact-content input[type="submit"]:hover {
background: var(--color-green-dark-darken);
}

/*--------------- Mobile-Specific ---------------*/
#mobile-header {
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 200;
text-align: center;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
padding: 10px 0 9px;
-webkit-transition: 1s;
-moz-transition: 1s;
-o-transition: 1s;
-ms-transition: 1s;
transition: 1s;
opacity: 1;
background: var(--color-green-dark);
display: inline-block;
vertical-align: middle;
font-size: 2em;
font-family: 'Lilita One';
font-weight: normal;
color: #FFF;
}

#mobile-header.mobile-content {
opacity: 1;
}

#mobile-header span {
display: block;
font-size: 0.5em;
font-family: 'Gadugi';
font-weight: bold;
text-transform: uppercase;
}

#mobile-menu {
position: fixed;
bottom: 0;
left: 0;
right: 0;
z-index: 200;
border-top: 1px solid #ffffff;
}

#mobile-menu a {
display: block;
float: left;
width: 25%;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
padding: 10px 4px;
text-align: center;
border-right: 1px solid #ffffff;
text-decoration: none;
font-size: 0.5em;
line-height: 1em;
text-transform: uppercase;
font-weight: 700;
}

#mobile-menu a i {
display: block;
margin: 5px auto 0;
}

#mobile-menu a:last-of-type {
border-right: none;
}

/*----------------Components---------------*/
.component {
display: block;
position: fixed;
z-index: 20;
background: #FFF;
width: 90%;
max-width: 1000px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
-webkit-box-shadow: 0px 7px 7px 0px rgba(0, 0, 0, 0.2);
box-shadow: 0px 7px 7px 0px rgba(0, 0, 0, 0.2);
font-size: 15px;
text-align: center;
color: #000;
padding: 25px;
text-align: left;
overflow-y: scroll;
top: 15px;
left: 0;
right: 0;
bottom: 15px;
margin: 0 auto;
}

.component .component-img:hover img {
-webkit-box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.1);
box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.1);
}

.component h1 {
width: 100%;
text-align: center;
font-size: 2em;
margin: 0 auto 1.5em;
}

.component h3 {
font-size: 1.5em;
margin: 0 auto 1.5em;
}

.component img {
width: 100%;
max-width: 500px;
margin: 0 auto 1.5em;
display: block;
}

.component p {
margin: 0 auto 1.5em;
width: 100%;
}

.component p:last-of-type {
margin-bottom: 0;
}

/* ===============================================
Tablet / Desktop Stylings
Supports 48em (768px) and up
=============================================== */
/* ===============================================
Desktop Only Stylings
Supports 64em (1024px) and up
=============================================== */
@media only screen and (min-width: 64em) {
body {
  background-size: 720px auto;
  font-size: 18px;
}

#body-container {
  top: 0;
  bottom: 0;
  height: 100%;
}


#body-container::after {
  border-radius: 10% 10% 10% 10% / 22% 22% 22% 22%;
}

h1 {
  font-size: 4.6vw;
  display: inline-block;
  vertical-align: middle;
  width: 60%;
}

h1 span { font-size: 1.5vw; }

h2 {
  font-size: 4.2vw;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
}

h2:before {
  margin: 0 15px 0 0;
  width: 150px;
  height: 153px;
  display: inline-block;
}

h3 {
  font-size: 2.5rem;
}

.close-btn {
  position: absolute;
  bottom: auto;
  left: 2%;
  top: 2%;
  right: auto;
}

.edge-link {
  display: block;
}

#mobile-header {
  opacity: 0;
}

.menu {
  padding: 20px;
}

.menu div {
  font-size: 0.95em;
}

.menu div#link-development::before {
  content: "Development";
}

.menu div:first-of-type {
  border-radius: 8% 0% 0% 8% / 40% 0% 0% 40%;
}

.menu div:last-of-type {
  border-radius: 0% 8% 8% 0% / 0% 40% 40% 0%;
}

/*--------------- Content ----------------*/
.content {
  top: 0;
  padding-bottom: 0;
  overflow-y: hidden;
}

.content-container {
  display: table;
  width: 94%;
  height: 94%;
  padding: 3%;
}

.int-content {
  display: table-cell;
  vertical-align: middle;
  width: 50%;
  text-align: left;
}

#home-content .int-content {
  padding: 20px 25px 20px;
  width: 58%;
}

#home-content .int-content .logo {
  display: inline-block;
  width: 34%;
  max-width: 200px;
  margin: -47px 15px 0 0;
  vertical-align: middle;
}

#home-content p { margin-top: 0;}

.int-thumbnails {
  display: table-cell;
  vertical-align: middle;
  width: 50%;
  margin: 0 auto;
}

#home-content .int-thumbnails {
  text-align: left;
  width: 42%;
}

.int-thumbnails .thumbnail {
  width: 31%;
  margin: 1%;
}

/*--------------- Popups ------------------*/
.example-popup {
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  font-size: 15px;
}

.example-popup .example-img {
  height: 75%;
}

.example-popup .example-text {
  height: 25%;
}

.img-int {
  height: 90%;
  position: absolute;
}

/*--------------- Mobile-Specific ---------------*/
#mobile-header {
  display: none;
}

#mobile-menu {
  display: none;
}
}
@keyframes fadein {
  from {
      opacity:0;
  }
  to {
      opacity:1;
  }
}
@-moz-keyframes fadein { /* Firefox */
  from {
      opacity:0;
  }
  to {
      opacity:1;
  }
}
@-webkit-keyframes fadein { /* Safari and Chrome */
  from {
      opacity:0;
  }
  to {
      opacity:1;
  }
}
@-o-keyframes fadein { /* Opera */
  from {
      opacity:0;
  }
  to {
      opacity: 1;
  }
}