/*CSS reset*/
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}

*{
    box-sizing: border-box;
}

body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

body{
    font-family: 'Montserrat', sans-serif;
    color: white;
    background-color: black;
}


#navbar{
    position: absolute;
    width: 100%;
    top: 0px;
    z-index: 999;
}

#navbar .logo{
    width: 200px;
    height: 55px;
    position: absolute;
    left: 100px;
    top: 50px;
    display: inline-block;
    margin: auto;
    background: url("assets/logo-hover.png") no-repeat 0 0;
    background-size: 55%;
}

#navbar .logo:hover{
    background: url("assets/logo-hover.png") no-repeat 0px -55px;
    background-size: 55%;
}

#navbar ul{
    margin: 0;
    padding: 0;
    padding-top:70px;
    position: absolute;
    right:0px;
    display:flex;
}

#navbar ul li{
    list-style: none;
}

#navbar ul li a:hover{
    color: #f74e4e;
}


#navbar ul li a{
    position: relative;
    display: block;
    padding: 10px 15px;
    text-align:center;
    font-size: 18px;
    font-weight: 200;
    color: #ffff;
    text-decoration: none;
    transition: .5s;
}

#welcome{
    /* The image used */
    background-image:url("assets/welcome.jpg");
     /* Full height */
    width: 100%;
    /* Center and scale the image nicely */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.scroller{
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: 10%
}

.scroller i{
    font-size: 2vw;
    color: white;
}

.scroller a{
    font-weight: 100;
    font-size: 1vw;
}

#bio{
    background-color: black;
    height: 100%;
}

#bio-wrapper{
    margin-left: auto;
    margin-right: auto;
    padding: 1em;
}

#bio-wrapper > *{
    padding: 1em;
}

.bio-Title h1{
        color: white;
        font-size: 5vw;
        font-weight: 100;
        letter-spacing: 10px;
        position: relative;
        display: grid;
        margin-left: 10%;
        
    }


.bio-Title hr{
    height: 1px;
    border: 0;
    border-top: 1px solid firebrick;
    width:11%;
    margin-left: 14%;
    position: relative;
    bottom: 0;
}


.bye a{
    color: #f74e4e;
    text-decoration: none;
    font-weight: 100;
}

#name{
    position: absolute;
    top:40%;
    left:65%;
    font-weight: 100;
}

#name .names{
    font-size: 46px;
    color: firebrick;
}

#name .lastnam{
    font-size: 46px;
    color: white;
}

#name .job{
     color: firebrick;
    font-size: 30px;
    letter-spacing: 16px;
}

#bio-wrapper h1{
    letter-spacing: 10px;
    font-size: 5vw;
    font-weight: 200;
    color: firebrick;
}

#bio-wrapper p{
    font-size: 0.9em;
    font-weight: 100;
    line-height: 1.8em;
}

#bio-wrapper img{
    width: 25%;
    float:left;
    margin-left: 20%;
}

#bio-wrapper .hi{
    display: grid;
    float:left;
    width: 20em;
    height: 27em;
}

#bio-wrapper .bye{
    display: grid;
    padding-left: 50px;
    float:left;
    width: 20em;
    height: 27em;
}

#music{
    background-color: #360000;
}

.titleMusic h1{
    padding-left: 4%;
}

.titleMusic{
    position: relative;
    text-align: left;
}

.titleMusic hr{
    height: 1px;
    border: 0;
    border-top: 1px solid firebrick;
    width:10%;
    margin-left: 12%;
    position: absolute;
    bottom: 0;
    top: 100%;
}

.mobileList{
   display: none;
}

#playlist{
    width: 50%;
    display: inline-block;
    height: 50%;
    font-weight: 200;
    margin: 0 auto;
    padding: 0px;
    overflow-y: scroll;
    float: left;
    margin-left: 20px;
    position: relative;
    top: 10%;
    
}


#playlist ul
{
    display: grid;
    float: left;

}

#playlist a{
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 10px;
    text-decoration: none;
    color: white;
}

#playlist a:hover{
    color: #f74e4e;
}
#playlist i{
    font-size: 10px;
    text-align: center;
    display:inline-block;
    width: 20px;
    height: 20px;
    color:#f74e4e;
    border-radius: 20px;
    margin-right: 10px;
    text-decoration: none;
}

.hl{
    font-size: 18px;
    font-weight: 300;
    padding-top: 10px;
    padding-bottom: 10px;
    color: firebrick;
    text-transform: uppercase;
    letter-spacing: 10px;
}

.camara li{
    margin-right: 30px;
}


