html, body{
    font-family: 'Open Sans', sans-serif;
    background-color: #212121;
    height: 100%;
}

.icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    fill: currentColor;
}

:focus{
    outline: none !important;
}

a:hover{
    opacity: 0.7;
    text-decoration: none;
    transition: opacity 300ms;
    -moz-transition: opacity 300ms;
    -o-transition: opacity 300ms;
    -webkit-transition: opacity 300ms;
}

hr{
    border-color: #292929;
}

p{
    color: #c5c5c5;
    line-height: 25px;
    font-size: 14px;
}

.text-muted{
    color: #999;
}

.btn-default {
    background-color: #2e2e2e;
}

input[type="text"],
input[type="email"],
input[type="password"],
textarea,
.form-control{
    background-color: #3d3d3d;
    color: #ccc;
}

label{
    color: #c5c5c5;
}

.pagination>li>a, 
.pagination>li>span{
    color: #c5c5c5;
    background-color: transparent
}

.pagination>li:hover>a, 
.pagination>li:hover>span{
    background-color: #2f2f2f;
}

.pagination>.disabled>span, 
.pagination>.disabled>span:hover, 
.pagination>.disabled>span:focus, 
.pagination>.disabled>a, 
.pagination>.disabled>a:hover, 
.pagination>.disabled>a:focus{
    color: #212121;
    cursor: default;
    background: #212121;
}

/**
 * HEADER
 */
header .navbar{
    background-color: rgba(17,17,17, 0.7);
    border-bottom: 2px solid #191919;
    font-size: 14px;
    text-transform: uppercase;
    z-index: 100;
}

header .navbar .navbar-brand{
    margin-top: 20px;
    margin-bottom: 19px;
    padding:5px!important;
}

header .navbar .navbar-brand > img{
    height: 40px;
}

header .navbar .navbar-right{
    margin-top: 20px;
    margin-bottom: 19px;
}

.navbar-default .navbar-nav>li>a:hover,
.navbar-default .navbar-nav>li>a:focus {
    color: #A97C59;
    background: none;
    transition: color 300ms;
    -moz-transition: color 300ms;
    -o-transition: color 300ms;
    -webkit-transition: color 300ms;
}

header li.language > a{
    color: #999 !important;
    padding-left: 10px;
    padding: 0 0 0 10px;
    padding-right: 0;
    border-left: 1px solid #555;
    margin-top: 9px;
}

header li.language .dropdown-menu>li>a{
    padding: 8px 20px;
}

.navbar-default .navbar-nav>.active>a, 
.navbar-default .navbar-nav>.active>a:hover, 
.navbar-default .navbar-nav>.active>a:focus {
    color: #a97c59;
    background-color: transparent;
}

@media(min-width: 992px) and (max-width: 1200px){
.nav>li>a{
    padding: 10px;
}
}

@media(min-width: 768px) and (max-width: 992px){
    header .navbar{
        font-size: 12px;
    }

    header .navbar .navbar-brand > img{
        height: 15px;
    }
    
    .nav>li>a{
        padding: 10px 8px;
    }

    header .navbar .navbar-brand {
        margin-top: 19px;
        margin-bottom: 12px;
    }

    header .navbar .navbar-right {
        margin-top: 16px;
        margin-bottom: 16px;
    }
}


@media (max-width: 768px){
    header .navbar .navbar-brand{
        margin-top: 10px;
        margin-bottom: 9px;
    }

    header .navbar .navbar-brand > img{
        height: 16px;
    }

    header .navbar{
        height: auto;
    }

    .navbar-toggle{
        margin-top: 12px;
    }
}


/**
 * HOME SLIDER
 */
.home-slider{
    overflow: hidden;
}

.home-slider .carousel-control{
    width: 10%;
}

.home-slider .carousel-caption{
    top: 36%;
    right: 0;
    width: 35%;
    left: 57%;
    bottom: initial;
    padding-bottom: 0;
}

.home-slider .carousel-caption h1{
    text-align: left;
    font-weight: 400;
    margin: 0;
    font-size: 60px;
    opacity: 0.9;
}

.home-slider .carousel-caption h3{
    text-align: left;
    font-size: 28px;
    margin-top: 5px;
    opacity: 0.6;
    color: #fff;
}

.home-slider .carousel-caption h3 a{
    color: #fff;
}

.home-slider .carousel-caption h3 a:hover{
    color: #A97C50;
}


