/* #Font-Face
================================================== */
@font-face {
    font-family: 'Urbanist';
    /* src: url('../fonts/Urbanist-Bold.eot'); */
    src: url('../fonts/Urbanist-Bold.ttf');
    src: local('../Urbanist-Bold'), local('Urbanist-Bold'),
        url('../fonts/Urbanist-Bold.eot?#iefix') format('embedded-opentype'),
       /*  url('../fonts/Urbanist-Bold.woff2') format('woff2'),
        url('../fonts/Urbanist-Bold.woff') format('woff'), */
        url('../fonts/Urbanist-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Urbanist';
    /* src: url('../fonts/Urbanist-SemiBold.eot'); */
    src: url('../fonts/Urbanist-SemiBold.ttf');
    src: local('../Urbanist-SemiBold'), local('Urbanist-SemiBold'),
        url('../fonts/Urbanist-SemiBold.eot?#iefix') format('embedded-opentype'),
        /* url('../fonts/Urbanist-SemiBold.woff2') format('woff2'),
        url('../fonts/Urbanist-SemiBold.woff') format('woff'), */
        url('../fonts/Urbanist-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Urbanist';
    /* src: url('../fonts/Urbanist-Medium.eot'); */
    src: url('../fonts/Urbanist-Medium.ttf');
    src: local('../Urbanist-Medium'), local('Urbanist-Medium'),
        url('../fonts/Urbanist-Medium.eot?#iefix') format('embedded-opentype'),
        /* url('../fonts/Urbanist-Medium.woff2') format('woff2'),
        url('../fonts/Urbanist-Medium.woff') format('woff'), */
        url('../fonts/Urbanist-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Urbanist';
    /* src: url('../fonts/Urbanist-Regular.eot'); */
    src: url('../fonts/Urbanist-Regular.ttf');
    src: local('../Urbanist-Regular'), local('Urbanist-Regular'),
        url('../fonts/Urbanist-Regular.eot?#iefix') format('embedded-opentype'),
        /* url('../fonts/Urbanist-Regular.woff2') format('woff2'),
        url('../fonts/Urbanist-Regular.woff') format('woff'), */
        url('../fonts/Urbanist-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}





	body, html {
        font-family: 'Urbanist';
	}
/* #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%;
		display: block;
		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; 
    }
    
