/**
 * ----------------------------------------------------------------------------
 * Banner
 * ----------------------------------------------------------------------------
 * Demo notification banner at the top of the site.
 */

.banner {
    position: relative;
    background-color: goldenrod;
    padding: 20px 50px;
    color: #fff;
    text-align: center;
}

    .banner p {
        margin-bottom: 0;
    }

    .btn-close {
        position: absolute;
        top: 20px;
        right: 20px;
        background-color: rgba(0, 0, 0, 0.2);
        border: none;
        padding: 4px 10px 6px;
        color: #fff;
    }

        @media screen and (min-width: 1400px) { 
            .btn-close {
                top: 0;
                right: 20px;
                top: 50%;
                transform: translateY(-50%);
            }
        }

        .btn-close:hover {
            background-color: rgba(0, 0, 0, 0.3);            
        }


/**
 * ----------------------------------------------------------------------------
 * Intro-area 
 * ----------------------------------------------------------------------------
 */

.intro-area {
    background-size: cover;
    background-color: #f7f7f7;
}

.intro-wrapper {}

.intro-content {}

.intro-content a {
    background: #ffa64d none repeat scroll 0 0;
    border-radius: 4px;
    color: #ffffff;
    display: inline-block;
    font-family: montserrat;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    padding: 18px 50px;
    text-transform: uppercase;
    transition: all 0.3s ease 0s;
}


/* .intro-content > a:hover {
    background: #000;
  } */


.about-text {
    padding: 90px 74px 0 0;
}


/**
 * ----------------------------------------------------------------------------
 * Main Menu
 * ----------------------------------------------------------------------------
 * Site navigation
 */

.main-menu-item a {
    text-transform: uppercase;
}


/* Active states */

body.home .nav-home a,
body.about .nav-about a,
body.services .nav-services a,
body.blog .nav-blog a,
body.contact .nav-contact a {
    color: #ffa64d;
}


/**
 * ----------------------------------------------------------------------------
 * Main Content
 * ----------------------------------------------------------------------------
 * 
 */

.body-area {}

    .body-content h2 {
        color: #5f5f5f;
        font-size: 30px;
        font-weight: 700;
        margin-bottom: 22px;
    }

    .body-content p {
        color: #7a7a7a;
        font-size: 16px;
        line-height: 28px;
        margin-bottom: 35px;
    }


/**
 * ----------------------------------------------------------------------------
 * Blog
 * ----------------------------------------------------------------------------
 */

.blog-content ul {
    margin-left: 40px;
    padding-top: 1em;
}

    .blog-content ul li {
        list-style-type: disc;
        padding-bottom: 0.5em;
    }

/**
 * ----------------------------------------------------------------------------
 * Utilities
 * ----------------------------------------------------------------------------
 * General helper classes
 */

.clear {
    overflow: auto;
}

.clearfix:after {
    content: "";
    display: block;
    clear: both;
}