/* #Font-Face
================================================== */

@font-face {
    font-family: 'Playfair Display';
    src: url('../fonts/PlayfairDisplay-Black.eot');
    src: local('../fonts/Playfair Display Black'), local('../fonts/PlayfairDisplay-Black'),
        url('../fonts/PlayfairDisplay-Black.eot?#iefix') format('embedded-opentype'),
        url('../fonts/PlayfairDisplay-Black.woff2') format('woff2'),
        url('../fonts/PlayfairDisplay-Black.woff') format('woff'),
        url('../fonts/PlayfairDisplay-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Playfair Display';
    src: url('../fonts/PlayfairDisplay-Regular.eot');
    src: local('../fonts/Playfair Display Regular'), local('../fonts/PlayfairDisplay-Regular'),
        url('../fonts/PlayfairDisplay-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/PlayfairDisplay-Regular.woff2') format('woff2'),
        url('../fonts/PlayfairDisplay-Regular.woff') format('woff'),
        url('../fonts/PlayfairDisplay-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Playfair Display';
    src: url('../fonts/PlayfairDisplay-Bold.eot');
    src: local('../fonts/Playfair Display Bold'), local('../fonts/PlayfairDisplay-Bold'),
        url('../fonts/PlayfairDisplay-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/PlayfairDisplay-Bold.woff2') format('woff2'),
        url('../fonts/PlayfairDisplay-Bold.woff') format('woff'),
        url('../fonts/PlayfairDisplay-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Kufam';
    src: url('../fonts/Kufam-Regular.eot');
    src: local('../fonts/Kufam Regular'), local('../fonts/Kufam-Regular'),
        url('../fonts/Kufam-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Kufam-Regular.woff2') format('woff2'),
        url('../fonts/Kufam-Regular.woff') format('woff'),
        url('../fonts/Kufam-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Medium.eot');
    src: local('../fonts/Inter Medium'), local('../fonts/Inter-Medium'),
        url('../fonts/Inter-Medium.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Inter-Medium.woff2') format('woff2'),
        url('../fonts/Inter-Medium.woff') format('woff'),
        url('../fonts/Inter-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Italic.eot');
    src: local('../fonts/Inter Italic'), local('../fonts/Inter-Italic'),
        url('../fonts/Inter-Italic.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Inter-Italic.woff2') format('woff2'),
        url('../fonts/Inter-Italic.woff') format('woff'),
        url('../fonts/Inter-Italic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Regular.eot');
    src: local('../fonts/Inter Regular'), local('../fonts/Inter-Regular'),
        url('../fonts/Inter-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Inter-Regular.woff2') format('woff2'),
        url('../fonts/Inter-Regular.woff') format('woff'),
        url('../fonts/Inter-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

	body, html {
        font-family: 'Playfair Display';
	}
/* #Reset & Basics 
================================================== */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

/* #Links
================================================== */
	a, 
    a:visited,
    a:hover, 
    a:focus {  
       text-decoration: none;     
	   outline: none;
    }

/* #Lists
================================================== */
	li, ul {
        /* list-style-type: none; */
    }    

/* #Forms
================================================== */
	input[type="text"],
	input[type="password"],
	input[type="email"],
	textarea,
	select {
		border: 1px solid #ccc;
		padding: 0 5px;
		outline: none;
		max-width: 100%;
		background: #fff;
	}
	form textarea {
		min-height: 60px;
        resize: none;
		overflow: auto; 
	}   
	input[type="checkbox"],
    input[type="radio"] {
		display: inline-block;
		margin-right:5px; 
	}
	button,
	input[type="submit"],
	input[type="reset"],
	input[type="button"] {	
	  text-decoration: none;
      text-transform: none;
	  cursor: pointer;
      border: none;
	  line-height: normal;
      cursor: pointer;  
	}  	
/* #Other
================================================== */
	:focus   { 
        outline: none; 
    }
    
