.footer-sdv {
    background-color: #EEEEEE;
    margin-top: 128px;
}

.copyright-fm {
    border-top: 1px solid #FFF;
}

.bodycopy-sdv {
    margin-top: 64px;
}

H1 {
    font-size: 2rem;
}

.navbar-sdv {
    text-transform: uppercase;
}

.head-visual-sdv {
    margin-top: 16px;
}

.active-sdv {
    background-color: #CCC;
}

.calltoaction-sdv {
    margin-top: 64px;
}

.prefooter-sdv {
    margin-top: 128px;
}

.btn {
    position: relative;
    animation-name: shake;
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in;
    cursor: pointer;
}

.btn:hover {
    animation-name: shakeAnim;
}

@keyframes shakeAnim {
    0% {
        left: 0
    }

    1% {
        left: -3px
    }

    2% {
        left: 5px
    }

    3% {
        left: -8px
    }

    4% {
        left: 8px
    }

    5% {
        left: -5px
    }

    6% {
        left: 3px
    }

    7% {
        left: 0
    }
}

@keyframes shake {
    0% {
        left: 0
    }

    1% {
        left: -3px
    }

    2% {
        left: 5px
    }

    3% {
        left: -8px
    }

    4% {
        left: 8px
    }

    5% {
        left: -5px
    }

    6% {
        left: 3px
    }

    7% {
        left: 0
    }
}