.picleft-container{
	display: flex;
	flex-direction: row;
}
.picleft-text{
	width: 40%;
	padding: 0 0 0 16px;
}
.picleft-pic{
	width: 60%;
}
.picleft-pic img{
	width: 100%;
	height: auto;
}
.slideInRight{
	opacity: 0;
}
.slideright{
	animation: slideinright 1s ease;
	position: relative;
	opacity: 1;
}
@keyframes slideinright {
  from {
    left: -200px;
    opacity: 0;
  }

  to {
    left: 0px;
    opacity: 1;
  }
}
@media only screen and (max-width:1000px){
	.picleft-container{
		flex-wrap: wrap;
		flex-direction: column-reverse;
	}
	.picleft-text, .picleft-pic{
		width: 100%;
		padding: 0;
	}
	.picleft-pic{
		margin-top: 0 !important;
	}	
	.picleft-text{
		margin-bottom: 0 !important;
	}
}
@media only screen and (max-width:500px){
	.slideright{
		animation: none;
	}
	.slideInRight{
		opacity: 1;
	}
}