.container-scroll-down {
	position: absolute;
	margin: auto;
	width: 100%;
	bottom: 20px
}

.wrapper-scroll-down {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	width: 24px;
	height: 24px;
	margin-right: auto;
	margin-left: auto;
	font-weight: bolder;
	z-index: 2000;
	margin-bottom: 120px;
	-moz-border-end-width: 100%;
	}

	.chevron {
	position: absolute;
	width: 60px;
	height: 6px;
	opacity: 0;
	transform: scale3d(0.5, 0.5, 0.5);
	animation: move 3s ease-out infinite;
	}

	.chevron:first-child {
	  animation: move 3s ease-out 1s infinite;
	}

	.chevron:nth-child(2) {
	  animation: move 3s ease-out 2s infinite;
	}

	.chevron:before,
	.chevron:after {
	  content: ' ';
	  position: absolute;
	  top: 0;
	  height: 100%;
	  width: 51%;
	  background: #fff;
	}

	.chevron:before {
	  left: 0;
	  transform: skew(0deg, 30deg);
	}

	.chevron:after {
	  right: 0;
	  width: 50%;
	  transform: skew(0deg, -30deg);
	}

	@keyframes move {
	  25% {
		opacity: 1;

	  }
	  33% {
		opacity: 1;
		transform: translateY(30px);
	  }
	  67% {
		opacity: 1;
		transform: translateY(40px);
	  }
	  100% {
		opacity: 0;
		transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
	  }
	}

	.scroll-down-text {
	display: block;
	margin-top: 134px;
	font-size: 12px;
	color: #fff;
	text-transform: uppercase;
	white-space: nowrap;
	opacity: 0.8;
	text-align: center;
	font-weight: bolder;
	}
