/****************************************/
/* CUSTOM FONTS
/****************************************/
/*
@font-face {
    font-family: 'MikhmoretRoundedDL';
    src: url('../fonts/mikhmoret_rounded_dl_1.1_aaa_bold-webfont.woff2') format('woff2'),
         url('../fonts/mikhmoret_rounded_dl_1.1_aaa_bold-webfont.woff') format('woff'),
         url('../fonts/mikhmoret_rounded_dl_1.1_aaa_bold-webfont.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}
@font-face {
    font-family: 'MikhmoretRoundedDL';
    src: url('../fonts/mikhmoret_rounded_dl_1.1_aaa_light-webfont.woff2') format('woff2'),
         url('../fonts/mikhmoret_rounded_dl_1.1_aaa_light-webfont.woff') format('woff'),
         url('../fonts/mikhmoret_rounded_dl_1.1_aaa_light-webfont.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;

}
@font-face {
    font-family: 'MikhmoretRoundedDL';
    src: url('../fonts/mikhmoret_rounded_dl_1.1_aaa_regular-webfont.woff2') format('woff2'),
         url('../fonts/mikhmoret_rounded_dl_1.1_aaa_regular-webfont.woff') format('woff'),
         url('../fonts/mikhmoret_rounded_dl_1.1_aaa_regular-webfont.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
*/




/****************************************/
/* CSS VARIABLES
/****************************************/
:root {
	
	/* Colors */
	--white-color: #fff;
	--lighter-color: #ebe8e7;
	--light-color: #ebe8e7;
	--grey-color: #282828;
	--dark-color: #203940;
	--darker-color: #202933;
	--black-color: #000;

	--hot-color: #f0980c;
	--warm-color: #fcd455;
	--cool-color: #61bde9;
	--cold-color: #76c6c3;
		
	--primary-color: #207b76;
	--secondary-color: #76c6c3;
	--fancy-color: #91624d;
	
	--main-color: #1d1e3e;
	--link-color: #207b76;
	--link-hover-color: #91624d;
	/***/
	
	
	/* Fonts */
	--heebo-font: 'Heebo';
	/***/
	
	
	/* Paddings */
	--gutter-width: 15px;
	/***/

}





/****************************************/
/* 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: 17px;
	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: 1em auto 0.66em auto;
	line-height: 0.8;
}
h1 {
	font-size: 3.6666em;
}
h2 {
	font-size: 2.85em;
}
h3 {
	font-size: 1.66em;
}
h4 {
	font-size: 1.6666em;
}
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: 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: 17px;
	}
}

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





/****************************************/
/* RESPONSIVE - SIZES	 				
/****************************************/

@media only screen and (max-width : 479px) {	/* xxs */
}
@media only screen and (min-width : 480px) {	/* xs */
}
@media only screen and (min-width : 768px) {	/* sm */
}
@media only screen and (min-width : 992px) {	/* md */
}
@media only screen and (min-width : 1200px) {	/* lg */
}
@media only screen and (min-width : 1600px) {	/* xl */
}
@media only screen and (min-width : 1921px) {	/* xxl */
}
/*************************************************************************/
