body {
    font-family: "Oswald";
    font-weight: 400;
    font-size: 16px;
    line-height: 1.7;
    color: #000;
    background-color: #fff;
    letter-spacing: 0px;
    overflow-x: hidden;
}

.transition {
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out
}

.transition-5 {
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out
}

a {
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out
}

a:hover {
    color: inherit
}

.btn {
    margin: 0 auto 10px;
    padding: 16px 30px 15px; 
    background: #fff;
    color: #000;
    font-size: 16px;
    border: none;
    border-radius: 0;
    -webkit-transition: all .15s ease-in-out;
    -o-transition: all .15s ease-in-out;
    transition: all .15s ease-in-out
}

.btn:hover{
    transform: translateY(-3px);
    color: #000;
}

.btn-no-styles{
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    font-weight: inherit;
}

.btn-black{
    background: #000;
    color: #fff;
}

    .btn-black:hover{
        color: #fff;
    }

.btn-transparent{
    padding: 13px 27px;
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

    .btn-transparent:hover{
        color: #fff;
    }

section{
    padding: 85px 0;
}

    .section-title{
        font-family: "Open Sans";
        font-size: 800;
        font-size: 60px;
        text-transform: uppercase;
        margin-bottom: 50px;
        text-align: center;
        display: inline-block;
        position: relative;
        letter-spacing: 4px;
        padding-top: 100px;
    }

        .section-title:before{
            content: "";
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 1px;
            background-color: #000;
            height: 80px;
        }

    .section-title.no-line{
        padding-top: 0;
    }

        .section-title.no-line:before{
            display: none;
        }

    
#cookie-bar{
    background:rgba(255,255,255,.9);
    height:auto;
    text-align:center;
    position:fixed;
    width:auto;
    left: 50%;
    transform: translateX(-50%);
    bottom:0px;
    z-index:1500;
    padding: 25px;
}
#cookie-bar.fixed{top:0px;bottom:auto;}
#cookie-bar p{margin:0;padding:0;display:block;}
#cookie-bar a{  
    background: #000;
    padding: 14px 35px;
    border-radius: 0;
    text-transform: uppercase;
    color: #fff;
    font-size: 13px;
    margin-top: 15px; 
    letter-spacing: 0.5px;
    display: inline-block;
}
#cookie-bar a:hover{  
    transform: translateY(-3px);    
    color: #fff;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
}
        

#menu-fixed{
    position: absolute;
    top: 30px;
    right: 30px;
    height: 45px;
    z-index: 550;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

  #menu-button {
    display: inline-block;
    float: left;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    height: 45px;
    padding: 0px 13px;
    border: none;
    border-radius: 0;
    background-color: transparent;
  }

  #menu-button.show-button{
    display: flex;
    -webkit-animation: fadeInTop .5s ease forwards;
    animation: fadeInTop .5s ease forwards;
  }

    #menu-button.active{
        background-color: #1d1c1c;
    }

        #menu-button.active .top {
            -webkit-transform: translateY(9px) translateX(0) rotate(45deg);
            -ms-transform: translateY(9px) translateX(0) rotate(45deg);
                transform: translateY(9px) translateX(0) rotate(45deg);
        }

        #menu-button.active .middle {
            opacity: 0;
        }

        #menu-button.active .bottom {
            -webkit-transform: translateY(-9px) translateX(0) rotate(-45deg);
            -ms-transform: translateY(-9px) translateX(0) rotate(-45deg);
                transform: translateY(-9px) translateX(0) rotate(-45deg);
        }

        #menu-button span {
            background: #fff;
            border: none;
            height: 4px;
            width: 28px;
            -webkit-transition: all .35s ease;
            -o-transition: all .35s ease;
            transition: all .35s ease;
            cursor: pointer;
            display: block;
            font-family: "Open Sans";
            font-size: 800;
        }

        #menu-button span:not(:first-child) {
            margin-top: 3px;
        }


body.opened-menu{
    overflow-x: hidden; 
}

    #wrapper{
        transition: all 0.3s;
        -moz-transition: all 0.3s;
        -webkit-transition: all 0.3s;
        -o-transition: all 0.3s;
    }

    body.opened-menu #wrapper{
        -webkit-transform: translateX(300px);
            -ms-transform: translateX(300px);
                transform: translateX(300px);
                cursor: pointer;
    }
         
    #menu{
        height: 100vh;
        display: block;
        width: 300px;
        top: 0;
        left: -300px;
        font-size: 18px;
        position: fixed;
        padding: 0 50px; 
        border-right: 1px solid #000;
        z-index: 500;
        transition: all 0.3s;
        -moz-transition: all 0.3s;
        -webkit-transition: all 0.3s;
        -o-transition: all 0.3s;
    }

    body.opened-menu #menu{
        left: 0;
    }

        #menu ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: inline-block;
            position: relative;
        }

            #menu ul li {
                display: block;
                position: relative;
            }

                #menu ul li a{
                    display: inline-block;
                    position: relative;
                    color: #000;
                    text-decoration: none;
                    line-height: normal;
                    padding: 5px 0px;
                    font-size: 24px;
                    font-weight: 600;
                }

                #menu ul li a:hover, .nav ul li a:focus {
                    text-decoration: underline;
                }

