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

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

html {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
*, *:before, *:after {
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
  }

body {
	margin: 0;
	padding: 0;

}

a {
	text-decoration: none;
	color: white;
}

#hideAll {
	opacity: 1;
	-webkit-transition: opacity 1s;
	transition: opacity 1s;
}

.load-screen {
	position: fixed;
	width: 100%;
	height: 100%;
	background-color: #111111;
	display: block;
	z-index: 99;
}

.spinner {
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;

  opacity: 1;
  width: 40px;
  height: 40px;
  background-color: #333;

  margin: 45vh auto;
  -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
  animation: sk-rotateplane 1.2s infinite ease-in-out;
}

@-webkit-keyframes sk-rotateplane {
  0% { -webkit-transform: perspective(120px) }
  50% { -webkit-transform: perspective(120px) rotateY(180deg) }
  100% { -webkit-transform: perspective(120px) rotateY(180deg)  rotateX(180deg) }
}

@keyframes sk-rotateplane {
  0% { 
    transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg) 
  } 50% { 
    transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
    -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg) 
  } 100% { 
    transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
  }
}

#header {
	z-index: 10;
	position: fixed;
	color: white;
	padding: 1em;
	width: 100%;
	font-family: ANTEBELLUM;
	/*isolation: isolate;*/
	
	/*font-weight: bold;*/
	/*text-transform: uppercase;*/
}

#header-name {

	z-index: 10;
	position: absolute;
	left: -2.5%;
	/*margin-top: 1em;*/
	width: 20vw;
	max-width: 695px;
	min-width: 200px;
	max-height: 75%;
	cursor: pointer;
	/*padding-bottom: .5em;*/
	/*background-color: #3A0000;*/

	-webkit-transition: left 0.25s, width 0.25s;
    transition: left 0.25s, width 0.25s;
    -webkit-transition-timing-function: ease;
    transition-timing-function: ease;

}

#header-name img {
	width: 100%;
	height: auto;
	-webkit-filter: drop-shadow(2px 2px 2px #000);
  	filter: drop-shadow(2px 2px 2px #000);
}

#header-name.minimize {
	width: 200px;
	left: -1.2%;
}

#header-name:hover {
	left: -1.5%;
}

#header-name.minimize:hover {
	/*width: 200px;*/
	left: -1%;
}

#menu {
	position: fixed;
	top: 0;
	right: 0;
	margin-right: 0.75em;
	font-size: 1.5em;
}

#menu.wide {
	margin: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.75);
}

.menu-bumper {
	/*background-color: red;*/
	height: 16.6%;
	width: 1px;
	display:none;
}


.menu-bumper.wide {
	/*background-color: red;*/
	display:block;
}
.menu-item {
	position: relative;
	display: inline-block;
	/*padding: 0.75em .75em 1em .75em;*/
	padding: 1.75em .75em 2em .75em;

	cursor: pointer;
	background-image: url("../img/ui/underline.png");
	background-repeat: no-repeat;
	background-size: 98% 0px;
	background-position: 50% 3em;
	transition:all 0.5s ease;
	/*text-shadow: 1px 1px 5px #000;*/
	-webkit-filter: drop-shadow(1px 1px 1px #000);
  	filter: drop-shadow(1px 1px 1px #000);
}


.menu-item.wide {
	display: block;
	text-align: center;
	font-size: 2em;
	height: 16.6%;
	padding-top: 0.8em;
    background-color: rgba(0,0,0,0);
    -webkit-filter: drop-shadow(1px 1px 1px #000);
  	filter: drop-shadow(1px 1px 1px #000);
  	background-image: url(none);
}

.menu-item.wide span {
	/*padding-top: 1em;*/
}

.menu-item.wide.longer {
	/*background-size: 460px 0px;*/

}

.alt-chars {
	-moz-font-feature-settings: "salt";
	-webkit-font-feature-settings: "salt";
	font-feature-settings: "salt";
}

.menu-item.open {
	background-size: 98% 12px;
	background-position: 50% 2.9em;
}

.menu-item:hover {
	background-size: 98% 12px;
	background-position: 50% 2.9em;
}

/*.menu-item.wide.open {
	background-size: 290px 0px;
    background-position: 50% 1.25em;
}*/

.menu-item.wide:hover {
	/*background-size: 290px 48px;*/
    /*background-position: 50% 50%;*/
    background-color: rgba(0,0,0,0.5);

}

.menu-item.wide.longer:hover {
	/*background-size: 520px 50%;*/
}

#menu-collapsed {
	display: none;
	width: 32px;
  	height: 32px;
  	position: fixed;
  	top: 1em;
  	right:1em;
	cursor: pointer;
	/*padding: 1em;*/
	-webkit-filter: drop-shadow(2px 2px 2px #000);
  	filter: drop-shadow(2px 2px 2px #000);
}

#menu-collapsed.blendtest img {
	/*mix-blend-mode: difference;*/
  	/*-webkit-filter: grayscale(1) contrast(100);*/
	/*filter: grayscale(1) contrast(100);*/
}

#menu-collapsed img {
	width: 100%;
	height: auto;
}

#menu-collapsed.hidden {
	display: none;
}

#menu-openned {
	width: 32px;
  	height: 32px;
  	position: fixed;
  	top: 1em;
  	right:1em;
	cursor: pointer;
	/*padding: 1em;*/
	-webkit-filter: drop-shadow(2px 2px 2px #000);
  	filter: drop-shadow(2px 2px 2px #000);
}

#menu-openned.hidden {
	display: none;
	width: 32px;
  	height: 32px;
  	position: fixed;
  	top: 1em;
  	right:1em;
	cursor: pointer;
	/*padding: 1em;*/
}

#menu-openned img {
	width: 100%;
	height: auto;
}

#content {
	z-index:0;
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
}

