	
/* -------------------------------- 
version: 10.04.2017
Primary style

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

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
 /* font-family: "PT Sans", sans-serif;
  background-color: #101524; */
  color: #ffffff;
  
}

a {
  color: #9e1c51;
  text-decoration: none;
}

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

Olox Components 

-------------------------------- */
.cd-title-projektliste{
  display: none;
  opacity: 0;    
    -webkit-transition: opacity 1s;
    -moz-transition: opacity 1s;
    transition: opacity 1s;
	-webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
}


.is-full-width .cd-title-projektliste{
  display: block;
  opacity: 1;
  position: absolute;
  z-index: 1;
  right: 0%;
  top: 0%;
  background: rgba(255, 255, 255, 1) none repeat scroll 0% 0%;
  height: 100%;
  width: 100%;
}
.olox_breadcrumb{
	position: absolute;
	bottom: 50px;
	left: 90px;
}
/*
.is-full-width .cd-title-projektliste ul:nth-of-type(1) {
	margin-top: 40px;
}*/
.cd-title-projektliste ul{
	margin-top: 4vh;
	padding-left: 0;
  	-webkit-transition: background 0.2s;
	transition: background 0.2s;
}
.cd-title-projektliste ul:hover{
	background: rgba(235, 235, 235, 1) none repeat scroll 0% 0%;
}
.cd-title-projektliste h2{
	font-size: 1.8rem;
	font-size: 2.6vw;
	/* text-shadow: 0px 1px 4px rgba(0, 0, 0, 0.2);*/
	margin-bottom: 1vh;
	color: #151515;
	cursor: pointer;
}
.cd-title-projektliste p{
	cursor: pointer;
	color: #151515;
	font-size: 1.8vw;
	opacity: 0.8;
}
.titel-uber-scroll{
	background: rgba(0, 0, 0, 0.6) none repeat scroll 0% 0%;
	padding: 30px 20px 30px 40px;
	padding: 2vh 8vw 6vh 4vw;
	color: #fff;
	height: 40vh;
}
.titel-uber-scroll h2{
	color: #fff;
}
.titel-uber-scroll p{
	font-size: 1.8vw;
	color: #fff;
	opacity: 0.8;
}
.olox-scroll{
	overflow: auto;
	height: calc(100vh - 70px - 40vh); /* Menü oben: 70px + 'titel-uber-scroll' = 40vh */
	width: 100%;
	padding: 2vh 8vw 6vh 4vw;
}
 

@media only screen and (min-width: 1024px), screen and (orientation: portrait) {
	.cd-title-projektliste h2{
	  font-size: 1.8rem;
	}
	.cd-title-projektliste p{
	  font-size: 0.7em;
	}
	.cd-title-projektliste ul{
		padding: 10px 10px 10px 40px;
		margin-top: 22px;
	}
	.cd-title-projektliste p{
		font-size: 0.7em;
	}
	.titel-uber-scroll{
		height: 240px;
		padding: 30px 100px 30px 40px;
	}
	.olox-scroll{
		height: calc(100vh - 100px - 240px); 	/* Menü oben: 100px + 'titel-uber-scroll' = 200px */
		padding: 0 0 50px 0;					/* unten ein wenig Luft */
	}
}
@media only screen and (orientation: portrait) {
	.cd-title-projektliste ul{
		padding: 0vh 0vw 0vh 4vw;
	}
	.titel-uber-scroll{
		padding: 2vh 12vw 6vh 4vw;
	}
}


@media only screen and (min-width: 640px) {
	.is-full-width .cd-title-projektliste{
	  position: absolute;
	  z-index: 1;
	  background: rgba(255, 255, 255, 0.8) none repeat scroll 0% 0%;
	  height: 100%;
	  width: 40%;
	}
	.cd-title-projektliste ul:hover{
	  background: rgba(255, 255, 255, 0.4) none repeat scroll 0% 0%;
	}
}


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

Main Components 

-------------------------------- */
	
.projects-container {
  /*background-color: #101524;
  background-color: #417398;*/
  background-color: #031c5c;
  position: absolute;
  height: calc(100vh - 70px);  			/* Menü oben: 70px  */
  top: 70px;
  width: 100vw;
 /*position: relative;*/
  overflow-y: hidden;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}
 
@media screen and (min-width: 48em) {
	.projects-container {
	  height: calc(100% - 100px);	 /* Menü oben: 100px  */
	  top: 100px;
	}
}

