.section-scroller {
    display: flex;
    justify-content: center;
    cursor:pointer;
    margin-bottom: -2.8rem;
}

.section-scroller-icon {
    width: 8.5rem;
    height: 4rem;
    position: relative;

}

.section-scroller-bg,
.section-scroller-arrow {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
}

.section-scroller-bg img,
.section-scroller-arrow img,
.section-scroller-bg svg,
.section-scroller-arrow svg{
    width: 100%;
    height: 100%;
}

.section-scroller-arrow {
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    transform: translateY(0);
}

.section-scroller-icon:hover .section-scroller-arrow {
    transform: translateY(0.7rem);
}