.album-list{
    top: 100px;
    left: 100px;
    display: none;
    font-size: 15px;
    font-weight: 100;
    color: white;
    text-decoration: none;
    position: relative;
}

.album-list a{
    padding-right: 30px;
}

#music-cont{
    border-radius:15px;
    position: relative;
    float: left;
    top: -10%;
    margin-top: 100px;
    margin-left: 100px;
    width: 398px;
    height: 370px;
    transform: translate (-50%,-50%);
    z-index:999;
    background-color: #2A0101;
}

#player{
    position: relative;
    background-color: firebrick;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    top: -30px;
    height: 120px;
    width: 100%;
    float: left;
    border: 1px solid #f74e4e;
}

#image-player img{
    height: 398px;
    width: 400px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

#songTitle{
    left: 50%;
    top: 83%;
    text-align:center;
    font-size: 15px;
    font-weight: 100;
    color: white;
    display: block;
    position: absolute;
    transform: translate(-50%,-50%);
    width: 100%;
    margin: 0;
    overflow: hidden;
}

#buttons{
    top: 55px;
    height: 50px;
    width: 100%;
    margin: 5px;
    position:relative;
    left:49%;
    transform: translate(-50%,-50%);
}

#play, #next, #pre{
    width: 50px;
    height: 100%;
    border:0;
    background-color: #630000;
    border-radius: 50%;
    border: 1px solid red;
    cursor: pointer;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
} 

#next{
    width: 30px;
    height: 30px;
    left: 70%;
}

#pre{
    width: 30px;
    height: 30px;
    left: 30%;
}

#play img{
    position: absolute;
    color: #f74e4e;
    width: 20px;
    top: 50%;
    left; 50%;
    transform: translate(-50%, -50%);
}

#next i, #pre i{
    position: absolute;
    color: #f74e4e;
    top: 50%;
    left; 50%;
    transform: translate(-50%, -50%);
}

#seek-bar{
    width: 300px;
    height: 5px;
    background-color: #630000;
    display: flex;
    border-radius: 50px;
    cursor: pointer;
    position: relative;
    left: 15%;
    top: -40px;
}

#fill{
    height: 5px;
    background-color: #f74e4e;
    border-radius: 20px;
}

#handle{
    width: 8px;
    height: 8px;
    background-color: #f74e4e;
    border-radius:50%;
    margin-left:-5px;
    transform: scale(2);
}

#currentTime{
    padding-left: 20px;
    font-size: 12px;
    font-weight: 100;
    position: relative;
    top: -25px;
}

#video{
    text-align: center
}

#video video{
    width: 70%;
    margin: 0 auto;
    position: relative;
    top: 5%;
}


#events{
    background-image:url("assets/events.jpg");
    width:100%;
    background-position: center;
    background-repeat: no-repeat;
}

.title-event{
    display: block;
    font-weight: 100;
    font-size: 5vw;
    letter-spacing: 20px;
    color: white;
    text-align: center;
    position: relative;
    top: 5%;
}

.event-container{
    display: block;
    height: 450px;
    width: 550px;
    overflow-y: scroll;
    margin: 0 auto;
    position: relative;
    top: 10%;
    
}

.one-event{
    position: relative;
    align-content: center;
    margin: 0 auto;
    display: block;
    margin: auto;
    top: 0px;
    margin-right: 20px;
}

.event-line{
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid white;
    position: relative;
    top: 17%;
    left: -5%;
    width:150px;
}

.news-line{
    height: 1px;
    border: 0;
    border-top: 1px solid white;
    position: relative;
    top: 6%;
    left: 19%;
    width: 150px;
}

.descr-event{
    font-weight: 100;
    font-size: 12px;
    text-transform: uppercase;
    padding-bottom: 20px;
    line-height: 140%;
    color: white;
    text-align: center;
}

.one-event h3{
    font-size: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
    font-weight: 400;
    text-align: right;
}
.one-event a{
    font-weight: 300;
    font-size: 12px;
    line-height: 140%;
    color: #f74e4e;
    background: rgba(54,0,0,0.7);
    padding: 5px;
    margin: 5px;
    padding-left: 10px;
    padding-right: 10px;
    text-decoration: none;
}

#press{
    background-image: url("assets/contactov3.jpg");
    width:100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

#press h1{
    font-weight: 100;
    font-size: 5vw;
    letter-spacing: 20px;
    position: relative;
    top: 5%;
    left: 55%;
    text-align: center;
    width: 500px;
    color: white;
}


