/* CORE */
* {
  box-sizing: border-box;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased; 
  -webkit-tap-highlight-color: transparent;
  list-style: none; 
  padding: 0;
  margin: 0;
  border-collapse: inherit }

*:focus {
  outline: none }


/* Z-INDEX */
.logo-wrapper { z-index: 1 }
header { z-index: 2 }


/* COLOR CODING  */
:root {
  --primary: #24588d;
  --secondary: #4aa851;
  --dark: #222428 }


html, body {
  position: relative;
  width: 100vw;
  height: auto;
  min-height: 100vh;
  font-family: "minion-pro", serif;
  font-size: 14px;
  line-height: 18px;
  opacity: 1  }

  @media (min-width:1081px) { html, body { font-size: 16px; line-height: 20px }}

html {
  scroll-behavior: initial }

body {
  text-rendering: optimizeSpeed;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  scroll-behavior: smooth;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
  margin: 0 auto }


/* TYPOGRAPHY 

Minion Pro Regular
font-family: "minion-pro", serif;
font-weight: 400 / 700;
font-style: normal / italic;

Minion Pro Caption
font-family: "minion-pro-caption", serif;
font-weight: 400 / 700;
font-style: normal / italic;

Minion Pro Display
font-family: "minion-pro-display", serif;
font-weight: 400 / 700;
font-style: normal / italic;

Minion Pro Subhead
font-family: "minion-pro-subhead", serif;
font-weight: 400 / 700;
font-style: normal / italic;

Minion Std Black
font-family: "minion-std-black", serif;
font-weight: 400 / 700;
font-style: normal / italic;

Minion Pro Cond
font-family: "minion-pro-condensed", serif;
font-weight: 400 / 700;
font-style: normal / italic;

Minion Pro Cond Caption
font-family: "minion-pro-condensed-caption", serif;
font-weight: 400 / 700;
font-style: normal / italic;

Minion Pro Cond Display
font-family: "minion-pro-condensed-display", serif;
font-weight: 400 / 700;
font-style: normal / italic;

Minion Pro Cond Subhead
font-family: "minion-pro-condensed-subhead", serif;
font-weight: 400 / 700;
font-style: normal / italic;

*/


p {
  font-family: "minion-pro", serif;
  font-size: 14px;
  line-height: 20px;
  
  font-weight: 400 /* range: 300 to 800 */ }

  @media (min-width:581px) { p { font-size: 13px; line-height: 18px }}
  @media (min-width:1081px) { p { font-size: 16px; line-height: 22px }}

h1, h2, h3, h4, h5, h6 { 
  font-family: "minion-pro", serif;
  font-weight: 400 }

a {
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: all 0.45s 0s ease-out;
  -moz-transition: all 0.45s 0s ease-out;
  -o-transition: all 0.45s 0s ease-out;
  -ms-transition: all 0.45s 0s ease-out;
  transition: all 0.45s 0s ease-out }