/*
// Table of content
// -----------------------------------------------------------------------------
// - 1. Header
// - 2. Footer
// - 3. Hero Title
*/


/* -----------------------------------------------------------------------------
// 1. Header 
// ----------------------------------------------------------------------------- */

header {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    margin: 0 auto;
    z-index: 1;
}

header:after {
    content: ' ';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../img/shadow.png) center center;
    background-size: contain;
    opacity: .7;
    z-index: -1;
}

@media (max-width: 768px) {
    header:after {
        background-repeat: no-repeat;
        background-position: top center;
    }
}


/* -----------------------------------------------------------------------------
// 2. Footer 
// ----------------------------------------------------------------------------- */

footer {
    background-color: #1e1d1c;
    border-top: 5px solid #dcceaa;
}

footer .footer-main {
    padding: 100px 0;
    text-align: center;
}

footer .footer-main h3 {
    margin-bottom: 30px;
    font-size: 30px;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
}

footer .footer-main h3+p {
    margin-bottom: 30px;
    color: #ffffff;
}

footer .footer-main .btn {
    padding: 13px 25px;
    font-size: 12px;
    margin-left: 10px;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

footer .footer-main .btn:first-child {
    margin-left: 0;
}

footer .footer-main .btn:hover {
    background-color: #dcceaa;
    border-color: #dcceaa;
    color: #ffffff;
}

footer .footer-copyright {
    padding: 15px 0;
    background-color: #dcceaa;
    color: #3f2d1d;
    font-family: "Montserrat", Helvetica, Arial, sans-serif;
    text-align: center;
    text-transform: uppercase;
}

footer .footer-copyright p {
    opacity: .5;
    margin: 0;
    font-size: 12px;
    -webkit-transition: opacity 0.5s;
    -moz-transition: opacity 0.5s;
    -ms-transition: opacity 0.5s;
    -o-transition: opacity 0.5s;
    transition: opacity 0.5s;
}

footer .footer-copyright em {
    margin: 0 10px;
}

footer .footer-copyright:hover p {
    opacity: 1;
}


/* -----------------------------------------------------------------------------
// 3. Hero Title 
// ----------------------------------------------------------------------------- */

.hero-title {
    padding: 250px 0 100px 0;
    background-color: #aeaeae;
    text-align: center;
    background-position: top center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -ms-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.hero-title h2 {
    font-size: 40px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    padding-top: 40px;
    background: url(../img/vector3.png) no-repeat center center;
    background-position-y: 0;
}


/*# sourceMappingURL=layout.css.map */