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