#pageScroller {
    height: 100vh;
}

.actionCard {
    width: 450px;
    display: inline-block;
    text-align: left;
    padding: 15px;
    margin: 30px;
    background-color: var(--rich-blue-alpha);
    color: #fff;
    margin-bottom: 50px;
    display: none;
}

.actionCard h1 { font-size: 25px; }

.actionCard h3 {
    margin: 10px 0px;
    font-size: 16px;
}

.actionCard a:hover { color: var(--light-link-color); }

.actionCard::before {
    content: "";
    position: absolute;
    bottom: 0px;
    right: 0px;
    height: 10px;
    border-right: 400px solid var(--dark-blue);
    border-top: 133px solid transparent;
    z-index: -1;
}

.downBtns {
    bottom: 10px;
    z-index: 1000;
}

.downBtns .dbl {
    height: 20px;
    display: block;
    top: -7px;
    position: relative;
}

.arrow-down, .arrow-up {
    position: relative;
    width: 24px;
    height: 10px;
    display: inline-block;
}
.arrow-down:before {
    transform: rotate(30deg) translate(-2px, -5px);
}

.arrow-down:after {
    transform: rotate(-30deg) translate(2px, -5px);
}
.arrow-down:before, .arrow-down:after, .arrow-up:before, .arrow-up:after {
    content: "";
    width: 12px;
    height: 1px;
    background-color: #ddd;
    display: inline-block;
}
.arrow-down + br + .arrow-down.relative {
    top: -13px;
}

.nextPage .arrow-down {
    animation: downOpacity 1.3s infinite cubic-bezier(1,.43,.44,.67);
}

@keyframes downOpacity {
	0% {
		opacity: 1;
		transform: translateY(0px);
	}
	100% {
		opacity: .3;
		transform: translateY(10px);
	}
}