#press .news{
    font-size: 20px;
    color: #f74e4e;
    font-weight: 300;
    text-align: right;
}

.news-container{
    display: block;
    width: 600px;
    height: 400px;
    overflow-y: scroll;
    position: relative;
    left: 50%;
    top: 10%;
}


.news{
    position: relative;
    margin: 0 auto;
    top: 0px;
    width:500px;
}


.press-line{
    height: 1px;
    border: 0;
    border-top: 1px solid white;
    position: relative;
    margin: 0 auto;
    width: 500px;
    padding-top: 20px;
}

.descr-news{
    font-weight: 100;
    font-size: 12px;
    padding-bottom: 20px;
    line-height: 140%;
    color: white;
    text-align: left;
    padding: 0
}
.news #read-more{
    text-align: right;
    padding-top:0;
    color: #f74e4e;
    font-weight: 300;
    font-size: 12px;
    text-decoration: none;
}

.title{
    font-size: 18px;
    color: #f74e4e;
    font-weight: 300;
    text-align: left;
    text-decoration: none;
}

#read-more{
    font-size: 15px;
    padding: 0;
}

.titleContact{
    text-align: left;
}
    
.titleContact h1, .titleMusic h1{
    color: white;
    font-size: 5vw;
    font-weight: 100;
    letter-spacing: 10px;
    position: relative:
}


.titleContact hr{
    height: 1px;
    border: 0;
    border-top: 1px solid firebrick;
    width:15%;
    position: absolute;
    margin-left: 5%;
}

*{
    box-sizing: border-box;
}    
    /*container*/
#contact{
    background-color: #360000;
    font-weight: 100;
}
    /*wrapper*/
.contact-contain{
    margin-left: auto;
    margin-right: auto;
    padding: 1em;
}

.contact-contain > *{
    padding: 1em;
}

.company-info{
 background: none;
    margin-left: 2vw;
    margin-right: 2vw;
}

.company-info h3{
    text-align: left;
}

    /*contact*/
.contactForm{
    background: none;
    margin-left: 2em;
    margin-right: 2em;
}

.contactForm form{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 10px;
}

.contactForm form label{
    display:block;
}

.contactForm form p{
    margin: 0;
}

.contactForm form .message, .submit-btn{
    grid-column: 1 / 3;
}

.contactForm form input, .contactForm form textarea{
    width: 100%;
    padding: 1em;
    border: 1px solid white;
    background:  rgba(64, 44, 44, 0.2);
    border-top: 0px;
    border-right: 0px;
    border-left: 0px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 100;
    font-size: 15px;
    color: white;
}

.contactForm form button{
    width: 100%;
    padding: 1em;
    border: 1px solid firebrick;
    background: rgba(64, 44, 44, 0.2);
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 100;
    font-size: 15px;
    color: #f74e4e;
    text-transform: uppercase;
    font-weight: 300;
}

.contactForm label{
    margin-bottom: 0.5em;
}


.contactForm form button:hover{
    background: #f74e4e;
    color: #360000;
}

#footer{
    width:100%;
    height: 70px;
    position: absolute;
    bottom:0px;
    background-color: black;
}

#footer p{
    color:grey;
    font-weight: 100;
    font-size: 10px;
    font-weight: 300;
    position: absolute;
    right: 0px;
    bottom: 0px;
    padding: 10px;
}

#footer h3{
    color:grey;
    font-weight: 100;
    font-size: 10px;
    padding-top: 10px;
    padding-left: 30px;
    padding-bottom: 10px;
    position: absolute;
    bottom:0px;
}

.socials{
    padding-top: 10px;
    padding-left: 30px;
    text-decoration: none;
}

.icon-f{
    display: inline-block;
    margin: auto;
    height: 31px;
    width: 31px;
    background: url("assets/ICONS.png") no-repeat 0 0;
}

.icon-i{
    display: inline-block;
    margin: auto;
    height: 31px;
    width: 31px;
    background: url("assets/ICONS.png") no-repeat -36px 0;
}

.icon-t{
    display: inline-block;
    margin: auto;
    height: 31px;
    width: 31px;
    background: url("assets/ICONS.png") no-repeat -72px 0;
}

.icon-f:hover {
    background:  url("assets/ICONS.png") no-repeat 0 -32px;
}

.icon-i:hover {
    background:  url("assets/ICONS.png") no-repeat -36px -32px;
}

.icon-t:hover {
    background:  url("assets/ICONS.png") no-repeat -72px -32px;
}

#playlist::-webkit-scrollbar,.event-container::-webkit-scrollbar,.news-container::-webkit-scrollbar {
    background: dimgray;
    border-radius: 15px;
    width: 10px;
    
}

