/**
 * Generic elements.
 */
html * {
  box-sizing: border-box;
}

body {
  color: #060606;
  background: #fff;
  font-family:roboto, sans-serif;
  font-weight: 400;
  font-size: 112.5%;
  line-height: 1.4;
}
@media (min-width: 768px) {
  body {
    font-size: 125%;
  }
}
a,
.link {
  text-decoration: none;
  color: #019de0;
}
a:hover,
.link:hover,
a:focus,
.link:focus {
  color: #6f2be4;
  outline: 0;
}
hr {
  height: 2px;
  margin: 1em 0;
  padding: 0;
  border: none;
  background: #e7e3e0;
}
summary,
.fieldgroup:not(.form-composite) > legend {
  text-transform: uppercase;
  font-weight: bold;
}
.simpletest-results-form summary {
  text-transform: none;
}

/**
 * Reusable heading classes are included to help modules change the styling of
 * headings on a page without affecting accessibility.
 */
h1,
.heading-a {
  margin: 0 0 14px 0;
  font-family: mrs-eaves-xl-serif, serif;
  font-weight: 700;
  font-size: 2.5em;
  line-height: 1;
}
h2,
.heading-b {
  margin: 0 0 28px 0;
  font-size: 2.1em;
  line-height: 1.14286;
  font-weight: 300;
}
h3,
.heading-c {
  margin: 0 0 20px 0;
  font-family: mrs-eaves-xl-serif;
  font-size: 1.15em;
  line-height: 1.25;
  font-weight: 800;
}
  h3 a {
    color: #060606;
  }
  h3 a:hover,
  h3 a:focus {
    color: #019ddf;
  }
h4,
.heading-d {
  margin: 0 0 8px 0;
  font-family: mrs-eaves-xl-serif;
  font-size: 1em;
  line-height: 1;
  font-weight: 800;
}
h5,
.heading-e {
  margin: 0;
  font-size: 1.077em;
  font-weight: bold;
}
h6,
.heading-f {
  margin: 0;
  font-size: 1.077em;
  font-weight: bold;
}
p {
  margin: 0 0 1.5em 0;
}
p:last-child {
  margin-bottom: 0;
}
dl {
  margin: 0 0 20px;
}
dl dd,
dl dl {
  margin-bottom: 10px;
  margin-left: 20px; /* LTR */
}
[dir="rtl"] dl dd,
[dir="rtl"] dl dl {
  margin-right: 20px;
}
blockquote {
  margin: 0 0 1.5em 0;
  padding-left: 28px;
  border-left: 5px #019de0 solid;
}
address {
  font-style: italic;
}
u,
ins {
  text-decoration: underline;
}
s,
strike,
del {
  text-decoration: line-through;
}
big {
  font-size: larger;
}
small {
  font-size: smaller;
}
abbr,
acronym {
  border-bottom: dotted 1px;
}
ul {
  margin: 0 0 1.5em 1em; /* LTR */
  padding-left: 1em;
  list-style-type: disc;
  list-style-image: none;
}
[dir="rtl"] ul {
  margin-right: 1em;
  margin-left: 0;
  padding-right: 1em;
}
/* This is required to win over specificity of [dir="rtl"] ul */
[dir="rtl"] .messages__list {
  margin-right: 0;
}
ol {
  margin: 0 0 1.5em 1.5em; /* LTR */
  padding: 0;
  list-style-type: decimal;
}
[dir="rtl"] ol {
  margin-right: 1.5em;
  margin-left: 0;
}
code {
  margin: 0 0 1.5em 0;
}
pre {
  margin: 0 0 1.5em 0;
  white-space: pre-wrap;
}
details {
  line-height: 1.295em;
}
details summary {
  padding: 0.95em 1.45em;
}
details summary:focus {
  outline: none;
}
/**
 * Unfortunately, text-decoration for details summary is not supported on all
 * browsers. So we add a span (which can handle text-decoration) in Seven's
 * templates/details.html.twig. In case there are other details templates that
 * don't have the span, we provide text-decoration in the parent selector.
 * This provides maximum compatibility and coverage with minimal disruption.
 */
details summary:not(.nastad-details__summary):focus {
  text-decoration: underline;
}
details summary:focus span {
  text-decoration: underline;
}
iframe {
  border: 0;
}
img {
  max-width: 100%;
  height: auto;
}

picture img {
  display: block;
}