#home{
    position: relative;
    height: 100vh;
    background: #fff;
    background-image: url('../img/home.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

    #home:before{
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        background: rgba(0,0,0,.2);
    }

    #home h1{
        color: #fff;
        font-family: "Open Sans";
        font-size: 800;
        text-transform: uppercase;
    }

    @keyframes shine{from{background-position:center 0}to{background-position:center 200%}}

    #home a{
        margin-top: 10px;
    }

        #home a > img{
            display: inline-block;
            height: 20px;
            margin-top: -5px;
            margin-right: 3px;
        }

/* biografia */
#sobre{
    background: #000;
    color: #fff;
}

    .about-text{
        position: relative;
    }

        .about-text .section-title{
            padding-top: 0;
            margin-bottom: 25px;
        }

        .sobre-slider .slick-list{
            overflow: hidden;
        }

            .sobre-slider .slick-track{
                -ms-flex-align: center !important;
                align-items: center !important;
                display: -ms-flexbox !important;
                display: flex !important;
            }

                .sobre-slider p{
                    text-align: justify;
                }

        .sobre-slider-nav{
            margin-top: 10px;
        }

            .sobre-slider-nav > div{
                display: inline-block;
                font-size: 24px;
                cursor: pointer;
            }

            .sobre-slider-nav > div:first-child{
                margin-right: 5px;
            }

    .about-image{
        background-image: url('../img/about.jpg');
        background-position: top center;
        background-size: cover;
    }

/* events */
.event-item{
    font-weight: 600;
}

.event-item:not(:last-child){
    margin-bottom: 10px;
}

    .event-day{
        font-size: 3.2rem;
    }

    .event-month, .event-year, .event-location, .event-city{
        display: block;
    }

    .event-month{
        text-transform: capitalize;
    }

    .event-location{
        font-size: 24px;
    }

    .event-city i{
        font-size: 13px;
        margin-right: 3px;
    }

    .event-tickets img{
        height: 16px;
        margin-right: 5px;
        margin-top: -3px;
    }

#newsletter{
    position: relative;
    background-image: url('../img/newsletter.jpg');
    background-size: cover;
    color: #fff;
}

    #newsletter:before{
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(200,0,0,.9);
    }

    #newsletter .section-title:before{
        background: #fff;
    }

    .newsletter-wrapper{
        border: 4px solid #fff;
    }

        .newsletter-wrapper .newsletter-title{
            display: block;
            font-size: 24px;
            margin-bottom: 15px;
        }

        .newsletter-form-inputs input[type='text'], .newsletter-form-inputs input[type='email']{
            display: block;
            background: transparent;
            border: 3px solid #fff;
            width: 100%;
            padding: 18px 18px;
            color: #fff;
            font-weight: 600;
        }

        .newsletter-form-inputs input:not(:last-child){
            margin-bottom: 17px;
        }

        .newsletter-form-inputs input::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
            color: #fff;
            font-weight: 600;
        }
        
        .newsletter-form-inputs input:-ms-input-placeholder { /* Internet Explorer 10-11 */
            color: #fff;
            font-weight: 600;
        }
        
        .newsletter-form-inputs input::-ms-input-placeholder { /* Microsoft Edge */
            color: #fff;
            font-weight: 600;
        }

        #newsletter-form .newsletter-policy{
            font-size: 14px;
        }        
        
            #newsletter-form .newsletter-policy a{
                text-decoration: underline;
                color: #fff;
            }

        #newsletter-form .newsletter-submit{
            margin-bottom: 0;
            cursor: pointer;
        }

