/* UPDATED 20200914 */

/* PHONE SPECIFIC */

/* GENERAL STYLES */

@font-face {
  font-family: 'Milton Grotesque';
  src: url('/fonts/MiltonGrotesque.woff2') format('woff2'),
       url('/fonts/MiltonGrotesque.woff') format('woff');
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {

  --color-white: rgba(100%, 100%, 100%, 1);
  --color-main-light: rgba(98%, 98%, 98%, 1);
  --color-midbg-light: rgba(85%, 88%, 89%, 1);
  --color-midfg-light: rgba(11%, 27%, 34%, 1);
  --color-contrast-light: rgba(17%, 55%, 74%, 1);
  --color-error-light: rgba(58%, 15%, 4%, 1);
  --color-success-light: rgba(20%, 59%, 14%, 1);
  --color-disabled-light: rgba(64%, 60%, 38%, 1);
  --color-action-plus2-light: rgba(63%, 68%, 20%, 1);
  --color-action-plus1-light: rgba(37%, 59%, 7%, 1);
  --color-action-light: rgba(20%, 59%, 14%, 1);
  --color-action-minus1-light: rgba(11%, 36%, 4%, 1);
  --color-action-minus2-light: rgba(6%, 18%, 2%, 1);
  --color-main-dark: rgba(6%, 28%, 75%, 1);
  --color-midbg-dark: rgba(11%, 27%, 34%, 1);
  --color-midfg-dark: rgba(85%, 88%, 89%, 1);
  --color-contrast-dark: rgba(99%, 99%, 100%, 1);
  --color-error-dark: rgba(58%, 15%, 4%, 1);
  --color-success-dark: rgba(20%, 59%, 14%, 1);
  --color-disabled-dark: rgba(64%, 60%, 38%, 1);
  --color-action-plus2-dark: rgba(63%, 68%, 20%, 1);
  --color-action-plus1-dark: rgba(37%, 59%, 7%, 1);
  --color-action-dark: rgba(20%, 59%, 14%, 1);
  --color-action-minus1-dark: rgba(11%, 36%, 4%, 1);
  --color-action-minus2-dark: rgba(6%, 18%, 2%, 1);
  --font-family-main: 'Darker Grotesque', sans-serif;
  --font-family-headers: 'Milton Grotesque', sans-serif;
  --font-family-alt: 'Darker Grotesque', sans-serif;
  --font-weight-light: 300;
  --font-weight-main: 600;
  --font-weight-heavy: 900;
  --font-size-xxl: 2.6rem;
  --font-size-xl: 1.6rem;
  --font-size-lg: 1.3rem;
  --font-size-m: 1.3rem;
  --font-size-sm: 0.8rem;
  --letter-spacing-loose: 1px;
  --letter-spacing-tight: -1px;
  --line-height-loose: 1.6;
  --line-height-moderate: 1.3;
  --line-height-tight: 1.1;
  --line-height-crushed: 0.8;
}

/* TYPOGRAPHY */

html {
  font-size: 100%;
}
body {
  font-family: var(--font-family-main);
  font-weight: var(--font-weight-main);
  color: var(--color-midfg-light);
  background-color: var(--color-white);
}
h1,
h2,
h3 {
  font-family: var(--font-family-headers);
  text-align: left;
  margin-bottom: 0.6em;
  color: var(--color-contrast-light);
  text-transform: uppercase;
}
header h1,
header h2,
header h3 {
  color: var(--color-white);
  margin-bottom: 0;
}
h1 {
  font-size: 2em;
  margin-top: 0;
}
h2 {
  font-size: 1.6em;
  letter-spacing: 1px;
}
h3 {
  font-size: var(--font-size-xl);
  letter-spacing: 1px;
}
p {
  font-size: var(--font-size-xl);
  line-height: var(--line-height-moderate);
  margin-bottom: 1.4em;
}
li {
  font-size: var(--font-size-xl);
  line-height: var(--line-height-tight);
  margin-bottom: 0.2em;
}
dl {
  font-size: var(--font-size-xl);
  margin-bottom: 1em;
}
dt {
  font-weight: var(--font-weight-heavy);
}
dd {
  font-weight: var(--font-weight-light);
}
dd p {
  line-height: var(--line-height-moderate);
  margin-bottom: 0;
  text-indent: 1em;
}
dl ol, dl ul {
  margin-top: 0.2rem;
  margin-bottom: 0.2rem;
}
dl li {
  line-height: var(--line-height-crushed);
  margin-bottom: 0;
  padding-bottom: 0;
}
.blurb {
  font-size: 1.6em;
  letter-spacing: 1px;
}
.upper {
  text-transform: uppercase;
}
.lightweight {
  font-weight: var(--font-weight-light);
  letter-spacing: 6px;
}
.heavyweight {
  font-weight: var(--font-weight-heavy);
  letter-spacing: 6px;
}

/* LINKS */

a {
  text-decoration: none;
  color: var(--color-action-light);
}
a:visited {
  color: var(--color-action-plus1-light);
}
a:focus, a:hover {
  background: var(--color-action-light);
  background: linear-gradient(
    0deg, 
    var(--color-white) 0%,
    var(--color-white) 30%,
    var(--color-midfg-dark) 35%, 
    var(--color-midfg-dark) 50%, 
    var(--color-white) 60%,
    var(--color-white) 100%)
    ;
}
a.currentpage {
  color: var(--color-error-dark);
}

/* TAGS */

strong,
em {
  font-weight: var(--font-weight-heavy);
  font-style: normal;
}
img {
  filter: contrast(1.1) brightness(1.1);
}

/* SEMANTICS */

body, section {
  background: var(--color-white);
}
header h1, header h2 {
  text-shadow: 2px 2px 2px rgba(0,0,0,0.2);
}
header {
  padding: 2vh 2vw;
  background: var(--color-white);
}
header img {
  display: none;
}
article, aside {
  background: var(--color-white);
  padding: 1em;
  border-radius: 1rem;
  margin-bottom: 1em;
}
aside {
  background: var(--color-white);
}
footer {
  text-align: center;
}
footer p {
  font-size: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-main-light);
}
ul, ol {
  margin: 0 0 2.6em 2.6em;
}
li {
  position: relative;
}
ul li {
  list-style-type: none;
}
ul li:before {
  content: "";
  position: absolute;
  top: 1px;
  left: -20px;
  width: 24px;
  height: 24px;
  background-image: url("/images/logo-list-bullet.png");
  background-size: 66%;
  background-repeat: no-repeat;
}
ol li:before, ul li ol li:before {
  content: '';
  background-image: none;
}
ol, ol li {
  list-style: lower-alpha outside;
}
ul ol, ol ul, ul ul, ol ol {
  margin-left: 1.6em;
}
ul ol li, ol ul li, ul ul li, ol ol li {
  font-size: var(--font-size-m);
  line-height: var(--line-height-crushed);
}
form {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  grid-template-rows: auto;
  gap: 0.6rem;
  margin-bottom: 2em;
}
figure {
  padding: 1px;
  border: 1px dotted rgba(1%, 1%, 1%, 0.3);
  background: rgba(90%, 90%, 90%, 0.1);
  margin: 0 auto 2em auto;
  border-radius: 1.95em;
  display: inline-block;
  max-width: 100%;
  height: auto;
}
figure img {
  border-radius: 2em;
  outline-offset: -8px;
  object-fit: contain;
  max-width: 100%;
  height: auto;
}
figcaption {
  text-align: center;
  text-transform: uppercase;
  font-size: 0.8em;
  font-weight: var(--font-weight-light);
  color: var(--color-error-dark);
  line-height: var(line-height-tight);
  margin-bottom: 0.4em;
  max-width: 100%;
}

