/*

	

	- - - - - Contents - - - - -
	
	01 - Basic Stylesheet
	02 - General Stylesheet
	03 - Layout Stylesheet

	- - - - - - - - - - - - - -
	
*/	


/* 1 - Import Google Font
------------------------------------------------------------------------*/
@import url(https://fonts.googleapis.com/css?family=Raleway:300,400,600,700,800,900);

/* Google Font End 
------------------------------------------------------------------------*/
/*  01 - Basic Stylesheet
-----------------------------------------------------------*/
html{
	width					: 100%;
	height					: 100%;
}
body{
	width					: 100%;
	height					: 100%;
	margin					: 0;
	padding					: 0;
    font-family             : 'Playfair Display', sans-serif;
	font-weight				: 400;
    font-size				: 14px;
	color					: #24324a;
	text-rendering			: optimizeLegibility;
	background-color		: #24324a;
	-webkit-font-smoothing	: antialiased;
	   -moz-font-smoothing	: antialiased;
	        font-smoothing	: antialiased;
}

h1, h2, h3, h4, h5, h6{
    margin-top              : 0;
}
h1, h2, h3, h4{
    font-weight             : 400;
}
h5, h6{
    font-family             : 'Lato', sans-serif;
    letter-spacing          : 2px;
    text-transform          : uppercase;
}
h1{
    font-size               : 48px;
    margin-bottom           : 40px;
    
}
h2{
    font-size               : 30px;
    margin-bottom           : 20px;
    
}
h5{
    font-size               : 12px;
    font-weight             : 900;
    color                   : #bda876;
    
}
h6{
    font-size               : 11px;
    font-weight             : 400;
    margin-bottom           : 10px;
}
