@charset "utf-8";
/* CSS Document */

/*-----------------------------------------------------------------------------------*/
/*	GENERAL
/*-----------------------------------------------------------------------------------*/
body, html {
  height: 100%;
}

body {
	font-family: 'Montserrat';
    line-height: 30px;
    font-size: 18px;
    color: #26282a;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
	margin:0;
	padding:0;
	overflow-x: hidden;
	font-weight:300;
	
}

#wrapper {
    background-image: url(../images/background.jpg);
    background-position: 56% center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    position: relative;
    width: 100%;
}

#logo {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 50%;
    margin-left: 7%;
    margin-top: -2%;
}



@media only screen and (max-width: 1024px) {
	
#logo {
    top: 25%;
    transform: translate(-50%);
    margin-left: 0;
    margin-top: 0;
}
	
}

@media only screen and (max-width: 600px) {
	
#wrapper {
   background-image: url(../images/background-mobile.jpg);
	background-position: center;
}
	
}

@media only screen and (max-width: 480px) {
	
#wrapper {
   background-image: url(../images/background-mobile-small.jpg);
	background-position: center;
}
	
}