/* fonts */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 300;
  src: local("Montserrat Light"), local("Montserrat-Light"), url("fonts/Montserrat-Light.woff") format("woff"); }
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  src: local("Montserrat Regular"), local("Montserrat-Regular"), url("fonts/Montserrat-Regular.woff") format("woff"); }
@font-face {
  font-family: 'Montserrat';
  font-style: italic;
  font-weight: 400;
  src: local("Montserrat Medium Italic"), local("Montserrat-MediumItalic"), url("fonts/Montserrat-Regular.ttf") format("truetype"); }
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  src: local("Montserrat Bold"), local("Montserrat-Bold"), url("fonts/Montserrat-Bold.woff") format("woff"); }
@font-face {
  font-family: 'Montserrat';
  font-style: italic;
  font-weight: 900;
  src: local("Montserrat Black"), local("Montserrat-Black"), url("fonts/Montserrat-Black.woff") format("woff"); }
/* colors */
/* fonts */
/* breakpoints */
html {
  box-sizing: border-box;
  font-size: 100%;
  height: 100%;
  min-height: 100%;
  scroll-behavior: smooth;
  vertical-align: baseline; }

*,
*::before,
*::after {
  box-sizing: inherit; }

body {
  background: white;
  color: black;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  height: 100%;
  line-height: 1.4;
  margin: 0;
  min-height: 100%;
  padding: 0; }

article,
header,
section {
  display: block; }

a {
  background-color: transparent;
  border-bottom: 2px solid #969696;
  color: black;
  text-decoration: none; }
  a:hover {
    border-bottom: 2px solid black; }

img {
  border-style: none;
  display: inline-block;
  height: auto;
  max-width: 100%;
  vertical-align: middle; }

h1,
h2,
h3,
h4 {
  color: black;
  font-family: "Montserrat", sans-serif; }

h1 {
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
  margin: 2rem 0 0; }
  @media (min-width: 48em) {
    h1 {
      font-size: 3.8rem;
      margin: 2rem auto 0;
      min-width: none; } }
  @media (min-width: 80em) {
    h1 {
      font-size: 4.5rem; } }

h2 {
  font-size: 2  rem;
  color: black;
  line-height: 1.25;
  margin: 0 auto; }
  @media (min-width: 48em) {
    h2 {
      font-size: 2.4rem;
      padding: 0; } }

h3 {
  color: black;
  line-height: 1.25;
  margin: 0;
  padding: 0; }
  @media (min-width: 48em) {
    h3 {
      font-size: 1.8rem;
      padding: 0; } }

h4 {
  color: black;
  font-size: 1.6rem;
  line-height: 1.25;
  padding: 1.4rem 0; }

p {
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  line-height: 1.4;
  margin-bottom: 1rem;
  padding: 0;
  position: relative; }
  @media screen and (max-width: 23em) {
    p {
      font-size: 15px;
      margin: 0 4% 1rem; } }
  @media screen and (max-width: 48em) {
    p {
      font-size: 15px; } }

ul {
  margin: 0 0 1rem 2rem; }
  ul li {
    line-height: 1.4;
    margin-bottom: 0.5rem; }
    ul li ul {
      margin: 0.5rem 0 1rem 1.3rem; }

ol {
  list-style-type: decimal;
  margin: 0;
  margin-left: 3rem;
  padding: 0 0 2rem; }
  ol li {
    margin-bottom: 1rem;
    padding: 0.2rem 0 0 0.5rem;
    position: relative; }

blockquote {
  border-left: 0.7rem solid #595959;
  margin-bottom: 2.3rem;
  padding-left: 2rem;
  padding-right: 3rem; }

pre {
  background-color: #c9c9c9;
  margin-bottom: 0.5rem;
  padding: 0 0.5rem 0.5rem; }

code {
  display: inline-block;
  font-size: 1.1rem;
  max-width: 100%;
  white-space: normal;
  word-break: break-all; }

.centered {
  margin: 0 auto; }

.visually-hidden {
  clip: rect(1px 1px 1px 1px);
  /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute !important;
  width: 1px; }

.no-scroll {
  height: 100%;
  margin: 0;
  overflow: hidden; }

.container {
  margin: 0 auto;
  max-width: 1024px;
  padding: 2%;
  width: 100%; }
  @media (min-width: 23em) {
    .container {
      min-width: 300px; } }
  @media screen and (min-width: 48em) {
    .container {
      padding: 1rem 0 0;
      width: 750px; } }
  @media screen and (min-width: 66em) {
    .container {
      width: 800px; } }

.griddy {
  display: grid;
  grid-column-gap: 10%;
  grid-row-gap: 2rem;
  grid-template-columns: 35% 65%;
  grid-template-rows: auto;
  margin-top: 2rem;
  width: 100%; }