/* NAV */
nav {
  text-align: center;
  background: var(--color-contrast-dark);
  border-radius: 1rem;
  margin: 1.6em 0;
}
nav ul {
  list-style-type: none;
  background-image: none;
  margin: 0;
}
nav ul li:before {
  content: '';
  list-style-type: none;
  background-image: none;
}
nav li {
  margin-bottom: 0;
}
nav li a {
  font-family: var(--font-family-alt);
  font-weight: var(--font-weight-main);
  text-transform: uppercase;
  font-size: var(--font-size-lg);
  /* letter-spacing: var(--letter-spacing-loose); */
  line-height: var(--line-height-tight);
  white-space: nowrap;
}

/* UTILITIES */

  .floatright {
    float: right;
    margin-left: 1em;
  }

  .tooltip {
    cursor: help;
    position: relative;
    color: var(--color-action-light);
    border-bottom: 1px dotted var(--color-action-light);
}
.tooltip::before,
.tooltip::after {
    left: 50%;
    opacity: 0;
    position: absolute;
    z-index: -100;
}
.tooltip:hover::before,
.tooltip:focus::before,
.tooltip:hover::after,
.tooltip:focus::after {
    opacity: 1;
    transform: scale(1) translateY(0);
    z-index: 100; 
}
.tooltip::before {
    border-style: solid;
    border-width: 1em 0.75em 0 0.75em;
    border-color: var(--color-contrast-light) transparent transparent transparent;
    bottom: 100%;
    content: "";
    margin-left: -0.5em;
    transition: all .65s cubic-bezier(.84,-0.18,.31,1.26), opacity .65s .5s;
    transform:  scale(.6) translateY(-90%);
} 
.tooltip:hover::before,
.tooltip:focus::before {
    transition: all .65s cubic-bezier(.84,-0.18,.31,1.26) .2s;
}
.tooltip::after {
    background: var(--color-contrast-light);
    border-radius: 1em;
    bottom: 180%;
    color: var(--color-main-light);
    content: attr(data-tip);
    margin-left: -8.75em;
    padding: 1em;
    transition: all .65s cubic-bezier(.84,-0.18,.31,1.26) .2s;
    transform:  scale(.6) translateY(50%);  
    width: 17.5em;
    font-size: 0.6em;
    font-weight: var(--font-weight-main);
    letter-spacing: 1px;
    line-height: var(--line-height-tight);
}
.tooltip:hover::after,
.tooltip:focus::after  {
    transition: all .65s cubic-bezier(.84,-0.18,.31,1.26);
}


