﻿
/* Navbars */

.navbar-default {
    min-height: 25px;
    background-image: none;
    background-color: #eee;
    border-radius: 0px;
    margin-bottom: 0px;
}

.navbar-nav > li > a {
    padding-top: 10px;
    padding-bottom: 10px;
}

.navbar-title {
    color: rgb(48, 100, 203);
    font-family: "Helvetica Neue Condensed Bold";
    font-weight: 500;
}

@media (max-width:768px) and (orientation: portrait) {
    .navbar-title {
        font-size: 16px;
        transform: translateY(15%);
    }
}

@media (max-width:768px) and (orientation: landscape) {
    .navbar-title {
        font-size: 22px;
        transform: translateY(35%);
    }
}

@media (min-width:768px) {
    .navbar-title {
        font-size: 36px;
        transform: translateY(0%);
    }
}

@media (min-width:992px) {
    .navbar-title {
        font-size: 36px;
        transform: translateY(50%);
    }
}

/* Heros */

.hero {
    position: relative;
    margin-bottom: 10px;
}

.hero-home {
    position: relative;
    margin-bottom: 0px;
}

.hero-image {
    display: block;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    z-index: -1;
}

.hero-overlay,
.hero-overlay-home {
    position: absolute;
    color: #ffffff;
    font-size: 2vw;
    font-weight: 700;
    letter-spacing: 0.45rem;
    text-align: left;
    text-transform: uppercase;
    padding-top: 2em;
    padding-left: 2em;
    z-index: 0;
}

.hero-overlay {
    width: 40%;
}

@media (max-width:768px) {
    .hero-overlay {
        width: 50%;
    }
}

.hero-overlay-home {
    width: 100%
}

.hero-overlay-home span {
    text-decoration: underline;
    cursor: pointer;
}