



header {
    top: 200px;
}
header.scrolled, header.active {
    top: 0px;
}


#body #banner {
    height: 200px;
    background: rgba(231, 127, 88, 1);
    color: rgba(255, 255, 255, 1);
    text-align: center;
    display: flex;
    padding: 40px 12.5%;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    z-index: 1000;
}
#banner p, #banner a {
    text-align: center;
    color: rgba(255, 255, 255, 1);
}

#banner a {
    padding: 5px 10px;
    display: inline-block;
    background: rgba(0, 0, 0, 0);
    border-radius: 2px;

    -webkit-transition: all linear 200ms;
       -moz-transition: all linear 200ms;
            transition: all linear 200ms;
}
#banner a:after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 10px;
    margin: 0 0 0 7px;
    background: url(../img/arrow.svg) no-repeat;
    background-size: contain;
    opacity: 0;

    -webkit-transition: all linear 160ms;
       -moz-transition: all linear 160ms;
            transition: all linear 160ms;
}
#banner a:hover:after {
    transform: translateX(3px);
    opacity: 1;
}
#banner a:hover {
    background: rgba(0, 0, 0, .125);

    -webkit-transition: all linear 360ms;
       -moz-transition: all linear 360ms;
            transition: all linear 360ms;
}






