.content-page {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

#page-landing {
	background-image: url("../img/bg_landing.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 75% 50%;
}

#page-landing.open {

}

#page-mission {
	z-index: 2;
	background-image: url("../img/bg_about.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	position: absolute;
	left: 100%;
	transition: left 1s ease;
}

#page-mission.open {
	left: 0%;
}

#page-outdooreducation {
	z-index: 3;
	background-image: url("../img/bg_oe.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 85% 0%;
	position: absolute;
	left: 100%;
	transition: left 1s ease;
	/*background*/
	/*overflow: scroll;*/
}

#page-outdooreducation.open {
	left: 0%;
}

#page-interactiveworks {
	z-index: 5;
	background-image: url("../img/bg_ia.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 50% 50%;
	position: absolute;
	left: 100%;
	transition: left 1s ease;
}

#page-interactiveworks.open {
	left: 0%;
}

#page-contact {
	z-index: 1000 !important;
	background-color: rgba(0,0,0,0.75);
	/*background-repeat: no-repeat;*/
	/*background-size: cover;*/
	/*background-position: 50% 50%;*/
	position: absolute;
	left: 100%;
	transition: left 1s ease;
	height: 100%;

}

#page-contact.open {
	left: 0%;
}

.page-content {
	z-index: 2;
	position: absolute;
	display: block;
	width: 100%;
	/*left: 30%;*/
	padding-left: 30%;
	padding-right: 30%;

	height: 100%;
	overflow-y: scroll;
	overflow-x: visible;
}

.page-content.full {
	/*box-sizing: border-box;*/
	width: 100%;
	left: 0px;
	/*padding: 0 20% 0 20%;*/
	position: absolute;
	/*margin: 4em;*/
	/*padding: 4em;*/
}

.page-title {
	display: block;
	font-family: ANTEBELLUM;
	font-size: 2em;
	color: white;
	padding-bottom: 1em;
	overflow: visible;
}

.page-title.mission {
}

.about-text {
	font-family: Raleway;
	font-size: 1em;
	color: white;
	padding-bottom: 1em;

}

.about-text li {
	margin-bottom: 0.5em;
}

.about-text.black {
	color: black;
}

.about-text.page-content {
	position: relative;
	height: auto;
	overflow-x: auto;
	overflow-y: auto;
}

.about-text.page-content.centered {
	text-align: center;
	padding: 0 1.5em;
	margin-bottom: 1em;
}

.about-footer {
	padding: 3em;
	text-align: center;
}

.about-scrollprompt{
	display: block;
	margin: 4em auto 0 auto;
	width: 46px;
	height: auto;
}