/* album */
.album-cover{
    position: relative;
}

    .album-cover:before{
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        -webkit-box-shadow: 0px 0px 25px 2px rgba(0,0,0,0.05);
        -moz-box-shadow: 0px 0px 25px 2px rgba(0,0,0,0.05);
        box-shadow: 0px 0px 25px 2px rgba(0,0,0,0.05);
    }

    .album-cover-bg{
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        background-image: url('../albuns/as-blue-as-red-2018/cover.jpg');
        background-size: cover;
        background-position: center;
        -webkit-filter: blur(8px);
        -moz-filter: blur(8px);
        -o-filter: blur(8px);
        -ms-filter: blur(8px);
        filter: blur(8px);
        z-index: -1;
    }

    .album-cover-image{
        position: relative;
        text-align: center;
        padding-top: 125px;
    }

        .album-cover-image img{
            display: block;
            position: relative;
            margin: 0 auto;
            width: 180px;
            box-shadow: 0 5px 10px rgba(0,0,0,.2),0 40px 35px -20px rgba(0,0,0,.3);
        }

    .album-cover-name-title{
        margin-top: 20px;
        font-weight: 600;
        font-size: 24px;
    }

    .album-cover-player{
        padding: 60px;
    }

        .album-cover-player-controls{
            position: relative;
            height: 100px;
        }

            .album-cover-player-control-prev, .album-cover-player-control-play, .album-cover-player-control-next{
                position: absolute;
                top: 0;
            }

            .album-cover-player-control-prev{
                left: 0;
                opacity: .4;
            }
            .album-cover-player-control-play{
                left: 50%;
                transform: translateX(-50%);
                cursor: pointer;
            }
                .audioplayer.audioplayer-playing .album-cover-player-control-play > i:before{
                    content: "\f04c";
                }
            .album-cover-player-control-next{
                right: 0;
                opacity: .4;
            }
            .album-cover-player-control-prev.active, .album-cover-player-control-next.active{
                opacity: 1;
                cursor: pointer;
            }

                .album-cover-player-controls i{
                    font-size: 26px;
                }

            .album-cover-player-bar{
                position: absolute;
                bottom: 34px;
                left: 0;
                width: 100%;
                height: 15px;
                cursor: pointer;
            }

                .album-cover-player-bar:before{
                    position: absolute;
                    content: "";
                    top: 50%;
                    transform: translateY(-50%);
                    left: 0;
                    height: 2px;
                    width: 100%;
                    background: #000;
                }

                .album-cover-player-bar-played{
                    position: absolute;
                    left: 0;
                    top: 0;
                    height: 15px;
                    min-width: 15px;
                }

                    .album-cover-player-bar-played:before{
                        content: "";
                        position: absolute;
                        right: 0;
                        top: 0;
                        height: 15px;
                        width: 15px;
                        background: #000;
                        border-radius: 50%;
                        cursor: pointer;
                    }

            .album-cover-player-played, .album-cover-player-duration{
                position: absolute;
                bottom: 0;
                font-size: 14px;
            }

            .album-cover-player-played{
                left: 10px;
            }
            .album-cover-player-duration{
                right: 10px;
            }

    .album-details h3{
        font-weight: 600;
    } 

    .album-details p{
        margin-bottom: 0;
    }
    
        .album-details .btn{
            margin-bottom: 0;
        }

            .album-details .btn > i{
                font-size: 14px;
                margin-right: 5px;
            }

        .album-details .listen-btn{
            display: inline-block;
            line-height: 55px;
            font-size: 20px;
            margin-left: 20px;
        }

            .album-details .listen-btn a{
                color: #000;
            }

            .album-details .listen-btn i{
                font-size: 24px;
            }

    .album-tracklist{
        margin-top: 100px;
    }

        .album-tracklist-title{
            font-size: 30px;
            font-weight: 600;
        }

        .album-tracklist hr{
            margin: 15px 0;
            border-color: #000;
        }

        .album-tracklist-wrapper{
            position: relative;
            overflow: hidden;
        }

            .album-tracklist-wrapper .album-tracklist-lyrics{
                position: absolute;
                top: 0;
                right: -103%;
                width: 100%;
                height: 100%;
                overflow-y: auto;
                padding: 0 30px;
            }

                .album-tracklist-wrapper .album-tracklist-lyrics .album-tracklist-lyrics-close{
                    margin-bottom: 15px;
                }
                
                    .album-tracklist-wrapper .album-tracklist-lyrics .album-tracklist-lyrics-close i{
                        font-size: 15px;
                    }
                
                    .album-tracklist-wrapper .album-tracklist-lyrics .album-tracklist-lyrics-wrapper{
                        text-align: center;
                    }
            
            .album-tracklist-wrapper.opened-lyrics .album-tracklist-lyrics{
                right: 0;
            }
            
            .album-tracklist-wrapper.opened-lyrics .album-tracklist-subwrapper{
                transform: translateX(-103%);
            }

            .album-track span, .album-track img{
                display: inline-block;
            }

            .album-track img{
                height: 16px;
                margin-right: 5px;
                margin-top: -5px;
            }

footer{
    background: #f0f0f0;
}

    .contacts{
        padding: 150px 15px 100px;
    }

        .footer-socials{
            margin-bottom: 75px;
        }
        
            .contacts-social{
                color: #000;
                font-size: 30px;
                margin: 0 15px;
            }

        .contacts-item img{
            margin-bottom: 15px;
        }

        .contacts-item a, .credits a{
            color: #000;
            text-decoration: underline;
        }

    .credits{
        padding-bottom: 25px;
    }

.page-header{
    position: relative;
    padding: 150px 0;
    background-size: cover;
    background-position: center;
}

    .page-header:before{
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,.2);
    }

    .page-header h1{
        color: #fff;
        font-family: "Open Sans";
        font-size: 6rem;
        text-transform: uppercase;
        letter-spacing: 4px;
    }

    .breadcrumb{
        display: block;
        background: transparent;
        margin: 0;
    }

        .breadcrumb-item{
            display: inline-block;
            font-size: 20px;
        }        
        
            .breadcrumb-item > a, .breadcrumb-item.active, .breadcrumb-item + .breadcrumb-item::before{
                color: #fff;
            }

            .breadcrumb-item > a{
                text-decoration: underline;
            }