.projects-container::before {
  /* never visible - this is used in jQuery to check the current MQ */
  content: 'mobile';
  display: none;
}
.projects-container .cd-single-project {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 16.666666666667%;
  overflow: hidden;
  cursor: pointer;
  font-size: 1.6rem;
  /*font-family: "PT Sans", sans-serif;*/
  color: #ffffff;
  -webkit-transition: -webkit-transform 0.4s;
  -moz-transition: -moz-transform 0.4s;
  transition: transform 0.4s;
  /* on mobile -  move items outside the viewport */
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  transform: translateX(-100%);
}

	
.projects-container .cd-single-project::after {
  /* background image */
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 16.666666666667vh;
  width: 100%;
  background-image: url("/bilder/L-kf1217-3.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  -webkit-transition: opacity 0.5s, height 0.4s;
  -moz-transition: opacity 0.5s, height 0.4s;
  transition: opacity 0.5s, height 0.4s;
}
.projects-container .cd-single-project::before {
  /* never visible - this is used in jQuery to detect if the background image has been loaded  */
  content: '/bilder/L-kf1217-3.jpg';
  display: none;
}

  	
	.projects-container .cd-single-project:nth-of-type(2) {
		top: 15.666666666667%;
	}
	.projects-container .cd-single-project:nth-of-type(2)::after {
	  background-image: url("/bilder/L-hpim0089_gekuerzt.jpg");
	 /* filter: brightness(0.5) contrast(0.5) saturate(0.5) blur(2px);
	  filter: brightness(0.5) saturate(0.5) blur(2px);*/
	}
	.projects-container .cd-single-project.is-full-width:nth-of-type(2)::after {
	    filter: unset;
	}
	.projects-container .cd-single-project:nth-of-type(2)::before {
	  content: '/bilder/L-hpim0089_gekuerzt.jpg';
	}
	
	.projects-container .cd-single-project:nth-of-type(3) {
		top: 32.333333333333%;
	}
	.projects-container .cd-single-project:nth-of-type(3)::after {
	  background-image: url("/bilder/L-bearbeitet_n_rcfa8e50bd3e8264b84d39283fad16709.jpg");
	 /* filter: brightness(0.5) contrast(0.5) saturate(0.5) blur(2px);
	  filter: brightness(0.5) saturate(0.5) blur(2px);*/
	}
	.projects-container .cd-single-project.is-full-width:nth-of-type(3)::after {
	    filter: unset;
	}
	.projects-container .cd-single-project:nth-of-type(3)::before {
	  content: '/bilder/L-bearbeitet_n_rcfa8e50bd3e8264b84d39283fad16709.jpg';
	}
	
	.projects-container .cd-single-project:nth-of-type(4) {
		top: 49%;
	}
	.projects-container .cd-single-project:nth-of-type(4)::after {
	  background-image: url("/bilder/L-2015.02.09_mauerwerk_u._fenster_126.jpg");
	 /* filter: brightness(0.5) contrast(0.5) saturate(0.5) blur(2px);
	  filter: brightness(0.5) saturate(0.5) blur(2px);*/
	}
	.projects-container .cd-single-project.is-full-width:nth-of-type(4)::after {
	    filter: unset;
	}
	.projects-container .cd-single-project:nth-of-type(4)::before {
	  content: '/bilder/L-2015.02.09_mauerwerk_u._fenster_126.jpg';
	}
	
	.projects-container .cd-single-project:nth-of-type(5) {
		top: 65.666666666667%;
	}
	.projects-container .cd-single-project:nth-of-type(5)::after {
	  background-image: url("/bilder/L-innendetail2_klein.jpg");
	 /* filter: brightness(0.5) contrast(0.5) saturate(0.5) blur(2px);
	  filter: brightness(0.5) saturate(0.5) blur(2px);*/
	}
	.projects-container .cd-single-project.is-full-width:nth-of-type(5)::after {
	    filter: unset;
	}
	.projects-container .cd-single-project:nth-of-type(5)::before {
	  content: '/bilder/L-innendetail2_klein.jpg';
	}
	
	.projects-container .cd-single-project:nth-of-type(6) {
		top: 82.333333333333%;
	}
	.projects-container .cd-single-project:nth-of-type(6)::after {
	  background-image: url("/bilder/L-02020011.jpg");
	 /* filter: brightness(0.5) contrast(0.5) saturate(0.5) blur(2px);
	  filter: brightness(0.5) saturate(0.5) blur(2px);*/
	}
	.projects-container .cd-single-project.is-full-width:nth-of-type(6)::after {
	    filter: unset;
	}
	.projects-container .cd-single-project:nth-of-type(6)::before {
	  content: '/bilder/L-02020011.jpg';
	}

.projects-container .cd-single-project.is-loaded {
  /* move items in the viewport when background images have been loaded */
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}
.projects-container .cd-single-project.is-full-width {
  /* selected item */
  top: 0;
  height: auto;
  z-index: 1;
  cursor: auto;
  -webkit-transition: z-index 0s 0s, top 0.4s 0s;
  -moz-transition: z-index 0s 0s, top 0.4s 0s;
  transition: z-index 0s 0s, top 0.4s 0s;
}
.projects-container .cd-single-project.is-full-width::after {
  height: 100vh;
}



  .projects-container .cd-single-project::after {
    background-attachment: fixed;
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transition: -webkit-transform 0.8s, opacity 0.5s;
    -moz-transition: -moz-transform 0.8s, opacity 0.5s;
    transition: transform 0.8s, opacity 0.5s;
  }
    .projects-container .cd-single-project.is-loaded::after {
    opacity: 0;
  }
    .no-touch .projects-container .cd-single-project:hover::after, .projects-container .cd-single-project.is-full-width.is-loaded::after {
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
  


@media only screen and (min-width: 1024px){
  .projects-container::before {
    /* never visible - this is used in jQuery to check the current MQ */
    content: 'desktop';
  }
  	
  .projects-container .cd-single-project {
    width: 16.666666666667%;
    height: 100%;
    opacity: 0;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: width 0s;
    -moz-transition: width 0s;
    transition: width 0s;
  }
  .projects-container .cd-single-project:first-of-type::before {
    content: '/bilder/L-kf1217-3.jpg';
  }
  .projects-container .cd-single-project:first-of-type::after {
    background-image: url("/bilder/L-kf1217-3.jpg");
  }
  
  	
	.projects-container .cd-single-project:nth-of-type(2) {
		top: 0;
		left: 16.666666666667%;
	}
	.projects-container .cd-single-project:nth-of-type(2)::after {
	  background-image: url("/bilder/L-hpim0089_gekuerzt.jpg");
	}
	.projects-container .cd-single-project:nth-of-type(2)::before {
	  content: '/bilder/L-hpim0089_gekuerzt.jpg';
	}
	
	.projects-container .cd-single-project:nth-of-type(3) {
		top: 0;
		left: 33.333333333333%;
	}
	.projects-container .cd-single-project:nth-of-type(3)::after {
	  background-image: url("/bilder/L-bearbeitet_n_rcfa8e50bd3e8264b84d39283fad16709.jpg");
	}
	.projects-container .cd-single-project:nth-of-type(3)::before {
	  content: '/bilder/L-bearbeitet_n_rcfa8e50bd3e8264b84d39283fad16709.jpg';
	}
	
	.projects-container .cd-single-project:nth-of-type(4) {
		top: 0;
		left: 50%;
	}
	.projects-container .cd-single-project:nth-of-type(4)::after {
	  background-image: url("/bilder/L-2015.02.09_mauerwerk_u._fenster_126.jpg");
	}
	.projects-container .cd-single-project:nth-of-type(4)::before {
	  content: '/bilder/L-2015.02.09_mauerwerk_u._fenster_126.jpg';
	}
	
	.projects-container .cd-single-project:nth-of-type(5) {
		top: 0;
		left: 66.666666666667%;
	}
	.projects-container .cd-single-project:nth-of-type(5)::after {
	  background-image: url("/bilder/L-innendetail2_klein.jpg");
	}
	.projects-container .cd-single-project:nth-of-type(5)::before {
	  content: '/bilder/L-innendetail2_klein.jpg';
	}
	
	.projects-container .cd-single-project:nth-of-type(6) {
		top: 0;
		left: 83.333333333333%;
	}
	.projects-container .cd-single-project:nth-of-type(6)::after {
	  background-image: url("/bilder/L-02020011.jpg");
	}
	.projects-container .cd-single-project:nth-of-type(6)::before {
	  content: '/bilder/L-02020011.jpg';
	}

  .projects-container .cd-single-project::after {
    height: 100vh;
    width: 100%;
    opacity: 0;
  }
  .projects-container .cd-single-project.is-loaded {
    /* show items when background images have been loaded */
    opacity: 1;
  }
  

  .projects-container .cd-single-project.is-full-width {
    /* selected item */
    left: 0vw;
    width: 100vw;
    -webkit-transition: width 0.4s 0s, z-index 0s 0s, left 0.4s 0s;
    -moz-transition: width 0.4s 0s, z-index 0s 0s, left 0.4s 0s;
    transition: width 0.4s 0s, z-index 0s 0s, left 0.4s 0s;
  }


  .projects-container .cd-single-project::after {
    background-attachment: fixed;
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transition: -webkit-transform 0.8s, opacity 0.5s;
    -moz-transition: -moz-transform 0.8s, opacity 0.5s;
    transition: transform 0.8s, opacity 0.5s;
  }
    .projects-container .cd-single-project.is-loaded::after {
    opacity: 0;
  }
    .no-touch .projects-container .cd-single-project:hover::after, .projects-container .cd-single-project.is-full-width.is-loaded::after {
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}


.cd-title {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 8.3333333333333vh;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  text-align: center;  /* Olox: Text nicht mittig */
}
.is-loaded.is-full-width .cd-title {
	opacity: 0; /* Olox: kein Titel mehr sichtbar! */
  /*top: 12vh;*/
  -webkit-transition: -webkit-transform 0.6s, opacity 0s, top 0.4s;
  -moz-transition: -moz-transform 0.6s, opacity 0s, top 0.4s;
  transition: transform 0.6s, opacity 0s, top 0.4s;
    -webkit-transform: translateY(-200%);
  -moz-transform: translateY(-200%);
  -ms-transform: translateY(-200%);
  -o-transform: translateY(-200%);
  transform: translateY(-250%);
	width: 423px;  /* breite wie Logo */
	left: 50%;
	margin-left: -450px;
	text-align: left; 
	padding: 20px;
	background: rgba(0, 0, 0, 0.7) none repeat scroll 0% 0%;
}
.is-full-width .cd-title p{ 
	padding: 0px;
}
.cd-title > * {
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.cd-title h2 {
  /*font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.5;*/
  font-size: 2.6rem;
  font-size: 3.5vh;
}
.cd-title p {
  /*font-size: 1.4rem;
    font-family: "Merriweather", serif;
	font-style: italic;*/
  font-size: 0.9rem;
  font-size: 0.9vw;
  line-height: 1.2;
  padding: .4em 2em;  /* Olox: Text nicht mittig */
  display: none;
  opacity: .6;
}
@media only screen and (min-width: 1024px) {
  .cd-title {
    top: 45vh;
	/*width: 25vw; */
   /* width: 16.666666666667vh; */
    opacity: 0;
    -webkit-transform: translateY(-50%) translateX(-20px);
    -moz-transform: translateY(-50%) translateX(-20px);
    -ms-transform: translateY(-50%) translateX(-20px);
    -o-transform: translateY(-50%) translateX(-20px);
    transform: translateY(-50%) translateX(-20px);
  }
  .is-loaded .cd-title {
    opacity: 1; 
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: -webkit-transform 0.6s, opacity 0.6s, left 0.4s;
    -moz-transition: -moz-transform 0.6s, opacity 0.6s, left 0.4s;
    transition: transform 0.6s, opacity 0.6s, left 0.4s;
	/* Olox */
	height: 280px;
	padding: 15px 5px 5px 5px;
  }
  .is-loaded .cd-title:hover {
	/*background: rgba(0, 0, 0, 0.8) none repeat scroll 0% 0%;*/
	background: rgba(3,28,92, 0.8) none repeat scroll 0% 0%;
  }
  .is-loaded.is-full-width .cd-title {
  /*  left: 37.5vw; */
    -webkit-transition: -webkit-transform 0.6s, opacity 0s, left 0.4s;
    -moz-transition: -moz-transform 0.6s, opacity 0s, left 0.4s;
    transition: transform 0.6s, opacity 0s, left 0.4s;
  }
  .cd-title h2 {
	  height: 1.8em;
	  font-size: 1.6rem;
	  font-size: 1.6vw;
	}
  .cd-title p {
    display: block;
  }
}
@media only screen and (min-width: 1170px) {
  .cd-title h2 {
   /* font-size: 3.6rem;*/
  }
}

.cd-project-info {
  clear: both;
  visibility: hidden;
  opacity: 0;
	margin-top: 100vh;;
  /* padding: 4em 0; */
  padding: 0em 0;
  cursor: auto;
  background-color: #ffffff;
  color: #3f538e;
  -webkit-transition: opacity 0.4s 0s, visibility 0s 0.4s;
  -moz-transition: opacity 0.4s 0s, visibility 0s 0.4s;
  transition: opacity 0.4s 0s, visibility 0s 0.4s;
}
.is-full-width .cd-project-info {
  visibility: visible;
  opacity: 1;
}
/*
.cd-project-info p {
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
  line-height: 2;
}*/
@media only screen and (min-width: 1024px) {
  .cd-project-info {
    position: relative;
    z-index: 1;
  }
}

.projects-container .cd-close,
.projects-container .cd-scroll {
  display: block;
  z-index: 1;
  width: 44px;
  height: 44px;
  /* image replacement */
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  visibility: hidden;
  -webkit-transition: -webkit-transform 1s 0s, visibility 0s 1s;
  -moz-transition: -moz-transform 1s 0s, visibility 0s 1s;
  transition: transform 1s 0s, visibility 0s 1s;
}

.projects-container .cd-close {
  position: fixed;
  top: 80px;
  right: 1vw;
  /*background: url("images/cd-icon-close-mobile.svg") no-repeat center center;*/
  background: url("images/cd-icon-close-desktop.svg") no-repeat center center;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  z-index: 80000;
}
@media only screen and (min-width: 1024px) {
  .projects-container .cd-close {
    top: 137px;
    right: 2%;
    background-image: url("images/cd-icon-close-desktop.svg");
  }
}

.projects-container .cd-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  -webkit-transform: translateX(-50%) scale(0);
  -moz-transform: translateX(-50%) scale(0);
  -ms-transform: translateX(-50%) scale(0);
  -o-transform: translateX(-50%) scale(0);
  transform: translateX(-50%) scale(0);
  background: url("images/cd-icon-arrow-mobile.svg") no-repeat center center;
}
@media only screen and (min-width: 1170px) {
  .projects-container .cd-scroll {
    background-image: url("images/cd-icon-arrow-desktop.svg");
  }
}

.project-is-open .cd-close,
.project-is-open .cd-scroll {
  visibility: visible;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition: -webkit-transform 0.4s 0s, visibility 0s 0s;
  -moz-transition: -moz-transform 0.4s 0s, visibility 0s 0s;
  transition: transform 0.4s 0s, visibility 0s 0s;
}

.project-is-open .cd-scroll {
  -webkit-transform: translateX(-50%) scale(1);
  -moz-transform: translateX(-50%) scale(1);
  -ms-transform: translateX(-50%) scale(1);
  -o-transform: translateX(-50%) scale(1);
  transform: translateX(-50%) scale(1);
  -webkit-animation: cd-translate 1.2s 0.4s;
  -moz-animation: cd-translate 1.2s 0.4s;
  animation: cd-translate 1.2s 0.4s;
  -webkit-animation-iteration-count: 2;
  -moz-animation-iteration-count: 2;
  animation-iteration-count: 2;
}

.no-touch .project-is-open .cd-close:hover {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
}

.no-touch .project-is-open .cd-scroll:hover {
  -webkit-transform: translateX(-50%) scale(1.2);
  -moz-transform: translateX(-50%) scale(1.2);
  -ms-transform: translateX(-50%) scale(1.2);
  -o-transform: translateX(-50%) scale(1.2);
  transform: translateX(-50%) scale(1.2);
}

@-webkit-keyframes cd-translate {
  0% {
    -webkit-transform: translateX(-50%) scale(1);
  }
  50% {
    -webkit-transform: translateY(10px) translateX(-50%) scale(1);
  }
  100% {
    -webkit-transform: translateX(-50%) scale(1);
  }
}
@-moz-keyframes cd-translate {
  0% {
    -moz-transform: translateX(-50%) scale(1);
  }
  50% {
    -moz-transform: translateY(10px) translateX(-50%) scale(1);
  }
  100% {
    -moz-transform: translateX(-50%) scale(1);
  }
}
@keyframes cd-translate {
  0% {
    -webkit-transform: translateX(-50%) scale(1);
    -moz-transform: translateX(-50%) scale(1);
    -ms-transform: translateX(-50%) scale(1);
    -o-transform: translateX(-50%) scale(1);
    transform: translateX(-50%) scale(1);
  }
  50% {
    -webkit-transform: translateY(10px) translateX(-50%) scale(1);
    -moz-transform: translateY(10px) translateX(-50%) scale(1);
    -ms-transform: translateY(10px) translateX(-50%) scale(1);
    -o-transform: translateY(10px) translateX(-50%) scale(1);
    transform: translateY(10px) translateX(-50%) scale(1);
  }
  100% {
    -webkit-transform: translateX(-50%) scale(1);
    -moz-transform: translateX(-50%) scale(1);
    -ms-transform: translateX(-50%) scale(1);
    -o-transform: translateX(-50%) scale(1);
    transform: translateX(-50%) scale(1);
  }
}