.about-scrollprompt img {
	width: 100%;
	height: auto;
}

.vert-outer {
    display: table;
    position: absolute;
    height: 100%;
}

.vert-outer.full {
	width: 100%;
}

.vert-outer.double {
	top: -50%;
	height: 200%;
	overflow-y: scroll;
}

.vert-outer.triple {
	top: -150%;
	height: 400%;
}

.vert-middle {
    display: table-cell;
    vertical-align: middle;
    position: relative;
    /*max-height: 50%;*/


}

.vert-inner {
	width: 100%;
	height: 100%;
	overflow: scroll;
}

.vert-inner.topout {
	height: 85%;
	top: 15%;
}

.overscroll {
	overflow-y: scroll;
	max-height: 100%;
	position: relative;
}

.oed-select {
	height: 100%;
	padding-top: 20vh;
}

.oed-select.showcase-height {
	padding-top: 0;
}


.bgbox {
	/*height: 100%;*/
	/*width: 60%;*/
	background-color: rgba(0,0,0,0.65);
	-webkit-box-shadow: 0px 0px 75px 75px rgba(0,0,0,0.65);
	-moz-box-shadow: 0px 0px 75px 75px rgba(0,0,0,0.65);
	box-shadow: 0px 0px 75px 75px rgba(0,0,0,0.65);
}

.bgbox-thin {
	/*height: 100%;*/
	/*width: 60%;*/
	background-color: rgba(0,0,0,0.35);
	-webkit-box-shadow: 0px 0px 50px 50px rgba(0,0,0,0.35);
	-moz-box-shadow: 0px 0px 50px 50px rgba(0,0,0,0.35);
	box-shadow: 0px 0px 50px 50px rgba(0,0,0,0.35);
}

.bgbox-dark {
	/*height: 100%;*/
	/*width: 60%;*/
	background-color: rgba(0,0,0,0.75);
	-webkit-box-shadow: 0px 0px 150px 150px rgba(0,0,0,0.75);
	-moz-box-shadow: 0px 0px 150px 150px rgba(0,0,0,0.75);
	box-shadow: 0px 0px 150px 150px rgba(0,0,0,0.75);
}

.bgbox-card {
	/*height: 100%;*/
	/*width: 60%;*/
	/*background-color: rgba(0,0,0,0.35);*/
	-webkit-box-shadow: 0px 0px 10px 2.5px rgba(0,0,0,1);
	-moz-box-shadow: 0px 0px 10px 2.5px rgba(0,0,0,1);
	box-shadow: 0px 0px 10px 2.5px rgba(0,0,0,1);
}

.bgbox:after {
	/*position: absolute;*/
}

.item-scrollable {
	overflow-y: scroll;
	max-height: 40%;
	position: relative;
}

.back {
	text-align: center;
	color:white;
	font-family: ANTEBELLUM;
	font-size: 2em;
	padding: 0.75em;
	cursor: pointer;
	width: 120px;
	margin: 0 auto;
	background-image: url("../img/ui/underline.png");
	background-repeat: no-repeat;
	background-size: 120px 0px;
	background-position: 50% 2em;
	transition:all 0.5s ease;
	/*z-index: 5;*/
	z-index: 4;
	position: relative;

}

.back:after {
}

.back:hover {
	background-size: 120px 12px;
    background-position: 50% 1.9em;

}

.vert-gap {
	height: 1.5em;
}

.item-container {
	width: 100%;
	padding: 0;-
	margin: 0;
	font-family: ANTEBELLUM;
	color: white;
	font-size: 2em;
}

.item-title {
	font-family: ANTEBELLUM;
	color: white;
	font-size: 2em;
	text-align: center;
	width: 280px;
	display: block;
	position: relative;
	padding: 0.5em 0 0.5em 0;
	border-radius: 2.5px;
	line-height: 80%;
	border: 3px solid white;
	left: 50%;
	margin-left: -140px;
	/*margin-top: 15%;*/
	margin-bottom: 1.5em;
	z-index: 4;
}

.item-title.nobox {
	border: none;
	/*margin-bottom: 0em;*/
	font-size: 10em;
	width: 100%;
	left: 0;
	margin: 0 auto;
}