/* SPECIALTY */

.headline a {
  color: inherit;
}
.headline h1 {
  margin: 0;
}
.logo {
  margin: 0 auto;
  text-align: center;
  transform: scale(0.50);
  position: absolute;
  top: -60px;
  right: -48px;
  filter: grayscale(1) brightness(2.3);
}
.container {
  padding: 5%;
}

.newsletter {
  padding-top: 2em;
  font-size: inherit;
  font-family: inherit;
}
.newsletter p {
  color: var(--color-contrast-light);
  font-size: var(--font-size-m);
  font-weight: var(--font-weight-light);
}

/* ANIMATION */

/* END OF PHONE SPECIFIC STYLES */




/*






















*/

/* MEDIA QUERIES */

@media (min-width: 400px) {
  
    .container {
    padding: 0;
    padding-top: 4vh;
    margin: 0 2vw;
    border-radius: 2em;
    background-color: var(--color-main-light);
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: auto;
    grid-template-areas:
      "logo         logo         logo     section1 section1 section1"
      "nav          nav          nav      article  article  article "
      "aside        aside        .        article  article  article "
      "socmed       socmed       .        article  article  article "
      "knowshowgrow knowshowgrow .        article  article  article "
      "featherleft  featherleft  .        article  article  article "
      ".            .            .        article  article  article "
      "footer       footer       footer   footer   footer   footer  ";
  }

  /* TYPOGRAPHY */

  body {
    font-weight: var(--font-weight-main);
}

  h1,
  h2,
  h3 {
    color: var(--color-contrast-light);
    text-align: left;
    line-height: var(--line-height-tight);
    font-weight: var(--font-weight-main);
  }
  header h1,
  header h2 {
    color: var(--color-white);
    line-height: var(--line-height-crushed);
  }
  h2,
  h3 {
    margin-bottom: 1rem;
  }
  h1 {
    font-size: calc(0.4rem + 3vw);
  }
  h2 {
    font-size: calc(0.4rem + 2vw);
  }
  h3 {
    font-size: calc(0.4rem + 1vw);
    letter-spacing: 1px;
  }
  article h2 {
    padding-right: 25%;
  }
  strong, em {
    font-weight: var(--font-weight-heavy);
  }
  .lightweight {
    font-weight: var(--font-weight-light);
  }
  .heavyweight {
    font-weight: var(--font-weight-heavy);
  }
  .tooltip::after {
    font-size: 1em;
  }
  
  /* LINKS */

  article li a {
    text-transform: none;
    letter-spacing: 1px;
  }

  a#start {
    width: 0;
    height: 0;
  }

  /* TAGS */

  /* SEMANTICS */

  header {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      grid-template-areas:
          " . title title . feather . "
          ;
      position: relative;
      }
      header h1 {
      font-size: calc(1rem + 3vw);
      letter-spacing: 0.1vw;
      }
      header h2 {
      font-size: calc(0.6rem + 1.4vw);
      letter-spacing: 0.1vw;
      }
      header img {
        display: inline-block;
      grid-area: feather;
      justify-self: end;
      position: absolute;
      bottom: -2vh;
      width: 200px;
      max-width: 25vw;
      height: auto;
        }
      .title {
      grid-area: title;
      }

    .home header {
      display: block;
    }

  .home header h1 {
    display: inline-block;
    font-size: calc(2.6rem + 2.6vw);
    letter-spacing: -0.5vw;
  }
  .home header h2 {
    font-size: calc(1.6rem + 1.6vw);
    letter-spacing: -0.3vw;
  }
  .home header img {
    float: right;
    margin: 0;
    width: 256px;
    max-width: 18vw;
    height: auto;
    position: absolute;
    bottom: 0;
    right: 2vw;
  }

  article {
    grid-area: article;
    }
  .section1 {
    grid-area: section1;
    column-count: 2;
    margin-top: 3vh;
    margin-bottom: 4vh;
    box-shadow: 1px 1px 2px rgba(16%, 16%, 16%, 0.3);
    padding: 1em;
    border-radius: 2em;
  }
  aside {
    grid-area: aside;
  }
  footer {
    grid-area: footer;
    text-align: right;
    padding: 2rem 0;
  }
  footer p {
    font-size: 0.7em;
    color: var(--color-main-dark);
  }
  button, input, select, textarea, label {
    font-family: inherit;
    font-size: 100%;
    padding: 0.3rem;
  }
  form {
    display: grid;
    grid-template-columns: fit-content(24ch) fit-content(24ch) 1fr;
    grid-template-rows: auto;
    gap: 0.6rem;
  }
  label {
    grid-column: 1 / 2;
  }
  input, select, textarea {
    grid-column: 2 / -1;
  }
  button {
    grid-column: 2 / -2;
    color: var(--color-main-light);
    background: var(--color-action-light);
  }
  ul li:before {
    content: "";
    position: absolute;
    top: 6px;
    left: -20px;
    width: 24px;
    height: 24px;
    background-image: url("/images/logo-list-bullet.png");
    background-size: 66%;
    background-repeat: no-repeat;
  }
  .contact figure {
    float: right;
    margin-left: 1em;
  }
  figcaption {
    letter-spacing: 2px;
    word-spacing: 4px;  
  }

  /* NAV */

  nav {
    background: transparent;
    display: inline-block;
    grid-area: nav;
    padding: 0;
    padding-left: 2rem;
    text-align: left;
    border-radius: 0;
    margin: 0;
  }
  nav li {
    padding-bottom: 0.6rem;
  }
  nav li a {
    text-align: left;
    line-height: var(--line-height-crushed);
    font-weight: var(--font-weight-main);
    font-size: var(--font-size-lg);
  }

  /* UTILITIES */

  .floatright, figure.center {
    width: 50%;
  }
  .floatright img {
    max-width: 100%;
    height: auto;
  }
  figure.center {
    display: block;
    margin: auto;
  }

  /* SPECIALTY */

  .blurb {
    font-size: var(--font-size-xl);
  }
  .logo {
    grid-area: logo;
    display: grid;
    place-items: center left;
    max-width: 100%;
    margin: 1rem 0;
    padding: 0;
    /* 
    undo all the mods for mobile 
    */
    text-align: unset;
    transform: scale(1);
    position: relative;
    top: 0;
    right: 0;
    filter: grayscale(0) brightness(1);
  }
  .logo a:hover {
    background: transparent;
  }
  .headline {
    grid-area: headline;
    margin: 1rem 0;
  }
  .headline h2 {
    font-size: 3em;
    padding-top: 0.6em;
  }
  .headline h2, .headline h3 {
    margin: 0;
    padding-left: 6px;
  }
  .headline h3 {
    font-size: 2em;
    padding-top: 1.6em;
    font-style: normal;
    font-weight: var(--font-weight-light);
    letter-spacing: 2px;
  }
  .starthere {
    margin-top: 2em;
  }
  .socmed {
    grid-area: socmed;
  }
  .socmed ul {
    margin-top: 0;
    margin-bottom: 0;
  }
  .socmed ul li:before {
    top: 0;
  }
  .knowshowgrow {
    grid-area: knowshowgrow;
  }
  .starthere {
    border-radius: 1em;
    box-shadow: 1px 1px 2px rgba(16%, 16%, 16%, 0.3);
    background: var(--color-contrast-dark);
  }
  .starthere, .socmed, .knowshowgrow {
    margin-right: 1rem;
    padding: 1rem 0 1rem 2rem;
  }
  .starthere h1 {
      font-size: calc(0.6rem + 2vw);
  }
  .starthere h2, .socmed h2, .knowshowgrow h2 {
      font-size: calc(0.6rem + 1vw);
  }
  .starthere p, .knowshowgrow p, .socmed p, .socmed li {
      font-size: calc(0.6rem + 0.6vw);
  }
  .featherleft {
    grid-area: featherleft;
  }

  .sender-subs-embed-form-1931 .sender-form-box {
    grid-template-columns: 1fr;
    width: 100% !important;
    padding: 0 !important;
    font-family: var(--font-family-alt) !important;
    background-color: rgba(98%, 98%, 98%, 1) !important;
    
  }
  .sender-subs-embed-form-1931 .sender-form-box img {
    width: auto;
    height: auto;
  }
  .sender-form-label, .sender-form-input, .sender-form-button, .sender-subs-embed-form-1931 .sender-form-subtitle {
    font-family: var(--font-family-alt) !important;
    color: var(--color-contrast-light) !important;
  }
  .sender-subs-embed-form-1931 .sender-form-subtitle {
    font-size: 2em !important;
  }
  .sender-form-title {
    display: none !important;
  }
  .sender-form-link {
    margin-top: 0 !important;
  }
  .sender-form-input {
    margin-bottom: 0 !important;
    height: 32px !important;
  }
  .sender-form-link-text {
    font-family: var(--font-family-alt) !important;
  }
  .sender-form-button {
    background-color: var(--color-white) !important;
    border: 1px solid var(--color-contrast-light) !important;
    padding: 0.4em !important;
    min-height: 32px !important;
  }
  .sender-subs-embed-form-1931 .sender-form-button:hover, .sender-subs-embed-form-1931 .sender-form-button:focus {
    background-color: var(--color-contrast-light) !important;
    filter: brightness(100%) !important;
    -webkit-filter: brightness(100%) !important;
  }
  .sender-form-bottom-text {
    margin-top: 0 !important;
  }
  .sender-form-bottom-text span span {
    display: none;
  }

  /* TROUBLESHOOTING */

  /* ANIMATION */

}

