/*
Theme Name: Sharpen's Sprinzak 
Theme URI:  
Author: Sharpen 
Author URI: http://www.sharpen.co.il/
Description: Custom theme for 'Sprinzak' project.
Version: 1.0
License: 
License URI: 
Tags: 
Text Domain: sprinzak 
*/


/****************************************/
/* FONTS 								*/
/****************************************/

/*
@font-face {
    font-family: 'Bebas';
    src: url('fonts/bebas.eot');
    src: url('fonts/bebas.eot?#iefix') format('embedded-opentype'),
         url('fonts/bebas.woff') format('woff'),
         url('fonts/bebas.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
} 
*/
@font-face {
    font-family: 'FbAtzofen';
    src: url('fonts/fbatzofen-bold-webfont.eot');
    src: url('fonts/fbatzofen-bold-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/fbatzofen-bold-webfont.woff') format('woff'),
         url('fonts/fbatzofen-bold-webfont.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'FbAtzofen';
    src: url('fonts/fbatzofen-medium-webfont.eot');
    src: url('fonts/fbatzofen-medium-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/fbatzofen-medium-webfont.woff') format('woff'),
         url('fonts/fbatzofen-medium-webfont.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'FbAtzofen';
    src: url('fonts/fbatzofen-regular-webfont.eot');
    src: url('fonts/fbatzofen-regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/fbatzofen-regular-webfont.woff') format('woff'),
         url('fonts/fbatzofen-regular-webfont.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

/****************************************/




/****************************************/
/* CSS VARIABLES
/****************************************/
:root {
	
	/* Colors */
	--main-color: #10a7c8;
	--link-color: #e5ac79;
	--link-hover-color: #e4ccb1;
	/***/

}
/****************************************/





/****************************************/
/* RESET
/****************************************/

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
	box-sizing: border-box;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/***/




/********************************************************************************/
/* HTML ELEMENTS
/********************************************************************************/
html {
	min-height: -webkit-fill-available;
	/*
	font-size: 62.5%;
	-webkit-text-size-adjust: 100%;
		-ms-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility !important;
	*/
}
body {
	min-height: 100vh;
	min-height: -webkit-fill-available;
	overflow-x: hidden;
	background-color: #fff;
	color: #000;
	font-family: 'Heebo', Arial, sans-serif;
	font-weight: 400;
	font-size: 18px;
	line-height: 1.25em;
}

a {
	text-decoration: none;
	color: var(--link-color);
	-webkit-transition: color 0.2s ease;
			transition: color 0.2s ease;
}
a:hover, 
a:active, 
a:focus {
	color: var(--link-hover-color);
}

h1,
h2,
h3,
h4 {
	margin: 0.75em auto 0.25em auto;
}
h1 {
	font-size: 3em;
}
h2 {
	font-size: 3em;
}
h3 {
	font-size: 1.75em;
}
h4 {
	font-size: 1em;
}
h5 {	
	font-size: 1em;
}

p:not(:last-child),
ul:not(:last-child),
ol:not(:last-child),
table:not(:last-child) {
    margin-bottom: 1em;
}
p + ul,
p + ol {
	margin-top: -0.5em;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

figure {
	overflow: hidden;
	line-height: 0;
} 
figure > img {
	max-width: 100%;
	height: auto;
}

b,
strong {
	font-weight: 500;
}
small {
    font-size: 75%;
}
big {
    font-size: 125%;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}

textarea{ 
	resize: none; 
	overflow: hidden; 
}

@media (min-width : 1600px) {
	body {
		font-size: 20px;
	}
}

/********************************************************************************/
