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


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

@font-face {
    font-family: 'BebasNeue';
    src: url('fonts/bebas.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'AlmoniNeueDL';
    src: url('fonts/almoni-neue-aaa-300-webfont.woff');
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: 'AlmoniNeueDL';
    src: url('fonts/almoni-neue-aaa-400-webfont.woff');
    font-weight: 400;
    font-style: normal;
}

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




/****************************************/
/* CSS VARIABLES
/****************************************/
:root {
	
	/* Fonts */
	--custom-font-one: 	'AlmoniNeueDL', Arial, sans-serif;
	--custom-font-two: 	'BebasNeue', Arial, sans-serif;
	
	/* Colors */
	--black-color: 		#000000; 
	--dark-color: 		#231f20; 
	--grey-color:		#cedbe1; /* not used */
	--light-color:		#faf9f9; /* not used */
	--white-color:		#ffffff; 
	
	--cold-color:		#0293cb; /* not used */
	--cool-color:		#00aeef; /* not used */
	--warm-color:		#cce330; /* not used */
	--hot-color:		#fff200; /* not used */
	
	--success-color: 	#000000; /* not used */
	--danger-color:		#f44336; /* not used */
	--warning-color: 	#f44336; 
	--info-color: 		#000000; /* not used */
	
	--primary-color:	#01014b; 
	--secondary-color:	#0681da; 
	--fancy-color:		#0681da; 
	--link-color:		#0096ff; 
	--link-hover-color:	#0681da; 
	
}
/****************************************/





/****************************************/
/* 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;
	/*
	scroll-behavior: smooth;

	-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;
	font-family: 'Heebo', Arial, sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.25;
}
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.5em auto;
}
h1 {
	font-size: 3.6em;
}
h2 {
	font-size: 3.2em;
}
h3 {
	font-size: 2.4em;
}
h4 {
	font-size: 1.2em;
}
h5 {	
	font-size: 1em;
}
p:not(:last-child),
ul:not(:last-child),
ol:not(:last-child),
table:not(:last-child) {
    margin-bottom: 1em;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
figure {
	overflow: hidden;
	line-height: 0;
} 
figure > img {
	max-width: 100%;
	height: auto;
}
b,
strong {
	font-weight: 700;
}
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 : 1200px) {
	body {
		font-size: 18px;
	}
}

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

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