/* FUENTES */
@font-face {
    font-family: 'BEBAS';
    src: url('../fonts/BEBAS.TTF');
}

@font-face {
    font-family: 'roboto-regular';
    src: url('../fonts/Roboto-Regular.ttf');
}

@font-face {
    font-family: 'roboto-light';
    src: url('../fonts/Roboto-Light.ttf');
}

@font-face {
    font-family: 'roboto-bold';
    src: url('../fonts/Roboto-Bold.ttf');
}

/* Fuentes */
.bebas{
    font-family: "BEBAS";
}

.roboto-regular{
    font-family: "roboto-regular";
}

.roboto-light{
    font-family: "roboto-light";
}

.roboto-bold{
    font-family: "roboto-bold";
}



/* GENERAL */
.bb{
    background:black;
}
.cr{
    color:red;
}
ul li{
    list-style:none;
    display:inline;
    padding-left:15px;
    padding-right:15px;
}
button:focus{
    box-shadow: none !important;
}

/* HEADER */
#header{
    position: fixed;
    width: 100%;
    background:white;
    z-index: 3;
}



/* SLIDE */
#slide{
    padding-top: 88px;
}
#img-slide{
    width: 100%;
    height: 100%;
}
#titulo-slide{
    position: absolute;
    top: 350px;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    z-index: 2;
    text-shadow: 2px 2px 10px black;
}
#ph-slide{
    position: absolute;
    top: 500px;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    z-index: 2;
}


/* Formulario contacto */
#seccion-contacto{
    background:url('../img/Laurus-BG.jpg');
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
}
#cont-formulario{
    width: 400px;
    margin:auto;
}
#input-mensaje{
    width: 100%;
    display: block;
    margin: auto;
    border-radius: 0px;
    background-color: transparent;
    border:1px solid white;
    height: 150px;
    color: white;
}
#input-mensaje:focus{
    box-shadow: none;
}
#btn-enviar{
    width: 100%;
    display: block;
    margin: auto;
    background-color: white;
    color: #666058;
    border-radius: 0px;

}

.input-1{
    width: 100%;
    display: block;
    margin: auto;
    border-radius: 0px;
    background-color: transparent;
    border:1px solid white;
    color: white;
}
.input-1:focus{
    outline: none;
    box-shadow: none;
    background-color: transparent;
    border:1px solid white;
    color:white;
}

/* Redes */
#enlaces-redes a:hover img{
    filter: drop-shadow(0 0 0.30rem black);
}


/* Footer */
#logoVork{
    margin-top: 60px;
    margin-bottom: 20px;
}


/* Medias */

@media (max-width: 375px) {
    form{
        padding: 0px 15px;
    }
    #input-mensaje {
      width: 100%;
    }
    #btn-enviar{
        width: 100%;
    }
}
@media (max-width: 1055px) {
    #titulo-slide{
        top:280px;
    }
    #ph-slide{
        top:400px;
    }
}
@media (max-width: 728px) {
    #titulo-slide{
        top:350px;
    }
    #ph-slide{
        top:500px;
    }
}
@media (min-width: 1440px) {
    #titulo-slide{
        position: absolute;
        font-size: 60px;
        top:400px;
    }
    #ph-slide{
        position: absolute;
        font-size:  30px;
        top:600px;
    }
}