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;
}
article, aside, details, figcaption, figure, hgroup, menu, nav, section {
	display: block;
}
p{
	padding: 0.2rem
}
*{
    box-sizing: border-box;
}
body {
	line-height: 1;  
	background: #ffffff;
	color: #3a3a3a;
}
h1{
	font-size: 2.5rem
}
h3{
  font-size: 1rem;
}
h2{
  font-size: 2rem;
}
html, body{
    scroll-behavior: smooth; 
    background:#fafafa;
	
}
body, html{
  width: 100%;
  height: 100%;
  font-family: 'Syne', sans-serif;
}

body, main{
	display: flex;
  	flex-direction: column;
    flex: 1;
}
ol, ul, li{
	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;
}

li{
    list-style: none;
}
a {
    text-decoration: none;
	font-size: 1.25rem
}
table tbody .material-icons {
    display: block;
}

.flex{ display: flex;}
.flex-1{ display:flex; flex: 1;}
.flex-2{display:flex; flex: 2;}
.flex-3{display:flex; flex: 3;}
.flex-4{display:flex; flex: 4;}
.flex-5{display:flex; flex: 5;}
.flex-6{display:flex; flex: 6;}
.flexRow{display:flex; flex-direction: row;}
.flexColumn{display:flex; flex-direction: column;}
.flex-flow-row{display:flex; flex-flow: row wrap;}
.flex-flow-column{ display:flex; flex-flow:column wrap;}
.flexWrap{
    flex-wrap: wrap;
}
.hidden{display: none!important;}

.txt-small{
    text-transform: uppercase;
    font-weight: 300;
    font-size: 0.8rem;
    font-style: normal;
}
fieldset{border: none;margin: 0;padding: 0;}
fieldset label {
    width: 100%;
    margin: 1rem 0;
}
fieldset select {
    width: 100%;
    
}
legend{
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  font-weight: 400;
  
}

input{
  border: 0 none;
  outline: 0;
  background: #5e5e5e96;
  color: #def2fe;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 0.2rem 0.5rem;
  padding: 0.5rem 0.5rem;
  }
input[type=checkbox]{
  width: 12px !important;
  padding: 0;
}

@media all and (min-width:640px){
	.only-mobile {
		display: none !important;
	}
}