.item-33 {
	text-align: center;
	width: 30%;
	display: inline-block;
	position: relative;
	padding: 0.5em 0 0.5em 0;
	/*margin: 2%;*/
	border-radius: 2.5px;
	line-height: 80%;
	/*background-color: white;*/
	border: 3px solid white;
	cursor: pointer;
	transition: box-shadow 0.25s ease;
	/*width: 300px;*/
	/*top: 0;
	left: 0;*/
	margin-left: 0px;
	box-shadow: 0 0 0pt 0pt white;



}

.item-33:hover {
	box-shadow: 0 0 0 1px white;
}

.item-33:nth-of-type(2) {
	margin: 0 5%;
}

.item-33.topper {
	position: fixed;
	width: 300px;
	top: 20% !important;
	left: 50% !important;
	margin-left: -150px;
}

div[class^="poster"] {
	top: 100vh;
	transition: top 0.9s ease;
	background-size: cover;
	background-repeat: no-repeat;
	z-index: 3;
	color: red;
	height: 100vh;
	position: absolute;


}

div[class^="poster"].showPoster {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	visibility: visible;
}

.poster1 {
	background-image: url("../img/bg_yl.jpg");
	background-position: 50% 10%;
}

.poster2 {
	background-image: url("../img/bg_wg.jpg");
	background-position: 100% 0%;
}

.poster3 {
	background-image: url("../img/bg_ni.jpg");
	background-position: 5% 80%;
}

.hideaway {
	transition: bottom 1s ease;
	bottom: 0;
}

.hideaway.hide {
	position: absolute;
	bottom: 100%;
}

.showcase-topbox {
	/*border: 3px solid white;*/
	/*border-radius: 2.5px;*/
	width: 100%;
	margin: 0 auto;
	position: relative;
	margin-bottom: 10em;
	background-image: url("../img/blackhalfback.png");
	background-repeat: no-repeat;
	background-size: 100% 100%;
	background-position: top;
	padding: 20vh 0 15em 0;
}

.showcase-category {
	width: 80%;
	margin: 0 auto;
	display: table;
	position: relative;
  	overflow: hidden;
	margin-bottom: 10em;
	background-image: url("../img/whiteback2.png");
	background-size: 100% 100%;
	background-position: center;
	background-repeat: no-repeat;
}

.showcase-category.blank {
	background-image: none !important;
	display: table !important;
	margin-bottom: 4em;
}

.showcase-category:nth-of-type(2n) {
	background-image: url("../img/whiteback.png");
}

.showcase-box {
	display: table-cell;
	position: relative;
	padding: 1em;
	vertical-align: middle;
}

.showcase-box.small {
	width: 33%;
}

.showcase-box.big {
	width: 66%;
}

.showcase-box img {
	width: 100%;
	height: auto;
	position: relative;
	z-index: 5;
}

.page-title.showcase-title {
	/*border-bottom: 3px solid white;*/
	padding-bottom: 0em;
	margin-bottom: 0em;
	top: 0;
	line-height: 100%;
	color: black;

}

.showcase-divider {
	margin-top: -0.75em;
	margin-bottom: .75em;
	height: 120px;
	width: 100%;
}


.showcase-button {
	font-family: Raleway;
	font-size: 1em;
	font-weight: bold;
	color: black;
	width: 120px;

	background-image: url("../img/ui/underlinenogap.png");

	background-repeat: no-repeat;

	background-size: 120px 0px;

	background-position: 50% 1.7em;

	transition:all 0.5s ease;
	cursor: pointer;
	padding-bottom: 2em;

}

.showcase-button:hover {
	background-size: 120px 12px;
    background-position: 50% 1.5em;

}

.showcase-item {
	display: inline-block;
	width: 33.333%;
	height: 300px;
	background-size: cover;
	background-position: center;
	/*border: 5px solid white;*/
}

.showcase-oneoff {
	width: 100%;
	-webkit-clip-path: polygon(0% 0%, 100% 20%, 100% 80%, 0% 100%);
	clip-path: polygon(0% 0%, 100% 20%, 100% 80%, 0% 100%);
	display: table-cell;
	vertical-align: middle;
}

.showcase-category:nth-of-type(2n+1) .showcase-oneoff {
	-webkit-clip-path: polygon(100% 0%, 0% 20%, 0% 80%, 100% 100%);
	
	clip-path: polygon(100% 0%, 0% 20%, 0% 80%, 100% 100%);
}

