/* ---------------------------
MEDIA QUERY - BREAKPOINTS
--------------------------- */

/* ---------------------------
style from a certain size up = use (min-width: )
style from a certain size down = use (max-width: )
--------------------------- */



@media (max-width: 543px) 
{
    .jumbotron
    {
        border-radius: 0;
        margin: 44px 0 0;
        padding: 250px 0;
    }
    h1
    {
        font-size: 1.5em
    }
    h2
    {
        font-size: 1.3em;
    }
    h3
    {
        font-size: 1.1em;
    }
    p
    {
        font-size: 0.9em;
    }
    .hpparralax1
    {
        padding: 70px 0 60px;
    }
}

 
@media (min-width: 544px)
{
    .jumbotron
    {
        border-radius: 0;
        margin: 42px 0 0;
        padding: 300px 0;
    }
    h1
    {
        font-size: 1.5em
    }
    h2
    {
        font-size: 1.3em;
    }
    h3
    {
        font-size: 1.1em;
    }
    p
    {
        font-size: 0.9em;
    }
    .hpparralax1
    {
        padding: 70px 0 60px;
    }
}

@media (min-width: 768px)
{
    .jumbotron
    {
        padding: 350px 0;
    }
    h1
    {
        font-size: 1.7em
    }
    h2
    {
        font-size: 1.5em;
    }
    h3
    {
        font-size: 1.3em;
    }
    p
    {
        font-size: 1em;
    }
    .hpparralax1
    {
        padding: 100px 0 90px;
    }
}

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

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