@font-face {
  font-family: Hind;
  src: url('/fonts/Hind-Bold.woff2');
}

@font-face {
  font-family: OpenSans;
  src: url('/fonts/OpenSans-Regular.woff2');
}

@font-face {
  font-family: OpenSans;
  src: url('/fonts/OpenSans-Bold.woff2');
  font-weight: 700;
}

:root {
  --spacing-unit: 0.5rem;
  --default-radius: 4px;

  --heading-font-family: Hind, sans-serif;
  --body-font-family: OpenSans, sans-serif;

  --color-white: #ffffff;
  --color-black: #000000;
  --color-shark: #2a2a2e;
  --color-pampas: #f1ede7;
  --color-pelorous: #469ac2;
  --color-jelly-bean: #23688c;

  --color-alizarin-crimson: #d81c23;

  --body-text-color: var(--color-shark);
}

/* 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: inherit;
  font-size: 100%;
  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;
}

.heading-1 {
  font-family: var(--heading-font-family);
  font-size: clamp(
    56px,
    calc(2rem + (72 - 56) * ((100vw - 375px) / (1512 - 375))),
    72px
  );
  line-height: 1.11;
  text-transform: uppercase;
  color: var(--color-jelly-bean);
}

.heading-2 {
  font-family: var(--heading-font-family);
  font-size: clamp(
    40px,
    calc(1.5rem + (56 - 40) * ((100vw - 375px) / (1512 - 375))),
    56px
  );
  line-height: 1.14;
  text-transform: uppercase;
  color: var(--color-jelly-bean);
}

.heading-3 {
  font-family: var(--heading-font-family);
  font-size: clamp(
    32px,
    calc(1.5rem + (40 - 32) * ((100vw - 375px) / (1512 - 375))),
    40px
  );
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--color-jelly-bean);
}

.heading-4 {
  font-family: var(--heading-font-family);
  font-size: 32px;
  line-height: 1.25;
  text-transform: uppercase;
  color: var(--color-jelly-bean);
}

.heading-5 {
  font-family: var(--heading-font-family);
  font-size: 24px;
  line-height: 1.33;
  text-transform: uppercase;
  color: var(--color-jelly-bean);
}

.body-text-l {
  font-size: 18px;
  line-height: 1.33;
  color: var(--color-shark);
  max-width: 999px;
}

.body-text {
  font-size: 16px;
  line-height: 1.78;
  color: var(--color-shark);
  max-width: 999px;
}

.body-text-s {
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-shark);
  max-width: 999px;
}

.highlight {
  color: var(--color-pelorous);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  font-display: swap;
}

html,
body {
  color: var(--body-text-color);
  background-color: var(--color-pampas);
  font-family: var(--body-font-family);
  font-weight: 500;
  margin: 0;
  padding: 0;
  overflow-x: clip;
  font-size: 16px;
  line-height: 1.78;
  color: var(--color-shark);
}

a {
  color: var(--color-pelorous);
}
@media (hover: hover) {
  a:hover {
    text-decoration: none;
  }
}

strong,
b {
  font-weight: 700;
}

i {
  font-style: italic;
}

p {
  margin-bottom: calc(var(--spacing-unit) * 3);
  max-width: 999px;
}
p:last-child {
  margin-bottom: 0;
}
