.arrowContainer{
  width: 100%;
  float: left;
  margin:0px;
  margin-bottom: 15px;
  margin-top: 30px;
  display: none;
}
.chevron {
  position: absolute;
  width: 28px;
  height: 8px;
  opacity: 0;
  margin-left: calc(50% - 14px);
  margin-top: -50px;
  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: rgba(0,0,0,0.5);
}

.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);
  }
}

.text {
  display: block;
  margin-top: 5px;
  width:100%;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8em;
  color: rgba(0,0,0,1);
  text-transform: uppercase;
  white-space: nowrap;
  opacity: .25;
  animation: pulse 2s linear alternate infinite;
  padding-top: 5px;
  padding-bottom: 50px;
}

@keyframes pulse {
  to {
    opacity: 1;
  }
}
/******************************/
/******************************/
/****                      ****/
/****      CSS MOBILE      ****/
/****                      ****/
/******************************/
/******************************/
@media (min-width: 411px) and (max-width: 731px) {
  .arrowContainer{
  display: block;
}
}
@media (min-width: 360px) and (max-width: 640px) {
  .arrowContainer{
  display: block;
}
}
@media (min-width: 320px) and (max-width: 568px) {
  .arrowContainer{
  display: block;
}
}
@media (min-width: 280px) and (max-width: 653px) {
  .arrowContainer{
  display: block;
}
}

/******************************/
/******************************/
/****    RESIZED DESKTOP   ****/
/****      CSS MOBILE      ****/
/****                      ****/
/******************************/
/******************************/
@media (min-width: 732px) and (max-width: 1300px){
  .arrowContainer{
  display: block;
}
}
