* {
    margin: 0;
    padding: 0;
}
body {
    height: 100%;
    font-family: 'Raleway', sans-serif;
    overflow-y: hidden;
    overflow-x: hidden;
}
p {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
}
html {
    height: 100%;
}
/*---------------------------------------
   COMMON STYLES             
-----------------------------------------*/

.parallax {
    background-attachment: fixed !important;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
/*---------------------------------------
   SECTION HOME              
-----------------------------------------*/
/*menu*/

.header h2 {
    height: 0px;
    margin: 0px;
}
.header {
    height: 100%;
    background: url(../images/home.jpg);
    background-size: cover;
	background-repeat: no-repeat;
}
.header .section_overlay {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(33, 33, 33, .5);
}
.logo{
    padding-bottom: 50px;
}
.home_text{
    text-align: left;
}
.home-image{
    text-align: right;
}
.home-image img{
    width: 100%;
}

@media (max-width: 768px){
    .home-image{
        display: none;
    }
    .home_text{
        text-align: center;
    }

}
.home_text h1 {
    color: #fff;
    font-size: 35px;
    font-weight: 300;
    line-height: 45px;
    padding-top: 30px
}
.home_text p {
    color: #fff;
    font-size: 17px;
    line-height: 28px;
    margin-top: 0px;
    font-weight: 300;
}
.home-btn,
.home-btn:focus,
.home-btn:active,
.home-btn:visited {
    background: transparent;
    border-color: #f39c12;
    color: #f39c12;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 30px;
    padding-right: 30px;
    font-size: 19px;
    text-transform: uppercase;
    border-radius: 3px;
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
}
.home-btn:hover {
    background-color: #f39c12;
    color: #fff;
}