/**
 * @file
 * Global rules
 *
 * Theme global rules.
 */


html {
  height: 100%;
  font-size: 16px;
  font-size: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  line-height: 1.5;
}
@media (min-width: 700px) {
  html {
    font-size: 18px;
  }
}
html, body {
  position: relative;
  font-family: "Nunito", sans-serif;
  color: #000000;
}
body {
  overflow-x: hidden;
}
body * {
  box-sizing: border-box;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  width: 100%;
}
p, h1, h2, h3 {
  position: relative;
}
p {
  color: #000;
}
footer p {
  color: white;
  font-size: 16px;
}
::selection {
  background-color: var(--primary);
  color: #fff;
}
a:focus, button:focus, div:focus, input:focus {
  outline: none;
}
h2 {
  font-weight: 700;
  color: #000;
}
h1, h1 > a {
  font-weight: 700;
  color: #1A1C1E;
}
h1 {
  margin: 0;
}
.h2-stylized {
  display: flex;
  gap: 0.625rem;
  color: var(--secondary);
  align-items: center;
}
.h2-stylized::before {
  content: '';
  background-image: url('../images/icons/bullet-primary.svg');
  width: 10px;
  height: 10px;
  background-repeat: no-repeat;
}


/**
 * Size
 */

h1 {
  font-size: var(--title-xl);
}
h2 {
  font-size: var(--title-l);
}
h3 {
  font-size: var(--title-m);
  color: var(--primary);
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}
h4 {
  font-size: var(--title-s);
}



/**
 * Links
 */
a {
  color: var(--primary);
  text-decoration: none;
}
a:hover{
  text-decoration: underline;
}

/**
*  Breadcrumb
**/
.breadcrumb, .breadcrumb a {
  color: white;
  font-size: var(--text-m);
  font-weight: 400;
  margin-top: 1rem;
}
.breadcrumb a:hover {
  text-decoration: underline;
}
