

#info a {
    color: #4068a7;
    border-bottom: 1px dotted #4068a7;
    text-decoration: none;
}

#info a:hover {
    font-weight: 500;
}


/* ************************************************************************** *\
|* ******************************** #hero *********************************** *|
\* ************************************************************************** */

#a-hero {
    height: calc(60vh - 80px);
    border-bottom: 1px solid #eee;
    min-height: 525px;
}

#a-hero img,
#a-hero .inner {
    display: inline-block;
    width: 50%;
    height: 100%;
    margin: 0;
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
    float: left;
}

#a-hero img {
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center center;
       object-position: center center;
}

#a-hero .inner { position: relative; }

#a-hero .inner .title {
    width: 90%;
    color: #4068a7;
    font: 800 60px 'Montserrat', 'Helvetica';
    text-align: center;
    letter-spacing: 1px;
    text-transform: uppercase;

    /* Vertically & horizontally centers the object */
    position: absolute;
    top: 45%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
         -o-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
}

@-webkit-keyframes blinking {
  0% { opacity: 0; }
  50% { opacity: 1; }
  100% { opacity: 0; }
}

@-o-keyframes blinking {
  0% { opacity: 0; }
  50% { opacity: 1; }
  100% { opacity: 0; }
}

@keyframes blinking {
  0% { opacity: 0; }
  50% { opacity: 1; }
  100% { opacity: 0; }
}


#a-hero .inner .scroll {
    position: absolute;
    bottom: 5vh;
    left: 0;
    right: 0;

    text-align: center;
    -webkit-animation: blinking 2s infinite;
         -o-animation: blinking 2s infinite;
            animation: blinking 2s infinite;
}

#a-hero .inner .scroll p {
    text-transform: lowercase;
    font: 500 15px 'Montserrat', 'Helvetica';
    margin: 0 0 5px;
}



/* ************************************************************************** *\
|* ****************************** RESPONSIVE ******************************** *|
\* ************************************************************************** */

@media only screen and (max-width: 1024px) {
    #a-hero { position: relative; }

    #a-hero img,
    #a-hero .inner {
        display: inline-block;
        width: 100%;
        height: 100%;
        clear: both;
    }

    #a-hero .inner {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(85, 85, 85, 0.6);
    }

    #a-hero .inner .title {
        font-size: 55px;
        color: #fff;
    }

    #a-hero .inner .scroll,
    #a-hero .inner .scroll p { color: #fff; }




    #info .rise p { width: 45%; }
}

@media only screen and (max-width: 480px) {
    #a-hero .inner .title {
        font-size: 40px;
    }

    #info .rise {
        padding: 50px 30px 30px;
    }

    #info .rise p {
        width: 90%;
        font-size: 24px !important;
    }

    #info .rise p span { font-size: 55px !important; }

    #info .content {
        font-size: 13px !important;
        line-height: 22px !important;
    }

    #info .content > span.first-letter {
        font-size: 40px !important;
        line-height: 50px !important;
    }
}

