@import url('https://fonts.googleapis.com/css?family=Montserrat:500,600');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,500');

body {
    background-color: white;
    margin: 0;
    font-family: "Open Sans";
}

h1{
    font-family: "Ostrich Sans Rounded", sans-serif;
    font-size: 6.5em;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 0.9;
    text-shadow: 3px 3px 8px rgba(37, 37, 37, 0.7);
}

h2{
    font-family: "Ostrich Sans Rounded", sans-serif;
    font-size: 3.5em;
    font-weight: 600;
    letter-spacing: 3px;
    line-height: 1;
}

h2-color{

    color: #3aaa35;

}

h3{
    font-family: "Ostrich Sans Rounded", sans-serif;
    font-size: 2.5em;
    line-height: 1.4;
}

h4{
    font-family: "Ostrich Sans Rounded", sans-serif;
    font-weight: 600;
    font-size: 2.8em;
    letter-spacing: 3.2px;
    text-shadow: 3px 3px 8px rgba(37, 37, 37, 0.7);
    color: #ed8a1b;
}


p{
    font-family: "Open Sans";
    font-size: 1.2em;
    letter-spacing: 1px;
    font-weight: 400;
}

a{
    color: gray;
    text-decoration: none;
}

a:hover{
    color: #3aaa35;
    text-decoration: none;
}

img {
    width: 100%;
    height: auto;
    display: block;
}

/* NAVBAR */
.navbar{
    font-size: 1.2em;
}

.navbar .navbar-nav{
    margin-right: 20px;
}

/* LOGO IN NAVBAR */
.navbar .navbar-brand img{ 
    height: 70px;
    width: auto;
    padding: 5px 10px;
    margin-left: 24px;
}

.wrapper{
    display: grid;
}

#showcase{
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: url('../img/bg/showcase_bg_compressor.jpg');
    background-size: cover;
    color: white;
    padding: 0 16px;
}

.content{
    margin-top: 100px;
    margin-bottom: 100px;
    padding: 0 10%;
    display: grid;
    grid-template-columns: auto auto;
    justify-content: center;
    align-items: center;
}


.form-group{
    width: 300px;
    margin-right: 100px;
}

.separator{
    width: 5px;
    height: 80%;
    background: #3aaa35;
    display: grid;
    align-items: center;
    margin-right: 25px;
}

#contact-info{
    display: grid;
    height: 100%;
    grid-template-columns: auto auto;
    align-items: center;

}

#brand{
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: url('../img/bg/brand_bg_compressor.jpg');
    background-size: cover;}

#brand img{
    width: 25%;
    height: auto;
}



/*  ---  Media Queries  ---  */

/*  ---  Tablet  ---  */
@media(max-width:1260px){
    #services{
        grid-template-columns: 1fr 1fr;
   
    }
}


/*  ---  Tablet  ---  */
@media(max-width:830px){


}

    /*  ---  Smartphone  ---  */
@media(max-width:480px){

    h1{
        font-size: 4.9em;
    }
    
    h2{
        font-size: 3.5em;
    }
    
    
    h3{
        font-size: 2em;
    }
    
    h4{

        font-size: 2.4em;

    }

    .content{
        grid-template-columns: auto;
    }

    #contact-info{
        grid-area: 1;
        justify-self: start;
        display: grid;
        grid-template-columns: auto auto;
        margin-bottom: 60px;
        padding-left: 15px;
        justify-content: center;

    }
}
