a {
    text-decoration: none;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

a:hover {
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.style-7 {
    border-bottom: 1px solid #081c74;
    border-width: 50%;
    color: #081c74;
    font: 12px Montserrat;
    text-transform: uppercase;
    padding: 10px;
    font-weight: 600;
    max-width: 250px;
    display: block;
    text-align: left;
    margin: 30px 10px;
    position: relative;
}

.style-7:hover {
    background: #000;
    border-color: #000;
    color: #fff;
    -webkit-box-shadow: -10px -10px 0 0 #446078, 10px 10px 0 0 #f6b319;
    box-shadow: 10px -10px 0 0 #446078, -10px 10px 0 0 #f6b319;
}

.style-8 {
    border-bottom: 1px solid #081c74;
    border-width: 50%;
    color: #081c74;
    font: 12px Montserrat;
    text-transform: uppercase;
    padding: 10px;
    font-weight: 600;
    max-width: 15px;
    display: block;
    text-align: left;
    margin: 30px 10px;
    position: relative;
}

.style-8 {
    background: #000;
    border-color: #000;
    color: #fff;
    -webkit-box-shadow: -10px -10px 0 0 #446078, 10px 10px 0 0 #f6b319;
    box-shadow: 10px -10px 0 0 #446078, -10px 10px 0 0 #f6b319;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.style-6 {
    max-width: 250px;
    padding: 10px;
    background: #000;
    border-color: #000;
    color: #fff;
    -webkit-box-shadow: -10px -10px 0 0 #446078, 10px 10px 0 0 #f6b319;
    box-shadow: 10px -10px 0 0 #446078, -10px 10px 0 0 #f6b319;
    font: 12px;
    text-transform: uppercase;
    padding: 10px;
    font-weight: 600;
    max-width: 250px;
    display: block;
    text-align: left;
    margin: 30px 10px;
    position: relative;
}

.fadeIn {
    opacity: 0;
    transform: translateY(-30px);
    transition: all 1s 1s ease-in-out;
}

.fadIn-animation {
    opacity: 1;
    transform: translate(0);
}

.fadeIn-right-up {
    opacity: 0;
    transform: translate(-30px, -50px);
    transition: all .7s .6s ease-out;
}

.fadeIn-right-up-animation {
    opacity: 1;
    transform: translate(0);
}

.fadeIn-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all .7s .3s ease-out;
}

.fadIn-up-animation {
    opacity: 1;
    transform: translateY(0);
}

.fadeIn-Down {
    opacity: 0;
    transform: translateY(-10px);
    transition: all .8s 1.2s ease-out;
}

.fadIn-Down-animation {
    opacity: 1;
    transform: translateY(0);
}

@keyframes move {
    25% {
        opacity: 1;
    }
    33% {
        opacity: 1;
        transform: translateY(30px);
    }
    67% {
        opacity: 1;
        transform: translateY(40px);
    }
    100% {
        opacity: 0;
        transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
    }
}