@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,700,900|Anton');
/*
font-family: 'Roboto', sans-serif;
*/

html {
    font-size: 10px;
}

.wrapper {
    font-size: 1.6rem;
    line-height: 2.4rem;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
}

.lead {
    font-size: 125%;
    margin-bottom: 30px;
    margin-top: 10px
}

.btn-primary {
    background: #DAA229;
    border: none;
    color: #101010;
    font-size: 1.4rem;
    text-transform: uppercase;
    margin-top: 10px;
    padding: 10px 30px;
}

.btn-primary:hover {
    background: #efefef;
    color: #101010;
}

.text-light {
    color: #DAA229 !important;
}

.text-white {
    color: #efefef !important;
}

/*  Navbar  */

.navbar {
    background: #877348;
    font-family: 'Anton', sans-serif;
    color: #101010;
    text-transform: uppercase;
    font-size: 2.4rem;
    border-bottom: 5px solid #101010;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .8);
    padding: 20px 30px;
    position: relative;
    z-index: 999;
}

.navbar-toggler {
    font-size: 2.0rem;
}

.navbar-light .navbar-brand {
    color: #101010;
    font-size: 2.8rem;
}

.navbar-light .navbar-nav .nav-link {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    color: #101010;
    margin-right: 10px;
    text-transform: none;
    transition: color .5s;
    -webkit-transition: color .5s;
}

.navbar-light .navbar-nav .nav-link:hover {
    color: #FFAE00;
}


/* Hero */

.hero {
    background-size: cover;
    background: url(images/FamilyPic.jpg) no-repeat 70% -100px;
    border-bottom: 10px solid #DAA229;
    padding: 0 40px;
    max-width: 100%;
    min-height: 650px;
    margin-bottom: 0;
    position: relative;
}

.hero h1 {
    font-weight: 300;
    font-size: 4.0rem;
    color: #DAA229;
}
.hero .row {
    background: rgba(62, 59, 52, .75);
    padding: 30px;
    margin: 0 -40px;
    box-shadow: 0 -5px 10px rgba(0, 0, 0, .5);
    position: absolute;
    bottom: 0;
    width: 100%;
}
.hero .content {
    max-width: 1100px;
    color: #efefef;
}

@media screen and (min-width: 767px) {
    .hero {
        background: url(images/FamilyPic.jpg) no-repeat center -100px;
    }
}


/* Portfolio */

.portfolio {
    background: linear-gradient(to top, #101010 0%, #211E19 100%);
    background: -webkit-linear-gradient(to top, #101010 0%, #211E19 100%);
    background: -moz-linear-gradient(to top, #101010 0%, #211E19 100%);
    background: -o-linear-gradient(to top, #101010 0%, #211E19 100%);
    padding: 30px;
}
.portfolio h2 {
    font-size: 2.4rem;
    color: #DAA229;
    display: block;
    max-width: 300px;
    border-bottom: 1px solid #DAA229;
    text-align: center;
    margin: 0 auto 30px;
    padding-bottom: 10px;
}

.card {
    background: none;
    border: none;
    color: #efefef;
    max-width: 550px;
    margin: 0 auto 30px;
    padding: 0 10px;
}

.card-header {
    border-bottom: none;
    color: #DAA229;
    font-weight: 700;
    font-size: 2.0rem;
    margin-bottom: 0;
    padding: 15px 10px 0;
}

.card-title {
    color: #877348;
    border-bottom: 1px solid #DAA229;
    margin-bottom: 15px;
    padding-bottom: 10px;
}

.card-img-top {
    border-radius: 20px;
    margin-bottom: 10px;
}


/* Contact */

.contact {
    border-top: 10px solid #efefef;
    background: #333;
    padding: 30px 20px 60px;
    color: #efefef;
}

.contact h3 {
    font-size: 2.8rem;
}

.contact h4 {
    margin-bottom: 15px;
}

.contact a {
    color: #efefef;
    text-decoration: none;
    transition: color .5s;
    -webkit-transition: color .5s;
}

.contact a:hover {
    color: #DAA229;
}

.contact a.phone {
    color: #efefef;
    cursor: default;
}