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

.slider__navi {
	position: absolute;
	top: 50%;
	right: 50px;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	z-index: 99;
}

.slider__navi a {
	width: 14px;
  height: 14px;
  display: block;
  margin: 12px auto ;
  border: solid 2px  #ffffff;
  border-radius: 50%;
  cursor: pointer;
  background-color: rgba(255,255,255,0.0);
	
	-webkit-transition:all .5s;
	-moz-transition:all .5s;
	-o-transition:all .5s;
	transition:all .5s;
	-webkit-transform:translate3d(0,0,0);
	-ms-transform:translate3d(0,0,0);
	-o-transform:translate3d(0,0,0);
	transform:translate3d(0,0,0);
}

.slider__navi a:hover {
  background-color: white;
}


.slider__navi a.active {
	background: #ffffff;
}

#valoreslxm {
	position: relative;
	height: 600px;
}

.flex__container {
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	-webkit-flex-flow: row wrap;
	-moz-flex-flow: row wrap;
	-ms-flex-flow: row wrap;
	-o-flex-flow: row wrap;
	flex-flow: row wrap; 
	-webkit-justify-content: flex-start;
	-moz-justify-content: flex-start;
	-ms-justify-content: flex-start;
	-o-justify-content: flex-start;
	justify-content: flex-start;
	height: 600px;
	width: 100%;
	z-index: 1;
}

.flex__container.flex--active {
	z-index: 2;
}




.text--big {
	font-family: montserratbold;
	font-size: 1.3em;
    margin-left: 0px;
	color: #FFFFFF;
	text-align: left;
	width: 100%;
}



.textbig {
	font-family: montserratbold;
	font-size: 2em;
	color: #ffffff;
	text-align: center;
	border: 0px solid red;
	width: 100%;
}

.text--normal {
	font-size: 0.9em;
	color: rgba(255, 255, 255, 1);
	line-height: 20px;
	margin-top: 25px;
	font-family: montserratli;
	text-align: left;
}



.flex__item {
	height: 700px;
	color: #fff;
	transition: transform 0.3s linear;
	
}

.flex__item--left {
	
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	width: 50%;
	transform-origin: left bottom;
	transition: transform 0.1s linear 0.4s;
	opacity: 0;
	position: relative;
	overflow: hidden;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	align-content: center;
}


.flex__item--right {
	width: 50%;
	transform-origin: right center;
	transition: transform 0.1s linear 0s;
	opacity: 0;
	border: 0px solid red;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	align-content: center;
}






.flex--preStart .flex__item--left,
.flex--preStart .flex__item--right,
.flex--active .flex__item--left,
.flex--active .flex__item--right {
	opacity: 1;
}

/* Piplup */

.flex--piplup .flex__item--left {
	background: #fff;
}

.flex--piplup .flex__item--right {
	background:rgba(0,169,189,1.0);
}

/* Pikachu */

.flex--pikachu .flex__item--left {
	background-image: url(../img/38.jpg);
	background-position: center;
	background-size: cover;
	b
}

.flex--pikachu .flex__item--right {
	background: rgba(0,169,189,1.0);
}

/* Blaziken */

.flex--blaziken .flex__item--left {
	background: #fff;
}

.flex--blaziken .flex__item--right {
	background: rgba(0,169,189,1.0);
}

/* Dialga */

.flex--dialga .flex__item--left {
	background: #fff;
}

.flex--dialga .flex__item--right {
	background:rgba(0,169,189,1.0);
}

/* Zekrom */

.flex--zekrom .flex__item--left {
	background:#fff;
}

.flex--zekrom .flex__item--right {
	background: rgba(0,169,189,1.0);
}






.flex__content {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	align-content: center;
	align-items: center;
	width: 70%;
	border: 0px solid yellow;
	opacity: 1;
	transform: translate3d(0,0,0);
	transition: transform 0.2s linear 0.2s, opacity 0.1s linear 0.2s;
}







.pokemon__img {
	position: absolute;
	max-height: 40vw;
	opacity: 1;
	transform: translate3d(0,0,0);
	transition: opacity 0.43s 0.6s, transform 0.4s 0.65s cubic-bezier(0, 0.88, 0.4, 0.93);
	 box-shadow: 0 20px 25px -15px rgba(0, 0, 0, 0.3);
}

/* Animate-START point */

.flex__container.animate--start .flex__content {
	transform: translate3d(0,-200%,0);
	opacity: 0;
}

.flex__container.animate--start .pokemon__img {
	transform: translate3d(-200px,0,0);
	opacity: 0;
}

/* Animate-END point */

.flex__container.animate--end .flex__item--left {
	transform: scaleY(0);
}

.flex__container.animate--end .flex__item--right {
	transform: scaleX(0);
}

.flex__container.animate--end .flex__content {
	transform: translate3d(0,200%,0);
	opacity: 0;
}

.flex__container.animate--end .pokemon__img {
	transform: translate3d(200px,0,0);
	opacity: 0;
}