#playlist::-webkit-scrollbar-thumb,.event-container::-webkit-scrollbar-thumb,.news-container::-webkit-scrollbar-thumb{
    background: rgba(247,78,78, 0.8);
    border-radius: 15px;
    width: 10px;
}

.responsive-text, .fas fa-bars i{
    display: none;
}

.logoResp{
    display: none;
}

@media screen and (max-width: 780px){   
    
    #navbar ul li{
        display: none;
    }
    
    #navbar{
        background: black;
        height: 40px;
        box-shadow: 0px 10px 10px rgba(0,0,0,0.5);
        text-align: center;
        position: fixed;
    }
    
    #navbar .logo{
        display: none;
    }
    
    #navbar .logoResp{
        display: block;
        margin: 0 auto;
        right: auto;
        padding: 0 auto;
        height: 30px;
        width: 60px;
        top: 10px;
        left: 0px;
        position: relative;
        background: url("assets/logo-hover.png") no-repeat 0 0;
        background-size:100%;
        text-align: center;
}
    
    #name{
        position: absolute;
        width: 100%;
        left: 0px;
        top: 60%;
    }
    
    #name .names{
        font-size: 30px;
        text-align: center;
    }   
    
    #name .names{
        font-size: 30px;
        text-align: center;
    }   
    
    #name .lastnam{
        font-size: 30px;
        text-align: center;
    } 
    
    #name .job{
        font-size: 20px;
        text-align: center;
        width: 100%;

    }
    
    #bio{
     /* The image used */
    background-image:url("assets/bio-pic.jpg");
     /* Full height */
    width: 100%;
    /* Center and scale the image nicely */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    }
    
    #bio{
        height: 100%;
        width: 100%;
    }
    
    #bio-wrapper img{
        width: 50%;
        height: auto;
        top: 25%;
        left: 25%;
        margin: 0 auto;
        padding: 0;
        position: absolute;
        display: none;
    }
    
    #bio-wrapper .hi{
        display: none;
        
    }
    #bio-wrapper .bye{
        display: none;
    }
    
    #bio-wrapper h1{
    letter-spacing: 10px;
    font-size: 5vw;
    font-weight: 200;
    color: firebrick;
    }
    
    .responsive-text{
        padding: 0 auto;
        display:inherit;
        line-height: normal;
        width: 100%;
        height: auto;
        margin: 0 auto;
        position: relative;
        font-weight: 500;
        overflow:hidden;
        border: 0 auto;
        font-size: 4vw;
    }
    
    .responsive-text p{
        margin: 0 auto;
        width: 90%;
        font-weight: 500;
    }
    


    .responsive-text a{
        text-decoration: none;
        color: #f74e4e;
        margin-top: 2vw;
        font-size: 3vw;

    }
    
    #music{
        width: 100%;
        height: 100%;
    }
    
    .slide{
        width: 100%;
    }
    
    #playlist{
        display: none;
    }
    
    #events{
        width: 100%;
        height: 100%;
        background-size: 300%;
    }
    
    .title-event{
        font-size: 5vw;
        width: 100%;
        top: 1%;
        text-align: center;
    }
    
    .event-line{
        top: 7%;
        width: 30%;
        left: -9vw;
    }
    
    .event-container{
        width: 80%;
        height: 70%;
        margin: 0 auto;
        top: 5%;
    }
    
    .news-container{
        width: 100%;
        margin: 0 auto;
        position:absolute;
        left: 0px;
        
    }
    
    .one-event p{
        font-size: 3vw;
        padding-bottom: 4vw;
    }
    
    .one-event h3{
        font-size: 4vw;
        padding: 3vw;
        text-align: center;
    }
    
    .one-event a{
        font-size: 3vw;
        text-align: center;
    
    }
    
    #press{
        width:100%;
        height:100%;
    }
    
    #press h1{
        top:-35%;
        font-size: 5vw;
        left: 0px;
        width: 100%;
        margin: 0px;
        padding: 0px;
        text-align: center;
    }
    
    .news-line{
        top: -35%;
        left: -9%;
        width: 30%;
    }
    
    .news{
        width: 80%;
    }
    
    .news p{
        font-size: 3vw;
    }
    
    .news .title{
        font-size: 4vw;
    }
    
    .news-container{
        top: 25%;
        left: 5%;
        width: 90%;
        height: 65%;
        overflow-x: hidden;
    }
    
    
    #footer p, #footer h3{
        font-size: 2vw;
    }
    #footer h3{
        padding-left: 5%;
    }
    .socials{
        width: 100%;
        padding-top:2%;
        padding-left: 0;
        margin: 0 auto;
        text-align: center;
    }
    
    #music-cont{
        top: 3%;
        width: 80%;
        height: 80%;
        margin: 0 auto;
        position: relative;
        left: 10%;
        background: none;
    }
    
    #player{
        position: absolute;
        height: 30%;
        width: 100%;
        float: none;
        display: grid;
        bottom: 0%;
        top: auto;
        left: auto;
        right: auto;
    }
    
    #image-player{
        top: 10%;
        margin: 0 auto;
        width: auto;
        height: 50%;
        position: relative;
        border-top-left-radius: 0px;
        border-top-right-radius: 0px;
        float: none;
        display: block;
        overflow: hidden;
        text-align: center;
    }
    
    #image-player img{
        display: block;
        width: 80%;
        border-radius: 0px;
        height: auto;
        margin: auto;
        padding: 0;

    }

    #songTitle{
        text-align:center;
        font-size: 4vw;
        font-weight: 100;
        color: white;
        display: block;
        position: absolute;
        transform: translate(-50%,-50%);
        width: 100%;
        margin: 0 auto;
    }
    
    .fas fa-bars i{
        font-size: 20px;
        display: block;
    }

    #buttons{
        width: 100%;
        margin: 0 auto;
        position:relative;
        top: 20%;
    }
    
    
    #seek-bar{
        width: 80%;
        margin: 0 auto;
        position: relative;
        left: auto;
        right: auto;
        top: auto;
    }
    
    #currentTime{
        position: relative;
        margin: 0 auto;
        width: 100%;
        padding: 0;
        font-size: 3vw;
        padding-left: 1vw;
        left: auto;
        right: auto;
        top: auto;
    }
    
    #bio-wrapper{
        padding: 0px;
    }
    
    .bio-Title{
        width: 100%;
        position: absolute;
        top: 10%;
        padding:0px;
        margin: 0px;
        border: 0px;
        padding: 0px;
        
    }
    .bio-Title h1{
        text-align: left;
        position: relative;
        top: 15%;
        padding-left: 0px;
        margin-left: 0px;
        font-size: 6vw;
        font-weight: 200;
        letter-spacing: 10px;
        display: block
    }

    .bio-Title hr{
        height: 1px;
        border: 0;
        border-top: 1px solid firebrick;
        width:22%;
        position:relative;
        margin-left: 8%;
       bottom: 0;
    }
    
    .contactForm{
        margin: 0 auto;
    }
    
    .contactForm form .message, .submit-btn{
    grid-column: 1 / 3 ;
    }

