/* CSS */
/* ID */
#imgGardePortFolio {
	width : 100%;
	position : relative;
	margin-top : -10%;
	transition : 0.35s all ease-in; 
}
#chevronDown {
	color: black;
	position: absolute;
	top : 80%;
	left : 50%;
	transform: translateX(-50%);
	font-size : 150px;
	opacity : 40%;
	animation: 3s infinite alternate bounceUp;
	cursor : pointer;
}
#bottomPage {
	position : absolute;
    top: 130%;
    width: 800px;
    left: 50%;
    transform: translateX(-400px);
}
/* CLASS */
.imgCarousel {
	height : 450px;
}

/* ANIMATIION */
@keyframes bounceUp {
  from {
    top: 75%;
  }

  to {
    top: 80%;
  }
}