.showcase-oneoff img {
	width: 100%;
	height: auto;
}

#di {
	background-image: url("../img/sasasweater.png");
}

#showcase2 {
	background-image: url("../img/leadphone.png");
}



.contact-card {
	-ms-transform: rotate(-5deg);
	-webkit-transform: rotate(-5deg);
	transform: rotate(-5deg);
	width: 480px;
	height: 240px;
	background-color: white;
	/*position: absolute;*/
	/*left: -240px;*/
	/*margin-left: 50%;*/
	margin: 0 auto;
}

.contact-card-name {

	background: black;
	width: 60%;
	height: 100%;
	display: inline-block;
	/*-ms-clip-path: polygon(0% 0%, 0% 100%, 75% 100%, 100% 0%);*/
	/*-webkit-clip-path: polygon(0% 0%, 0% 100%, 75% 100%, 100% 0%);*/
	-ms-clip-path: polygon(0px 0px, 0px 240px, 216px 240px, 288px 0px);
	-webkit-clip-path: polygon(0px 0px, 0px 240px, 216px 240px, 288px 0px);
	clip-path: polygon(0px 0px, 0px 240px, 216px 240px, 288px 0px);
}

.contact-card-name img {
	padding: 20% 0 0 12.5%;
	height: 75%;
	width: auto;
}

.contact-card-details {
	width: 480px;
	display: block;
	font-family: Raleway;
	font-size: 12px;
	text-align: right;
	height: 100%;
	position: absolute;
	top: 50%;
}

.contact-card-details h1 {
	margin-top: -38px;
	font-family: ANTEBELLUM;
	margin-bottom: -20px;
	padding-bottom: 1.5em;
	padding-right: 36px;
	line-height: 100%;

}

.contact-card-details img {
	height: 20px;
	/*margin-left: -64px;*/
	margin-top: -96px;
	margin-bottom: 12px;
	padding-right: 12px;

}

.contact-card-details h2 {
	font-size: 1.25em;
	margin-top: -1.25em;
	margin-left: -16px;
	padding-right: 36px;
}

.contact-card-close {
	width: 24px;
	height: auto;
	position: absolute;
	top: 50%;
	margin-top: -110px;
	left: 50%;
	margin-left: 204px;
	-webkit-mix-blend-mode: difference;
	mix-blend-mode: difference;
	cursor: pointer;
}

.contact-card-close img {
	width: 100%;
	height: auto;
}

/*@media only screen and (max-width: 960px) {
  	#menu {
		font-size: 1.35em;
	} 

	.menu-item {
		padding: 1.75em .75em 2em .75em;
	}

	.oed-spacer {
		height: 120%;
	}

	.oed-spacer img {
		bottom: 15%;
		left: 64px;
	}

	.page-content {
		width: 100%;
		padding-left: 20%;
		padding-right: 20%;

	}
}*/

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

/*-TEMPORARY----------------------------*/
  	#menu {
		font-size: 1.35em;
	} 

	.menu-item {
		padding: 1.75em .75em 2em .75em;
	}

	.oed-spacer {
		height: 120%;
	}

	.oed-spacer img {
		bottom: 15%;
		left: 64px;
	}

	.page-content {
		width: 100%;
		padding-left: 20%;
		padding-right: 20%;

	}



/*----------------------------*/

  	#menu-collapsed {
  		display: block;
  	}

  	#menu {
		/*display: none;*/
	} 

	.menu-item {
	   	display: none;
	}

	.page-content {
		width: 100%;
		padding-left: 25%;
		padding-right: 25%;

	}

	.page-title {
		/*padding-top: 35%;*/
	}

	#header-name.minimize {
		width: 150px;
		min-width: 150px;
		left: -12px;
	}

	#header-name.minimize:hover {
		left: -10px;
	}

	.oed-spacer {
		height: 110%;
	}

	.oed-spacer img {
		bottom: 12%;
		left: 48px;
	}

	.item-33 {
		width: 100%;
		padding: 0.5em 0 0.5em 0;
	}

	.item-33:nth-of-type(2) {
		margin: 0.5em 0;
	}

	.item-33 br {
		display: none;
	}



	.showcase-category {
		width: 90%;
	}

	.showcase-box {
		text-align: center;
	}

	.showcase-button {
		width: 100%;
		text-align: center;
	}

	.showcase-box.big {
		width: 100%;
		display: inline-block;

	    /*mix-blend-mode: difference;*/

	}

	.showcase-box.small {
		margin: 3em 25% 10em 25%;
		width: 50%;
		display: inline-block;
	}

	.item-title.nobox {
		font-size: 6em;
	}
}

