.motto{
    /*background-color: rgba(0,0,0,0.7);*/
    background-image: url('/images/carbon-bg.png');
    background-size: contain;
    width: 100%;
    height: 250px;
    box-shadow: 0px 0px 7px red;
}
#navMotto {
    padding-top: 85px;
    text-align: center;
    color: white;
}

#navMotto img {
    transform: scale(3);
    opacity: 0;
    transition: all 1s;
}

#navMotto img.fade_in {
    transform: scale(1.5);
    opacity: 1;
}

#navMotto h1 {
    color: red;
    font-size: 3em;
    opacity: 0;
    transition: all 1s;
    transition-delay: 0.1s;
}

#navMotto h1.fade_in {
    color: red;
    opacity: 1;
    font-size: 2em;
}

.wrapper .content {
    z-index: 1;
    background-color: #f9f9f9;
    text-align: center;
    font-size: 3em;
    height: 250px;
    transform: translateY(75px);
    opacity: 0;
    transition: all 1s;
}

.wrapper .content.fade_in {
    transform: translateY(0px);
    opacity: 1;
}
