* {
  outline: none;
  -webkit-tap-highlight-color: transparent !important;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  font-variant-ligatures: none;
  box-sizing: border-box;
}

html {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  /* overscroll-behavior: none; */
  font-family: "DM Sans", sans-serif;
  overflow-x: hidden;
}

body {
  overflow: auto;
  margin: 0;
  padding: 0;
  line-height: 1;
  background-color: var(--accent_100);
  color: var(--dark);
  overflow-x: hidden;
  font-size: var(--body-text);
}

main {
  padding-top: 72px;
  /* background-color: var(--accent_100); */
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

a:active {
  outline: none;
  border: none;
}

.dm-sans {
  font-family: "DM Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.climate {
  /* font-family: "Climate Crisis", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "YEAR" 1979;
  text-transform: uppercase;
 */


  font-family: "League Gothic", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;

}

.title {
  font-size: var(--big-text);
  line-height: 1;
}

.headline {
  font-size: var(--large-text);
  font-weight: 300;
  line-height: 1;
}

.subheadline {
    font-size: var(--subheadline-text);
    font-weight: 300;
    line-height: 1;
}

.subtitle {
  font-size: var(--medium-text);
}

.paragraph {
  font-size: var(--body-text);
  font-weight: 500;
  line-height: 1.2;
}

.eyebrown {
  font-size: var(--small-text);
}

.text-highlight {
  color: var(--primary);
}

ol {
  margin: 0;
}

/* cta */
.btn-primary {
  align-items: center;
  border-radius: 8px;
  background-color: var(--light);
  color: var(--dark);
  display: inline-flex;
  font-size: var(--small-text);
  font-weight: 500;
  letter-spacing: -0.25px;
  margin: 0;
  padding: 0.85rem 1rem;
  position: relative;
  text-decoration: none;
  transition: all 0.4s ease-in-out;
}

.btn-primary:hover {
  color: var(--dark);
  background-color: var(--accent_50);
  transition: all 0.4s ease-in-out;
}

.btn-secondary {
  align-items: center;
  border-radius: 8px;
  background-color: var(--accent_100);
  color: var(--dark);
  display: inline-flex;
  font-size: var(--small-text);
  font-weight: 500;
  letter-spacing: -0.25px;
  margin: 0;
  padding: 0.85rem 1rem;
  position: relative;
  text-decoration: none;
  transition: all 0.4s ease-in-out;
}

.btn-secondary:hover {
  color: var(--dark);
  background-color: var(--accent_50);
  transition: all 0.4s ease-in-out;
}

.btn-tiertiary {
  align-items: center;
  border-radius: 8px;
  background-color: var(--accent_50);
  color: var(--dark);
  display: inline-flex;
  font-size: var(--small-text);
  font-weight: 500;
  letter-spacing: -0.25px;
  margin: 0;
  padding: 0.85rem 1rem;
  position: relative;
  text-decoration: none;
  transition: all 0.4s ease-in-out;
}

.btn-tiertiary:hover {
  color: var(--dark);
  background-color: var(--light);
  transition: all 0.4s ease-in-out;
}

.underline {
  text-decoration: underline;
  transition: all 0.3s ease-in-out;
  font-size: var(--small-text);
}

.underline:hover {
  opacity: 0.6;
  transition: all 0.4s ease-in-out;
}

.linkation{
    transition: all 0.4s ease-in-out;
}

.linkation:hover {
  opacity: 0.8;
  transition: all 0.4s ease-in-out;
}


.space-break {
  padding: 0.75rem 0;
}


@media screen and (min-width: 1600px) {
  .container-max{
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
  }

  .container-max-xl{
    max-width: 2000px;
    margin-left: auto;
    margin-right: auto;
  }
}
