.site-nav {
    font: 1em 'Lato', sans-serif;
    text-align: center;
    margin: 0px 0;
    padding: 0
}

.site-nav__item {
    display: inline-block;
    text-align: center;
    line-height: 1em;
    vertical-align: middle;
}

.site-nav__link {
    color: #E0E0E0;
    display: inline-block;
    font-size: 0.7em;
    font-weight: 700;
    letter-spacing: 0.1rem;
    line-height: 1em;
    padding: 0.75rem;
    text-decoration: none;
    text-transform: uppercase;
}

.site-nav__link:after {
    border-bottom: 3px solid #E0E0E0;
    content: "";
    display: block;
    margin: 0.25em auto 0;
    transition: width 250ms ease-in-out 0s;
    width: 0;
}

.site-nav__link:hover:after {
    transition: width 100ms ease-in-out 0s;
    width: 100%;
}

.title_animate h3 {
    z-index: 1000;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 40%);
    width: 100%;
    text-align: center;
    opacity: 1;
    font-family: 'Work Sans';
    font-family: 'Work Sans', sans-serif;
    font-size: 60px;
    padding: 0 30px;
    line-height: 60px;
    /* color: rgba(0, 0, 0, 0.7); */
    color: #ffffff;
    text-shadow: 4px 1px 4px rgba(0, 0, 0, 0.6);
}

@-webkit-keyframes titleAnimation {
    0% {
        opacity: 1;
    }
    3% {
        opacity: 0.9;
    }
    15% {
        opacity: 1.8;
    }
    19% {
        opacity: 0.5;
    }
    100% {
        opacity: 0
    }
}

@-moz-keyframes titleAnimation {
    0% {
        opacity: 1;
    }
    3% {
        opacity: 0.9;
    }
    15% {
        opacity: 1.8;
    }
    19% {
        opacity: 0.5;
    }
    100% {
        opacity: 0
    }
}

@-o-keyframes titleAnimation {
    0% {
        opacity: 1;
    }
    3% {
        opacity: 0.9;
    }
    15% {
        opacity: 1.8;
    }
    19% {
        opacity: 0.5;
    }
    100% {
        opacity: 0
    }
}

@-ms-keyframes titleAnimation {
    0% {
        opacity: 1;
    }
    3% {
        opacity: 0.9;
    }
    15% {
        opacity: 1.8;
    }
    19% {
        opacity: 0.5;
    }
    100% {
        opacity: 0
    }
}

@keyframes titleAnimation {
    0% {
        opacity: 1;
    }
    3% {
        opacity: 0.9;
    }
    15% {
        opacity: 1.8;
    }
    19% {
        opacity: 0.5;
    }
    100% {
        opacity: 0
    }
}

@media screen and (max-width: 1140px) {
    .title_animate {
        font-size: 100px
    }
}

@media screen and (max-width: 600px) {
    .title_animate {
        font-size: 50px
    }
}