@media only screen and (max-width: 640px) {
  	#menu-collapsed {
  		width: 32px;
  		height: 32px;
  	}

  	#menu-openned {
  		width: 32px;
  		height: 32px;
  	}

  	.page-content {
		width: 100%;
		padding-left: 5%;
		padding-right: 5%;

	}

  	.page-title {
		/*padding-top: 50%;*/
	}

	#header-name.minimize {
		width: 100px;
		min-width: 100px;
		left: -8px;
	}

	#header-name.minimize:hover {
		left: -6px;
	}

	.menu-item.wide {
		line-height: 210%;
		font-size: 1.4em;
	}
	.oed-spacer {
		height: 100%;
	}

	.oed-spacer img {
		width: 80%;
		bottom: 0%;
		left: 10%
	}

	.oed-select {
		padding-top: 6em;
	}

	#page-mission {
		background-size: auto 150%;
	}

	#page-mission .about-text {
		/*font-size: 0.5em;*/
	}

	.showcase-box.small {
		margin: 3em 5% 5em 5%;
		width: 90%;
	}

	.showcase-topbox {
		padding-top: 15vh;
	}

	.item-title.nobox {
		margin-top: 1em;
		font-size: 3em;
	}

	#contactcard {
		-ms-transform: scale(0.5, 0.5) translateX(-25%) rotate(-7deg); /* IE 9 */
	    -webkit-transform: scale(0.5, 0.5) translateX(-25%) rotate(-7deg); /* Safari */
	    transform: scale(0.5, 0.5) translateX(-25%) rotate(-7deg);

	}
}

@media screen and (orientation:portrait) {
	.about-text {
		font-size: 16px !important;
	}
}

/*ANIMATIONS*/

.anim-float{
  animation: float ease-in-out 5s;
  animation-iteration-count: infinite;
  transform-origin: 50% 50%;
  -webkit-animation: float ease-in-out 5s;
  -webkit-animation-iteration-count: infinite;
  -webkit-transform-origin: 50% 50%;
  -moz-animation: float ease-in-out 5s;
  -moz-animation-iteration-count: infinite;
  -moz-transform-origin: 50% 50%;
  -o-animation: float ease-in-out 5s;
  -o-animation-iteration-count: infinite;
  -o-transform-origin: 50% 50%;
  -ms-animation: float ease-in-out 5s;
  -ms-animation-iteration-count: infinite;
  -ms-transform-origin: 50% 50%;
}

.anim-float-short{
  animation: float-short ease-in-out 2s;
  animation-iteration-count: infinite;
  transform-origin: 50% 50%;
  -webkit-animation: float-short ease-in-out 2s;
  -webkit-animation-iteration-count: infinite;
  -webkit-transform-origin: 50% 50%;
  -moz-animation: float-short ease-in-out 2s;
  -moz-animation-iteration-count: infinite;
  -moz-transform-origin: 50% 50%;
  -o-animation: float-short ease-in-out 2s;
  -o-animation-iteration-count: infinite;
  -o-transform-origin: 50% 50%;
  -ms-animation: float-short ease-in-out 2s;
  -ms-animation-iteration-count: infinite;
  -ms-transform-origin: 50% 50%;
}

.anim-delay-second {
	animation-delay: 1.66s;
}

.anim-delay-third {
	animation-delay: 3.33s;
}

@keyframes float{
  0% {
    transform:  translate(0px,-5px)  ;
  }
  50% {
    transform:  translate(0px,5px)  ;
  }
  100% {
    transform:  translate(0px,-5px)  ;
  }
}

@-moz-keyframes float{
  0% {
    -moz-transform:  translate(0px,-5px)  ;
  }
  50% {
    -moz-transform:  translate(0px,5px)  ;
  }
  100% {
    -moz-transform:  translate(0px,-5px)  ;
  }
}

