@import url(https://fonts.googleapis.com/css?family=Montserrat:400,700);
.outerbank {
    display: block;
    width: 100%;
    overflow: hidden;
}

.outerbank a {
    text-decoration: none;
    font-family: 'Montserrat';	
    color: #00CC00;
    display: block;
    background: rgba(2, 1, 103, 1);
}

.outerbank-front {
    padding: .25em;
    display: block;
    position: relative;
    will-change: transform;
    transition:
        transform
        600ms
        cubic-bezier(.3, .7, .4, 1);
}

.outerbank-front::before {
    content:"";
    height: 1520%;
    width: 100px;
    background: rgba(255, 255, 255, 0.5);
    position: absolute;
    top: -400px;
    right: 45%;
    transform: translateY(-400px) rotate(80deg); 
    transition: all .5s;

}

.outerbank-front:hover::before {
    transform: translateY(120px) rotate(80deg);
    filter: brightness(110%); 
}