/* END OF PRIMARY MEDIA QUERY STYLES */












@media (min-width: 769px) {
  .container {
    grid-template-columns: 1fr repeat(2, 3fr) 1fr repeat(3, 5fr) 1fr;
    grid-template-areas:
      " . logo         logo         logo     section1 section1 section1 . "
      " . nav          nav          nav      article  article  article  . "
      " . aside        aside        .        article  article  article  . "
      " . socmed       socmed       .        article  article  article  . "
      " . knowshowgrow knowshowgrow .        article  article  article  . "
      " . featherleft  featherleft  .        article  article  article  . "
      " . .            .            .        article  article  article  . "
      " . footer       footer       footer   footer   footer   footer   . ";
  }
  header {
      grid-template-columns: 1fr repeat(2, 3fr) 1fr repeat(3, 3fr) 1fr;
      grid-template-areas:
          " . title title title . feather feather . "
          ;
      }

  .home header img {
      margin: 0;
      width: 512px;
      max-width: 36vw;
      height: auto;
      position: absolute;
      bottom: 0;
      right: 2vw;
      } 

  .home header h1 {
    display: inline-block;
    font-size: calc(4rem + 2vw);
    letter-spacing: -0.5vw;
  }
  .home header h2 {
    font-size: calc(2.6rem + 1vw);
    letter-spacing: -0.3vw;
  }
  figure {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  img {
    width: 100%;
    height: auto;
  }

}













@media (min-width: 1025px) {
  .home header h1 {
    font-size: calc(5rem + 3vw);
    letter-spacing: -0.5vw;
  }
  .home header h2 {
    font-size: calc(3rem + 2vw);
    letter-spacing: -0.3vw;
  }
}