@media (min-width: 758px) and (max-width: 992px){

}

@media (max-width: 758px){
    .home-slider {
        margin-top: 60px;
    }
}

.section-divider{
    padding: 60px 0;
    background-image: url(/assets/img/section_divider.jpg);
    background-position: center;
    background-size: cover;
    margin-bottom: 30px;
}

.top-page-section{
    padding: 140px 0 80px 0;
    background-position: center;
    background-size: cover;
    margin-bottom: 60px;
}

.top-page-section h2{ font-weight: 400 }
.top-page-section.no-bottom{ margin-bottom: 0 !important; }

.top-page-section.top-page-section-1{ background-image: url(/assets/img/section_divider.jpg); }
.top-page-section.top-page-section-2{ background-image: url(/assets/img/section_divider2.jpg); }
.top-page-section.top-page-section-3{ background-image: url(/assets/img/section_divider3.jpg); }
.top-page-section.top-page-section-4{ background-image: url(/assets/img/section_divider4.jpg); }
.top-page-section.top-page-section-5{ background-image: url(/assets/img/section_divider5.jpg); }


@media (max-width: 768px){
    .top-page-section{
        padding: 80px 0 40px 0;
    }
    .top-page-section h2{
        font-size: 22px;
    }
}

/**
 * ALBUNS
 */
.album{
    margin-bottom: 30px;
}

.album .album-content{
    padding: 14px 24px;
    background-color: #2f2f2f;
}
.album img:hover {
    transition: opacity 300ms;
    -moz-transition: opacity 300ms;
    -o-transition: opacity 300ms;
    -webkit-transition: opacity 300ms;
    opacity: 0.7;
}
.album .album-content:hover {
    transition: background-color 300ms;
    -moz-transition: background-color 300ms;
    -o-transition: background-color 300ms;
    -webkit-transition: background-color 300ms;
    background-color: #996E47
}

.album .album-content a{
    color: #fff;
    text-decoration: none;
}

.album-info h4{
    line-height: 27px;
}

.album-info p{
    color: #c5c5c5;
}

.list-group.list-tracks > li{
    margin-bottom: 1px;
    background-color: #090909;
    padding: 15px;
    color: #c5c5c5;
    font-size: 13px;
}

.list-group.list-tracks .fa-play,
.list-group.list-tracks .fa-pause{
    margin-right: 10px;
}

.list-group.list-tracks a{
    text-decoration: none;
    color: #c5c5c5;
}

.list-group.list-tracks a:hover{
    color: #A97C50;
    transition: color 300ms;
    -moz-transition: color 300ms;
    -o-transition: color 300ms;
    -webkit-transition: color 300ms;
}

.list-group.list-tracks small{
    color: #777;
}

.list-group.list-tracks .progress{
    height: 2px;
    margin-left: -15px;
    margin-right: -15px;
    margin-top: 15px;
    margin-bottom: -15px
}

/**
 * EVENTS
 */

.event-highlight{
    background: rgba(169,124,80,0.5);
    padding: 30px 0;
}
.event-highlight h1{font-size: 40px; font-weight: bold;}
.event-highlight h3{font-size: 25px;}

.events-bg{
    background-image: url(/assets/img/events_bg.jpg);
    background-position: center bottom;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
}


/**
 * NEWS
 */

.news-date-wrapper{
    text-align: center;
    float: left;
    margin-right: 20px;
    width: 65px;
    margin-top: -5px;
    padding-bottom: 15px;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: #A97C54;
}

.news-date-wrapper .news-date-day {
    display: block;
    font-size: 50px;
    line-height: 1;
    margin-bottom: 10px;
}

.news-date-wrapper .news-date-month {
    display: block;
    font-size: 14px;
    line-height: 1;
    margin-bottom: 10px;
}

.news-date-wrapper .news-date-year {
    display: block;
    font-size: 17px;
    line-height: 1;
}

.news-title {
    font-size: 20px;
    margin-bottom: 10px;
    margin-top: 0;

}

.news-content{
    font-size: 13px;
    color: #c5c5c5;
}

.news-content-inner {
    overflow: hidden;
}

.related-news img:hover{
    opacity: 0.6;
}

.modal-lyrics .modal-header{
    background-color: #333;
    color: #fff;
}

.modal-lyrics .modal-content{
    background-color: #494949;
}

