/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
* {
  margin: 0;
  padding: 0;
}

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;
}

/* 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;
}

/**
* 	CSS VARIABLES
**/

:root {
  --primary-color: #3f75ff;
  --secondary-color: #303030;
  --font-family: "Open Sans", sans-serif;
  --white-10: rgba(217, 217, 217, 0.1);
  --white-20: rgba(217, 217, 217, 0.2);

  /* Grays
	*/
  --gray-50: #f5f5f5;
  --gray-100: #d6d6d6;
  --gray-200: #bdbdbd;
  --gray-300: #a4a4a4;
  --gray-400: #8c8c8c;
  --gray-500: #757575;
  --gray-800: #343434;
  --gray-900: #212121;
}

/**
* 	FONT STYLING
**/

html * {
  font-size: 16px;
  line-height: 1.625;
  color: var(--secondary-color);
  font-family: "Open Sans", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--secondary-color);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
}

h1 {
  font-size: 72px;
  font-weight: 500;
  line-height: normal !important;
}

h2 {
  font-size: 56px;
  font-weight: 500;
  line-height: 1.1618;
  margin-bottom: 24px;
}

h3 {
  color: var(--gray-900);
  font-size: 32px;
  font-weight: 700;
}

h6 {
  font-size: 24px;
  letter-spacing: 1.2px;
  font-weight: 700;
}

@media only screen and (max-width: 600px) {
  h1 {
    font-size: 36px;
    font-weight: 500;
    line-height: normal;
  }

  h2 {
    font-size: 36px;
    font-size: 32px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.48px;
  }

  h3 {
    font-size: 24px;
  }
}

p {
  color: var(--gray-500);
  font-family: Open Sans;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 175% */
  letter-spacing: 0.8px;
}

/**
* 	SECTION STYLING
**/

section {
  margin: 0 16px;
}
section > div {
  margin: 0 auto;
  max-width: 1280px;
  box-sizing: border-box;
}

/**
* 	LINKS STYLING
**/

a,
.news-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
}

a.button {
  border-radius: 44px;
  padding: 8px 32px;
}

a.button.primary {
  background: var(--blue, #3f75ff);
  color: white;
}
a.button.secondary {
  background: none;
  color: var(--gray-800);
  border: 1px solid var(--gray-800);
}

.tooltiped {
  text-decoration: underline;
}

/*
  styles for undefined custom web components
*/

my-navbar:not(:defined) {
  visibility: hidden;
}