.contactForm form button, .contactForm form input, .contactForm form textarea{
    width: 100%;
    padding: 1em;
    border: 1px solid white;
    background:  rgba(64, 44, 44, 0.5);
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 100;
    font-size: 15px;
    color: white;
}

.contactForm label{
    margin-bottom: 0.5em;
}
.submit-btn button{
        margin-bottom: 15px;
    }
}
    
@media screen and (max-width: 1080px) and (min-width: 780px){
    
    #navbar ul li{
        display: none;
    }
    
    #navbar{
        background: black;
        height: 40px;
        box-shadow: 0px 10px 10px rgba(0,0,0,0.5);
        text-align: center;
        position: fixed;
    }
    
    #navbar .logo{
        display: none;
    }
    
    #navbar .logoResp{
        display: block;
        margin: 0 auto;
        right: auto;
        padding: 0 auto;
        height: 30px;
        width: 60px;
        top: 10px;
        left: 0px;
        position: relative;
        background: url("assets/logo-hover.png") no-repeat 0 0;
        background-size:100%;
        text-align: center;
}
    
    #bio-wrapper img{
        margin-left: 5%;
    }

    #press h1{
        margin: 0;
        width: 100%;
        left: auto;
        top: auto;
        padding: 0;
        border: 0;
    }
    .news-line{
        left: -3%;
        top: 1%;
    }
    .news-container{
        left: auto;
        position: relative;
        margin: 0 auto;
    }
    
    #name{
        left: 60%;
    }
    
    #music-cont{
        border-radius:15px;
        position: relative;
        float: left;
        top: -10%;
        margin-top: 100px;
        margin-left:65px;
        width: 398px;
        height: 370px;
        transform: translate (-50%,-50%);
        z-index:999;
        background-color: #2A0101;
    }
    
    #playlist{
        width: 450px;
    }
    
}
    
    
    
    
    
    
    