@-webkit-keyframes float {
  0% {
    -webkit-transform:  translate(0px,-5px)  ;
  }
  50% {
    -webkit-transform:  translate(0px,5px)  ;
  }
  100% {
    -webkit-transform:  translate(0px,-5px)  ;
  }
}

@-o-keyframes float {
  0% {
    -o-transform:  translate(0px,-5px)  ;
  }
  50% {
    -o-transform:  translate(0px,5px)  ;
  }
  100% {
    -o-transform:  translate(0px,-5px)  ;
  }
}

@-ms-keyframes float {
  0% {
    -ms-transform:  translate(0px,-5px)  ;
  }
  50% {
    -ms-transform:  translate(0px,5px)  ;
  }
  100% {
    -ms-transform:  translate(0px,-5px)  ;
  }
}

@keyframes float-short{
  0% {
    transform:  translate(0px,-1.5px)  ;
  }
  50% {
    transform:  translate(0px,1.5px)  ;
  }
  100% {
    transform:  translate(0px,-1.5px)  ;
  }
}

@-moz-keyframes float-short{
  0% {
    -moz-transform:  translate(0px,-1.5px)  ;
  }
  50% {
    -moz-transform:  translate(0px,1.5px)  ;
  }
  100% {
    -moz-transform:  translate(0px,-1.5px)  ;
  }
}

@-webkit-keyframes float-short{
  0% {
    -webkit-transform:  translate(0px,-1.5px)  ;
  }
  50% {
    -webkit-transform:  translate(0px,1.5px)  ;
  }
  100% {
    -webkit-transform:  translate(0px,-1.5px)  ;
  }
}

@-o-keyframes float-short{
  0% {
    -o-transform:  translate(0px,-1.5px)  ;
  }
  50% {
    -o-transform:  translate(0px,1.5px)  ;
  }
  100% {
    -o-transform:  translate(0px,-1.5px)  ;
  }
}

@-ms-keyframes float-short{
  0% {
    -ms-transform:  translate(0px,-1.5px)  ;
  }
  50% {
    -ms-transform:  translate(0px,1.5px)  ;
  }
  100% {
    -ms-transform:  translate(0px,-1.5px)  ;
  }
}

.anim-spin-in{
  animation: spin-in ease-in-out 1s;
  animation-iteration-count: 1;
  transform-origin: 50% 50%;
  -webkit-animation: spin-in ease-in-out 1s;
  -webkit-animation-iteration-count: 1;
  -webkit-transform-origin: 50% 50%;
  -moz-animation: spin-in ease-in-out 1s;
  -moz-animation-iteration-count: 1;
  -moz-transform-origin: 50% 50%;
  -o-animation: spin-in ease-in-out 1s;
  -o-animation-iteration-count: 1;
  -o-transform-origin: 50% 50%;
  -ms-animation: spin-in ease-in-out 1s;
  -ms-animation-iteration-count: 1;
  -ms-transform-origin: 50% 50%;
}

@keyframes spin-in{
  0% {
    transform:  translate(1500px,0px)  rotate(360deg) ;
  }
  100% {
    transform:  translate(0px,0px)  rotate(-7deg) ;
  }
}

@-moz-keyframes spin-in{
  0% {
    -moz-transform:  translate(1500px,0px)  rotate(360deg) ;
  }
  100% {
    -moz-transform:  translate(0px,0px)  rotate(-7deg) ;
  }
}

@-webkit-keyframes spin-in {
  0% {
    -webkit-transform:  translate(1500px,0px)  rotate(360deg) ;
  }
  100% {
    -webkit-transform:  translate(0px,0px)  rotate(-7deg) ;
  }
}

@-o-keyframes spin-in {
  0% {
    -o-transform:  translate(1500px,0px)  rotate(360deg) ;
  }
  100% {
    -o-transform:  translate(0px,0px)  rotate(-7deg) ;
  }
}

@-ms-keyframes spin-in {
  0% {
    -ms-transform:  translate(1500px,0px)  rotate(360deg) ;
  }
  100% {
    -ms-transform:  translate(0px,0px)  rotate(-7deg) ;
  }
}
