/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : Jan 16, 2017, 5:32:59 PM
    Author     : Ale
*/
@import url(http://fonts.googleapis.com/css?family=Roboto:300,700);

#wrapper{
    width: 100%;
    height: 100%;
    font-family: 'Roboto', sans-serif;
    /*transition for the background color*/
    -webkit-transition: background-color 500ms;
    -moz-transition: background-color 700ms;
    -o-transition: background-color 700ms;
    transition: background-color 700ms;
}

/*color classes to be applied to "#wrapper" by the js*/
.colorOne{
    //background-image: url(../images/bg_nl_hosting.jpg);
    //background-attachment: fixed;
    background-color: rgba(0,0,0,0.7);
}
.colorTwo{
    background-color: rgba(10,166,189,0.5);
}
.colorThree{
    background-color: rgba(175,50,54,0.7);
}
.colorFour{
    background-color: rgba(58,57,115,0.7);
}

/*layout styles not really relevant to this demo*/

header{
    width: 100%;
    color: #3a3973;
    //background: white;
    background: white url(../images/flecha_crece.png);
    text-align: center;
    padding: 0.5em 0 0.5em 0;
    background-size: 100% auto;
    background-repeat: no-repeat;
    //margin-bottom: 100px;
}
h2{
    font-size: .7em;
    padding-top: .5em;
}

.item{
    width: 100%; 
    //max-width: 600px;
    margin: 0 auto;
    height: auto;
    padding: 0px 0 10px 0;
}

p{
    //width: 64%;
    display: inline-block;
    color: white;
    line-height: 170%;
    font-size: 1.2em;
    font-weight: 300;
}

@media screen and (max-width: 550px) {
    h1{
        display: block;
        width: 90%;
        margin-left: 3%;
    }
    p{
        display: block;
        width: 90%;
        margin-left: 3%;
    }
    header{
        margin-bottom: 0px;
    }

}


.h-500{
    height: 500px;
}

/*RESPONSIVIDAD BOOTSTRAP*/


@media (min-width: 768px) {}

@media (min-width: 992px) {}

@media (min-width: 1200px) {
    .component > h2 {
        text-align: right;
        padding-right: 30px;
        text-transform: uppercase;
        font-size: 40px;
    }
    h2{
        margin-top: 20px;
        margin-bottom: 10px;
    }
}
/*FIN RESPONSIVIDAD BOOTSTRAP*/