/* reset */

*{
    margin:0;
    padding:0;
    font-family: var(--mc-font-body);
}


/* Headings */

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6{
  font-family: var(--mc-font-headings), sans-serif;
}

section,
section.section{
    padding:1rem;
}

section.section .section__inner-content{
    padding: 2rem;
    background: var(--mc-color-white);
}

section.section .section__inner-content--floating{
    position:relative;
    margin-top: -4rem;
    z-index:2;
    border: var(--mc-color-gray--light);
    border-radius: 0.25rem;
    box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.125);
}
@media (max-width:768px){
  section,
  section.section{
      padding:1rem 0;
  }
  section.section .section__inner-content--floating{
     margin-top: 2rem;
  }
  section.section .section__inner-content--floating:first-of-type{
     margin-top: 0;
  }
}