@font-face {
    font-family: 'Electroharmonix';
    src: url('../fonts/electroharmonix.ttf')
}
@font-face {
    font-family: 'Titilium-Regular';
    src: url('../fonts/TitilliumWeb-Regular.ttf')
}
@font-face {
    font-family: 'Merriweather';
    src: url('../fonts/Merriweather-Regular.ttf')
}

.navbar {
    height: 120px;  

    background-color: transparent;
}

.navbar .navbar-brand {
    font-family: 'Electroharmonix';
    font-size: 2rem;
}

.navbar-expand-lg .navbar-nav .nav-link {
    padding: .7rem 1rem;
    position: relative
}
.navbar-expand-lg .navbar-nav .nav-link:hover:after {
    width: 100%;
}
.navbar-expand-lg .navbar-nav .nav-link:after {
    content: '';
    width: 0;
    position: absolute;
    bottom: 0;
    transition: width .3s ease-out;
    left: 0;
    background-color: #fff;
    height: 2px;
}

section#hero {
    background-image: linear-gradient(to bottom, rgba(0,0,0,0),rgba(0,0,0,0),rgba(0,0,0,1)), url('../images/hero.jpg');
    width: 100%;
    min-height: 100vh;
    background-size: cover;
    margin-top: -120px;
    z-index: -2;
}

section#hero h1 {
    font-size: 4rem;
    font-family: 'Merriweather' !important;
    color: #fff;
}

section#hero p {
    color: rgba(255,255,255,.7);
}

section#hero h3 {
    color: rgba(255,255,255,1)
}

section#hero h6 {
    color: rgba(255,255,255,.5)
}

.stats {
    bottom: 0;
}

section#pick {
    min-height: 400px;
    background: linear-gradient(rgba(0,0,0,1), rgba(0,0,0,.9),rgba(0,0,0,.9)), url(../images/temple.jpg);
    background-size: cover;
    background-position: center;
    padding-top: 6rem;
}
section {
    padding: 3rem;
}
section .section-header h1 {
    color: #fff
}
section .section-header p {
    color: rgba(255,255,255,.5)
}

section#pick .card {
    border-radius: .3rem;
}
section#pick .card-body {
    padding: 0;
}
section#pick .card-body:before {
    content : '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-image: linear-gradient(rgba(0,0,0,.2), rgba(0,0,0,.2), rgba(0,0,0,.7));
}

section#pick .card-body img{
    width: 100%;
    object-fit: cover;
    height: 400px;
    border-radius: .3rem;
}

section#pick .card-text  {
    bottom: 0;
    z-index: 2;
    width: 100%;
}
section#pick .card-text h3 {
    color: #fff;
    text-align: center;
}
section#pick .card-text p {
    color: rgba(255,255,255,.8);
    text-align: center;
    font-size: .7rem;
}

@media screen and (max-width: 1200px) {
    
    section#hero {
        background-image: linear-gradient(to bottom, rgba(0,0,0,.1),rgba(0,0,0,.5),rgba(0,0,0,1)), url('../images/hero.jpg');
    }
}