.modal-lyrics .modal-footer{
    background-color: #333;
    padding: 10px 20px;
}

/**
 * Gallery tabs
 */
.gallery-info{
    margin-top: -15px;
}

.tab-buttons{
    margin-top: -30px;
    margin-bottom: 15px;
}

.video-list-thumbs{}
.video-list-thumbs > li{
    margin-bottom:12px
}

.video-list-thumbs > li:last-child{}
.video-list-thumbs > li > a{
    display:block;
    position:relative;
    background-color: #292929;
    color: #fff;
    padding: 0;
}

.video-list-thumbs > li > a:hover{
    background-color: #A97C50;
    transition:all 500ms ease;
    text-decoration:none
}

.video-list-thumbs h2{
    bottom: 0;
    font-size: 14px;
    padding: 15px 10px;
    margin: 0;
    height: 60px;
}

.video-list-thumbs .fa-play-circle-o,
.video-list-thumbs .fa-play-circle,
.video-list-thumbs .fa-play{
    font-size: 60px;
    opacity: 0.6;
    position: absolute;
    right: 39%;
    top: 31%;
    text-shadow: 0 1px 3px rgba(0,0,0,.5);
}

.video-list-thumbs > li > a:hover .fa-play-circle-o,
.video-list-thumbs > li > a:hover .fa-play-circle,
.video-list-thumbs > li > a:hover .fa-play{
    color:#fff;
    opacity:1;
    text-shadow:0 1px 3px rgba(0,0,0,.8);
    transition:all 500ms ease;
}

.video-list-thumbs .duration{
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 2px;
    color: #fff;
    font-size: 11px;
    font-weight: bold;
    left: 12px;
    line-height: 13px;
    padding: 2px 3px 1px;
    position: absolute;
    top: 12px;
}

.video-list-thumbs > li > a:hover .duration{
    background-color:#000;
    transition:all 500ms ease;
}

.video-list-thumbs .video-thumbnail{
    max-height: 195px;
}

.inline-video {
    display: block;
    margin-bottom: 15px;
}

.inline-video .video-img {
    position: relative;
}

.inline-video .video-img .fa {
    font-size: 40px;
    position: absolute;
    padding: 6% 11%;
    color: #fff;
    opacity: 0.5;
}

.inline-video .video-img img {
    width: 28%;
    float: left;
}

.inline-video .video-title {
    float: left;
    width: 62%;
}

.inline-video .video-title h2 {
    font-size: 16px;
    margin: 8px 0 0 15px;
}

.inline-video .video-title span {
    color: #777;
    margin: 5px 0 0 15px;
    font-size: 12px;
    display: block;
}



@media (min-width:768px) and (max-width: 992px) { 
    .video-list-thumbs .video-thumbnail{
        max-height: 155px;
    }
}

@media (min-width:320px) and (max-width: 480px) { 
    .video-list-thumbs .fa-play-circle-o,
    .video-list-thumbs .fa-play-circle,
    .video-list-thumbs .fa-play{
        font-size: 35px;
        right: 36%;
        top: 27%;
    }
    .video-list-thumbs h2{
        bottom: 0;
        font-size: 12px;
        height: auto;
        margin: 8px 0 0;
    }
}

.modal-video .modal-body{
    padding: 0;
}

.social-icons a{
    color: #fff;
}

.social-icons a.facebook:hover{color: #3B5998;}
.social-icons a.google:hover{color: #dd4b39;}
.social-icons a.twitter:hover{color: #00B0ED;}
.social-icons a.youtube:hover{color: #B31217;}
.social-icons a.eter9:hover{color: #13A89E;}
.social-icons a.spotify:hover{color: #84bd00;}
.social-icons a.instagram:hover{color: #a97c59;}

/**
 * Footer
 */
footer{
    background-color: #111;
    border-top: 1px solid #444;
}

footer .credits{
    padding: 20px 0;
    font-size: 12px;
}

.wrapper {
    min-height: 100%;
    height: auto !important;
    height: 100%;
    margin: 0 auto -140px;
}

footer, .push {
    height: 140px;
    padding-top: 30px;
}

@media (min-width: 993px) and (max-width: 1200px){
    footer, .push {height: 190px;}
    .wrapper {margin: 0 auto -190px;}
}

@media (max-width: 992px){
    footer, .push {height: 230px;}
    .wrapper {margin: 0 auto -230px;}
}