.flex-parent {
  align-items: flex-start;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  margin: 0;
  padding: 0;
  width: 100%; }
  @media screen and (max-width: 48em) {
    .flex-parent {
      flex-direction: column; } }

.flex-child {
  height: auto;
  margin: 0;
  text-align: left;
  width: 50%; }
  @media screen and (max-width: 34em) {
    .flex-child {
      width: 100%; } }
  .flex-child:nth-child(1) {
    padding-right: 1rem; }
  .flex-child:nth-child(2) {
    padding-left: 1rem; }

.page-wrapper {
  margin: 0 auto;
  width: 100%; }
  .page-wrapper header {
    background: #c9c9c9; }
  .page-wrapper .main-content .intro {
    float: left;
    margin: 0 auto; }
  .page-wrapper .main-content .bg-color1 {
    background-color: #d9e9ee;
    border-bottom: 4px solid #9dadb3; }
  .page-wrapper .main-content .bg-color2 {
    background-color: white;
    border-bottom: 4px solid #9dadb3; }
  .page-wrapper .main-content .all-elements {
    margin-bottom: 2rem; }
  .page-wrapper .main-content .element {
    padding: 2rem 1rem; }
    @media (min-width: 48em) {
      .page-wrapper .main-content .element {
        padding: 1rem 1rem 2rem 0.75rem; } }
  .page-wrapper .main-content .date {
    font-size: 12.8px;
    margin: 0;
    padding: 0; }
  .page-wrapper .main-content .source {
    font-size: 12.8px;
    font-weight: bold; }
  .page-wrapper .top {
    background-color: white;
    bottom: 0.5rem;
    color: black;
    position: fixed;
    right: 0;
    text-align: center; }
    .page-wrapper .top a {
      border: 0;
      color: black;
      font-size: 0.8rem;
      text-decoration: none; }

footer {
  background: black;
  clear: both;
  color: #c9c9c9;
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0 1rem;
  text-transform: uppercase;
  width: 100%; }
  @media screen and (min-width: 48em) {
    footer {
      font-size: 1.1rem;
      padding: 0; } }
  footer .footer-wrapper {
    padding: 2rem 0; }
    footer .footer-wrapper a {
      border: 0;
      color: #c9c9c9; }
      footer .footer-wrapper a:hover {
        border-bottom: 2px solid white;
        color: white; }
  footer .griddy {
    grid-column-gap: 1%;
    grid-template-columns: 25% 25% 25% 25%; }
  footer .footer-logo {
    margin: 0;
    width: 100%; }
    footer .footer-logo a,
    footer .footer-logo a:hover {
      border: 0; }
    footer .footer-logo img {
      height: 90px; }

body {
  margin-top: 30px; }
  @media screen and (min-width: 48em) {
    body {
      margin-top: 90px; } }

.bar {
  background: black;
  color: white;
  display: block;
  font-size: 12.8px;
  height: 30px;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 11; }
  .bar .container {
    padding: 0; }
  .bar img {
    margin-left: 0.5rem;
    padding-top: 5px;
    width: 80px; }
    @media screen and (min-width: 48em) {
      .bar img {
        margin-left: 0; } }

header {
  background-color: white;
  width: 100%; }
  header img {
    display: block;
    margin: 0 auto;
    max-width: 1024px;
    width: 100%; }

section.accordion {
  margin-bottom: 0; }

details {
  position: relative; }

details > summary:focus {
  outline: none; }

details > summary::-webkit-details-marker {
  display: block;
  position: absolute;
  left: 9999px; }

details > summary {
  font-size: 1.1rem;
  font-weight: bold;
  line-height: 1.25;
  list-style: none;
  margin: 0;
  padding: 0 0.7rem 0 0; }
  @media (min-width: 48em) {
    details > summary {
      font-size: 1.3rem; } }

details > summary::after {
  content: "";
  display: inline-block;
  border: solid 6px black;
  border-left-color: transparent;
  border-bottom-color: transparent;
  position: absolute;
  top: 100%;
  right: 0.5rem;
  transition: transform 0.2s;
  transform: rotate(-45deg) translate(-20%, 20%); }
  @media (min-width: 48em) {
    details > summary::after {
      height: 0;
      width: 0; } }

details[open] > summary::after {
  transform: rotate(135deg) translate(-20%, 20%); }

details > summary.hide-arrow::after {
  display: block;
  position: absolute;
  left: 9999px; }

section.accordion {
  position: relative;
  width: 100%; }

details > * {
  width: 100%; }

/*# sourceMappingURL=style.css.map */
