/*---Base----*/
:root {
  --m-bg: rgb(255, 255, 255);
  --m-text: rgb(0, 0, 0);
  --font-main: "NeueHaasDisplayRoman", sans-serif;
  --font-sec: "Neue Haas Grotesk Display Pro", sans-serif;
  --link-color: #1b68c5;
}

body {
  background-color: var(--m-bg);
  color: var(--m-text);
}

html * {
  font-family: var(--font-main);
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-sec);
  font-weight: bold;
}

.font-main {
  font-family: var(--font-main);
}

.font-sec {
  font-family: var(--font-sec);
}

a {
  color: var(--link-color);
  text-decoration: underline;
  transition: all ease-out 0.2s;
}

a:hover,
a:focus {
  color: var(--m-text);
}

html {
  scroll-behavior: smooth;
}

img[data-lazyloaded]{
  opacity: 0;
}

img.litespeed-loaded{
  -webkit-transition: opacity .3s ease-out;
  -moz-transition: opacity .3s ease-out;
  transition: opacity .3s ease-out;
  opacity: 1;
}

@media (prefers-reduced-motion) {
  html {
    scroll-behavior: auto;
  }
}

table {
  word-break: break-word;
}

@media only screen and (max-width: 400px) {
  body {
    word-break: break-word;
  }
}

@media only screen and (max-width: 320px) {
  body {
    word-break: break-all;
  }
}
