/*
 * HOME
*/
.billboard {
    position: relative;
}

.billboard h1 {
    position: absolute;
    z-index: 1;
    white-space: nowrap;
    bottom: -21px;
    width: 100%;
    text-align: center;
    font-size: 9.4vw;
    line-height: 1;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .25);
    font-weight: bold;
    margin-bottom: 0;
    pointer-events: none;
}

.billboard-slider {
    position: relative;
}

.billboard-slider .slick-track {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.billboard-slider .slick-slide {
    background: 50% 50% no-repeat;
    background-size: cover;
    padding: 25vh 7vw 0;
    min-height: 830px;
    height: auto;
    position: relative;
}
/*
.billboard-slider .slick-slide:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
}*/

.billboard-slider .slide-content {
    background: rgba(123, 82, 80, .60);
    max-width: 800px;
    padding: 80px;
    color: #fff;
    font-size: 24px;
    font-family: 'Open Sans', sans-serif;
    position: relative;
    z-index: 2;
}

.billboard-slider .caption {
    display: block;
    margin-bottom: 1em;
    color: #d6cda7;
}

.billboard-slider .slide-content p {
    margin-bottom: 1.5em;
}

.billboard-slider .caption strong {
    text-transform: uppercase;
}

.billboard-slider h2 {
    font-size: 60px;
    color: #fff;
    margin-bottom: .5em;
}

.billboard-slider .slick-dots {
    position: absolute;
    z-index: 1;
    top: 50%;
    right: 50px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    list-style: none;
    padding: 0;
    margin: 0;
}

.billboard-slider .slick-dots li {
    margin-bottom: 10px;
}

.billboard-slider .slick-dots button {
    font-size: 0;
    line-height: 0;
    width: 20px;
    height: 20px;
    border: 5px solid transparent;
    background: #fff;
    border-radius: 50%;
    padding: 0;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    background-clip: content-box;
}

.billboard-slider li:hover button,
.billboard-slider .slick-active button {
    background: #818060;
    border-color: #818060;
    border-radius: 6px;
}

.caption-area {
    position: relative;
    z-index: 1;
    background: #818060;
    font-size: 25px;
    color: #fff;
    text-align: center;
    padding: 15px 0;
}

.caption-area p {
    margin-bottom: 0;
}