
@font-face {
  font-family: "Univers";
  src: url(Univers.woff);
} 

@font-face {
  font-family: "Univers";
  src: url(Univers-Bold.woff);
  font-weight: 700;
} 

@font-face {
  font-family: "Minion";
  src: url(minionpro-regular.woff);
  font-style: normal;
} 

@font-face {
  font-family: "Minion";
  src: url(minionpro-it.woff);
  font-style: oblique;
} 

@font-face {
  font-family: "Minion";
  src: url(minionpro-semibold.woff);
  font-weight: 500;
} 

* {
  margin: 0;
  padding: 0;
}

:root {
  --padding: 1.5rem;

  --color-white: #fff;
  --color-grey: #777;
  --color-light: #efefef;
  --color-text: var(--color-black);
  --color-text-grey: var(--color-grey);
  --color-background: var(--color-white);

  --color-light-grey:  #cacbd1;
  --color-black: #0B1C2C;
  --color-blue: #1B4F92;
  --color-blue-light: #EAF3F6;
  --color-dark-blue: #273342;

  --font-family-sans: Univers, "Times New Roman", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";

  --font-family-serif: Minion, "Arial", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";

  --font-family-mono: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier, monospace;
}

html {
  font-family: var(--font-family-serif);
  color: var(--color-text);
  background: var(--color-background);
}

body {
  margin: 0 auto;
}

li {
  list-style: none;
}

a {
  color: currentColor;
  text-decoration: none;
}


button {
  font: inherit;
  background: none;
  border: 0;
  color: currentColor;
  cursor: pointer;
}
strong, b {
  font-weight: 700;
}
small {
  font-size: inherit;
  color: var(--color-text-grey);
}

.bg-light {
  background-color: var(--color-light);
}
.color-grey {
  color: var(--color-text-grey);
}

.header-wrapper, .footer-wrapper{
  /* background: lightgreen; */
  background-color: var(--color-blue-light);
}

.header {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  /* margin-right: -1rem;
  margin-left: -1rem; */
  margin-bottom: 6rem;
  padding: 56px;
  height: 125px;
}



.logo {
  font-size: 24px;
  display: flex;
  align-items: center;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-family-sans);
  display: block;
}
.subtitle{
  font-family: var(--font-family-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 24px;
  line-height: 29px;
  padding-top: 11px;
}

a.logo:hover{
  color: var(--color-blue);
}

.menu a {
  margin: 1rem;
  display: inline-block;

  font-family: var(--font-family-sans);
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding-bottom: .5em;
}

.menu a{
  border-bottom: 2px solid transparent;
}


.menu a:hover, .menu a[aria-current] {
  /* text-decoration: underline; */
  color: var(--color-blue);
  border-bottom: 2px solid var(--color-blue);
}

.menu li {
  display: inline-block;
}

.menu li ul li{
  display: block;
}

.menu .submenu{
  position: absolute;
  display: none;
  background-color: var(--color-dark-blue);
  color: white;
}

.menu .submenu:hover{
  border-bottom-color: transparent;
}

.dropdown:hover .submenu {
   z-index: 1000;
}

.menu li[aria-current] .submenu{
  display: block;
}

.menu .dropdown a[aria-current], .menu .dropdown a:hover  {
  border-bottom-color: transparent;
}

.menu li:first-child a:hover{
  border-bottom-color: inherit;
}

.menu .submenu {
  padding: 0.5em;
  margin-top: -14px;
  max-width: 150px;
  margin-left: 15px;
  filter: drop-shadow(0 0 0.75rem #EAF3F7);

}

.menu .submenu a {
  margin: .5em;
}


.menu .dropdown .submenu a[aria-current],
.menu .dropdown .submenu a:hover,
.menu .dropdown .submenu a[aria-current] {
  color: var(--color-blue-light);
  border-bottom-color: var(--color-blue-light);
}

.menu .dropdown:hover .submenu{
  display:block;
}

.social {
  display: flex;
  padding: 0 .5rem;
}

.social a {
  padding: 1rem .5rem;
}

a.social-link:hover{
  border: none;
}

a.social-link:hover svg path{
fill: var(--color-blue);
}

.menu .social-link {
  width: 50px;
  text-align: center;
  position: relative;
  bottom: -6px;
}

.section {
  padding: 3rem 0;
}

.grid {
  --columns: 12;
  --gutter: 3rem;
  display: grid;
  grid-gap: var(--gutter);
  grid-template-columns: 1fr;
}
.grid > .column {
  margin-bottom: var(--gutter);
}

.autogrid {
  --gutter: 3rem;
  --min: 10rem;
  display: grid;
  grid-gap: var(--gutter);
  grid-template-columns: repeat(auto-fit, minmax(var(--min), 1fr));
  grid-auto-flow: dense;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.main a{
  border-bottom: solid var(--color-blue) 2px;
}

.main a:hover {
  /* background: var\); */
  color: var(--color-blue);
  background: #EAF3F64D;
  /* border-bottom: solid var(--color-dark-blue) 2px; */
}

a.image-link, a.image-link:hover{
  background: transparent;
}

article {
  margin-top: 8em;
}

::selection {
  background: #c4d1e2;
}

.text, p {
  line-height: 1.5em;
  font-size: 24px;
}
.text :first-child {
  margin-top: 0;
}
/* .text :last-child {
  margin-bottom: 0;
} */
.text p,
.text ul,
.text ol {
  margin-bottom: 1.5rem;
}
.text ul, .text ol{
  margin-left: 1rem;
}
.text ol{
  margin-left: 2rem;
}
.text ul p,
.text ol p {
  margin-bottom: 0;
}
.text ul > li {
  list-style: disc;
}
.text ol > li {
  list-style: decimal;
}
.text ul ol,
.text ul ul,
.text ol ul,
.text ol ol {
  margin-bottom: 0;
}
.text ol li {
   margin-bottom: 1em;
}

.text h1,
.h1,
.intro {
  font-family: Univers;
  font-style: normal;
  font-weight: bold;
  font-size: 36px;
  line-height: 43px;
}
.text h2,
.h2 {
  font-family: var(--font-family-sans);
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 1.25rem;

  /* font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.25rem; */
}
.text h3,
.h3 {
  font-weight: 400;
  font-family: var(--font-family-sans);
  font-size: 24px;
}
.text .codeblock {
  display: grid;
}
.text code {
  font-family: var(--font-family-mono);
  font-size: 1em;
  background: var(--color-light);
  padding: 0 .5rem;
  display: inline-block;
  color: var(--color-black);
}
.text pre {
  margin: 3rem 0;
  background: var(--color-black);
  color: var(--color-white);
  padding: 1.5rem;
  overflow-x: scroll;
  overflow-y: hidden;
  line-height: 1.5rem;
}
.text pre code {
  padding: 0;
  background: none;
  color: inherit;
}
.text hr {
  margin: 6rem 0;
}
.text dt {
  font-weight: 600;
}
.text blockquote {
  font-size: 1.25rem;
  line-height: 1.325em;
  border-left: 2px solid var(--color-black);
  padding-left: 1rem;
  margin: 3rem 0;
  max-width: 25rem;
}
.text blockquote footer {
  font-size: .875rem;
  font-style: italic;
}
.text figure {
  margin: 3rem 0;
}
.text figcaption {
  padding-top: .75rem;
  color: var(--color-text-grey);
}

.text figure.float-left {
  float: left;
  margin: 0px 1em 0 0;
}

.main .button, .button2,  input[type=submit]  {
  background: var(--color-blue);
  font-family: Univers;
  text-transform: uppercase;
  font-size: 14px;
  color: white;
  letter-spacing: 0.1em;
  margin-right: 1.5em;
  padding: 1.3em;
  border-color: var(--color-blue);
  display: inline-block;
  text-align: center;
}

.main .button2 {
  background: white;
  border: 1px solid var(--color-dark-blue);
  color: var(--color-dark-blue);
}


.main .button:hover {
  background: var(--color-dark-blue);
  color: white;
}

.main .button2:hover, input[type=submit]:hover,
.main .button2:focus, input[type=submit]:focus  {
  background: var(--color-blue-light);
  color: var(--color-blue);
  border-color: var(--color-blue);
  cursor: pointer;
}

.promo-banner .small-text{
  font-size: 20px;
}


.events-banner .button:hover,
.events-banner .button:focus {
  background-color: var(--color-blue-light);
  color: var(--color-blue);
  border-bottom-color: transparent;
}

.events-banner figure img {
  width: 100%
}

.events-banner .podcast {
  max-width: 200px;
  text-align: center;
  margin: auto;
}

figure a:link {
  border: 0;
}

.about-section,
.news-section {
  max-width: 708px;
  padding: 0 1em;
  margin: 8em auto 3em auto;
}


/* Events Page */

.note-text{
  padding-right: 2em;
  padding-left: 2em;
}


.events-banner {
  background: var(--color-black);
  /* background: var(--color-dark-blue); */
  color: white;
  font-family: Univers;
  padding: 1em 2em;
  width: 25%;
}

.events-banner a {
  border-color: white;
}

.events-banner a:hover{
  background: transparent;
  border-color: var(--color-blue);
  color: var(--color-blue-light);
}

.events-banner h1 {
  text-transform: uppercase;
  line-height: 1.6em;
  margin-bottom: 0.5em;
}

.events-banner p, .events-banner h1, .events-banner a  {
  font-size: 16px;
}

.event-card{
  display: flex;
  align-items: self-start;
}

.event-card .event-time{
  background-color: var(--color-blue);
  color: white;
  padding: 2em;
  font-family: var(--font-family-sans);
  text-align: right;
  font-size: 24px;
  font-weight: 700;
  min-width: 111px;
}

.event-date-time{
  font-weight: 400;
}

.event-info{
  margin-left: 2em;
}

.event-excerpt-title{
  font-family: var(--font-family-sans);
  font-size: 24px;
}

.event-excerpt-text{
  font-family: var(--font-family-serif);
  font-size: 24px;
}

.event-location{
  font-style: oblique;
}

.event-link{
  margin-top: .5rem;
}

/* Podcasts */
.podcast-card{
  background-color: var(--color-blue);
  padding: 2em 0em;
  color: white;
  text-align: center;
  margin-top: 2em;
}

.podcast-card img{
  width: 100%;
}

.podcast-card p {
  margin-bottom: .5em;
}

.main .podcast-card a:hover {
  color: white;
  background: transparent;
  border-bottom: 0;
}

.main .podcast-card .event-excerpt-title a {
  border-bottom: 2px solid white;  
}

.podcast-card .event-excerpt-title {
  margin: 1em 0 .5em 0;
  line-height: 1.5em;
}

.podcast-column {
  margin-bottom: 4em;
  margin-top: 4em;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

.podcast-column .column {
  margin: 0 1.5em;
  /* width: 28em; */
  width: 15em;
}

.podcast-card .event-info {
  margin: 0 2em;
  /* width: 100%; */
}

.podcast-time{
  font-size: 1.2em;
  color: var(--color-blue-light);
  font-family: var(--font-family-sans);
}

/* flexes flex center last column */
/* .podcast-column::after { 
  content: "";
  flex: auto;
} */

@media screen and (max-width: 1439px) {
  .column-right.podcast-column{
    max-width:93%;
  }


}


/* End Podcast */



.about-section h1 {
  text-align: center;
  margin-bottom: 1em;
}


.about-section img {
  height: 180px;
  width: auto;
}

hr {
  border: 0;
  background: currentColor;
  height: 2px;
  /* width: 1.5rem; */
  margin: 3rem auto;
}

.align-center {
  text-align: center;
}
.sans-serif{
  font-family: var(--font-family-sans);
}
.hide {
  display: none;
}

.intro {
  max-width: 40rem;
}
.intro *:not(:last-child) {
  margin-bottom: 1em;
}

.cta {
  background: var(--color-black);
  color: var(--color-white);
  display: inline-flex;
  justify-content: center;
  padding: .75rem 1.5rem;
  border: 4px solid var(--color-white);
  outline: 2px solid var(--color-black);
}

.box {
  background: var(--color-light);
  padding: 1.5rem;
  border: 4px solid var(--color-white);
  outline: 2px solid var(--color-light);
}

.video,
.img {
  position: relative;
  display: block;
  --w: 1;
  --h: 1;
  padding-bottom: calc(100% / var(--w) * var(--h));
  background: var(--color-black);
}
.img img,
.video iframe {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
}
.img[data-contain] img {
  object-fit: contain;
}
.img-caption,
.video-caption {
  padding-top: .75rem;
  line-height: 1.5em;
}

.header, .footer{
  background: #EAF3F7;
}


.header, .main, .footer{
  max-width: 1445px;
  margin: auto;
}

.header, .footer {
  padding: 56px;
}

.main-wrapper{
  min-height: calc(100vh - 237px);
}


.footer {
  /* padding: 9rem 0 6rem; */
  margin-top: 12em;
  line-height: 1.5em;
  font-family: var(--font-family-sans);
}

.footer h2{
  font-weight: 400;
  margin-bottom: .75rem;
  text-transform: uppercase;
  letter-spacing: .1px;
}
.footer ul,
.footer p {
  color: var(--color-text-grey);
}
.footer p {
  max-width: 15rem;
}
.footer a:hover {
  color: var(--color-text);
}

.footer-menu p{
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 1em;
}


.footer {
  display: flex;
}

.footer .title {
  flex-grow: 2;
}


/* Accordion */

button svg {
  height: 1em;
  margin-left: 0.5em;
  float: right;
}

.accordion li {
  margin-bottom: 3rem;
}

.accordion h2 {
font-size: 3rem;
text-align: center;
margin: 0;
padding: 1rem;
}

.accordion .icon {
  height: 2rem;
  margin-right: 1rem;
  margin-bottom: -.5rem;
  filter: invert(100);
}

.text ul.accordion{
  margin-left: 0;
}

.accordion li, .text .accordion li, .text .accordion ul > li {
  list-style-type: none;
}

h3.accordion__header button{
  background-color: var(--color-blue);
  color: white;
}

h3.accordion__header button[aria-expanded="true"] {
  background-color: var(--color-blue-light);
  color: var(--color-blue);
}

h3.accordion__header button[aria-expanded="true"] .icon,
.accordion__header button:hover .icon,
.accordion__header button:focus .icon {
  filter: invert(28%) sepia(100%) hue-rotate(-180deg) saturate(3);
}

.accordion__header button {
  all: inherit;
  /* width: 100%;   */
  margin: 0rem auto 1rem auto;
  padding: 1rem;
  width: calc(100% - 3rem);
  padding: 1.6rem;
}

.accordion__header button:focus {
  outline: -webkit-focus-ring-color auto 5px;
}

.accordion__header button:hover, .accordion__header button:focus {
  background: var(--color-blue-light);
  color: var(--color-blue);
}

.accordion__panel {
  width: auto;
  margin: 1rem 1rem 4rem 2rem;
  padding-left: .5rem;
}

[aria-expanded="true"] .vert {
  display: none;
}

[aria-expanded] rect {
  fill: currentColor;
}


/* End Accordion */




.map {
  --w: 2;
  --h: 1;
  padding-bottom: calc(100% / var(--w) * var(--h));
  position: relative;
  overflow: hidden;
  background: var(--color-black);
}
.map iframe {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.margin-top-m {
  margin-top: 4em;
}


.margin-s {
  margin-bottom: 2rem;
}
.margin-m {
  margin-bottom: 4rem;
}
.margin-l {
  margin-bottom: 8rem;
}
.margin-xl {
  margin-bottom: 12rem;
}
.margin-xxl {
  margin-bottom: 26rem;
}


.banner{
  /* background: rgba(245, 245, 245, 0.34); */
  background: white;
  min-height: 200px;
  display: flex;
  border: 1px solid var(--color-dark-blue);
}

.promo-banner {
  display: flex;
}

.events-on{
    width: 75%;
}


.promo-banner h2{
  font-family: var(--font-family-sans);
  text-transform: uppercase;
  font-weight: 400;
  align-items: center;
}

.promo-image-wrapper {
  /* flex-grow: 1; */
  text-align: center;
  flex-grow: 2;
  display: flex;
  align-items: center;
}

.promo-image-wrapper a, .promo-image-wrapper a:hover{
  border: none;
  background: transparent;
}

.promo-image {
  width: auto;
  /* height: 250px; */
  height: auto;
  max-width: 100%;
  display: block;
}

.promo-text-wrapper {
  padding: 2em 1em;
  flex-grow: 1;
  min-width: 360px;
}


/* End  */


.promo-text-wrapper h1, .promo-text-wrapper h2 {
  padding-bottom: .5em;
}

.promo-text-wrapper p {
  padding: 0;
}


.subscribe-section .column-right h1{
  font-weight: 400;
  margin-bottom: 2rem;
}

.text figure.newsletter-image {
  display: inline-block;
  height: 1.5em;
  position: relative;
  top: .5em;
  margin-right: .25em;
}

.newsletter-image img {
  height: 100%;
}

/* consulting */
/* .consulting article{
  display: flex;
}

.consulting .text {
  max-width: 60%;
  padding-left: 1em;
}

.consulting .h1 {
  text-align: right;
  width: 30%;
} */

/* Two columns (30% / 60%) */
.columns-holder {
  display: flex;
}

.column-left {
  text-align: right;
  width: 30%;
}

.column-right {
  max-width: 60%;
  padding-left: 2em;
}

.column-half{
  max-width:50%;
  width: 50%;
}

.column-right.text.no-events {
  margin-left: 10em;
  /* margin-bottom: 9em; */
}
.previous-events{
margin-top: 9em;
}

.left-margin-small {
  margin-left: -10em;
}

/* Book Feature Page */
.book-cover{
    align-items: center;
}

.book-cover-holder{
  text-align: center;
}

.book-cover-holder img{
  height: 450px;
}

.book-cover-text-holder{
  color: var(--color-blue);
  margin-right: 2em;
}

.columns-centered{
  margin-left: auto;
  margin-right: auto;
  max-width: 60%;
}

.quote {
  font-style: oblique;
  font-size: 30px;
  line-height: 1.6em;
  margin-bottom: .5em;
  color: var(--color-blue);
  font-family: var(--font-family-serif);
}

.testimonials.columns-centered {
  max-width: 70%;
}

.testimonials {
  color: var(--color-dark-blue);
  font-family: var(--font-family-sans);
}




/* Contact Form */

.uniform__potty {
  position: absolute;
  left: -9999px;
}
.error {
  border: 1px solid red;
}
.error-text {
  color: red;
  text-decoration: underline;
  font-size: 14px;
  margin-left: 1em;
}

.contact-form label{
  display: block;
}

.contact-form {
  max-width: 650px;
  margin: auto;
}

.contact-form label, .contact-form .note{
  font-family: var(--font-family-sans);
  font-size: 18px;
  margin-bottom: .5em;
}

input, textarea {
  background: #F2F5F6;
  border: 1px solid var(--color-dark-blue);
  padding: 1em;
  font-family: var(--font-family-sans);
  font-size: 18px;
  width: 100%;
  margin-bottom: 1em;
  width: calc(100% - 3em);
  margin-right: 2em;
}

textarea {
  height: 150px;
}

input[type=submit] {
  width: 200px;
}

.form-row-holder {
  display: flex;
}

.form-half {
  width: 50%;
}

.captcha input {
  width: 150px
}

.highlighted-section {
  background: var(--color-blue-light);
  /* color: white; */
  margin-left: -2em;
  margin-right: -2em;
  padding: 2em;
}

figure.dropshadow {
  filter: drop-shadow(-1px 1px 3px #00000020);
  float: right;
  margin: 2em;
}

.collaborators li {
list-style: none;
display: flex;
margin-bottom: 2em;
}

.collaborators li img { 
display: inline-block;
height: 200px;
margin-right: 2em;
}

.collaborators li p { 
display: inline-block;
}

.text .fit{  margin-bottom: .1em; }
.text .fit a { border: none; }
.fit img { width: 100%; }

@media screen and (min-width: 60rem) {
  /* body {
  } */

  .grid {
    grid-template-columns: repeat(12, 1fr);
  }
  .grid > .column {
    grid-column: span var(--columns);
  }

}

@media screen and (max-width: 875px) {
  .columns-centered{
    width: 95%;
    max-width: 100%;
    padding: 0 .5rem;
  }
}

@media screen and (max-width: 974px) {
/* @media screen and (max-width: 785px) { */

  
  .header{
    height: auto;
  }
  
  .header, .footer {
    padding: 2em;
  }
  
  .h1 {
    margin-bottom: 2rem;
  }
  .text, p{
    font-size: 22px;
  }

  .banner{
    display: block;
    padding-top: 4rem;
  }

  .events-banner{
    width: auto;
  }
  
  .promo-banner{
    display: block;
  }

  .promo-banner{
    width: auto;
  }

  .menu .submenu {
    margin-top: 0;
  }


  .promo-text-wrapper {
    text-align: center;
  }

  .subscribe-section .column-right h1{
    font-size: 24px;
    text-align: center;
    margin: 2rem 0;
  }

  .subscribe-section .column-right p:last-child{
    text-align: center;
  }
  
  .book-cover-text-holder{
    text-align: center;
    padding-right: 2em;
  }
  .note-text p{
    font-size: 20px;
  }
  .columns-holder{
    display: block;
  }

  .column-right, .column-left{
    max-width: 100%;
    padding: 0 .5rem;
  }
  .column-left{
    text-align: center;
    width: auto;
  }
  
  .column-right{
    text-align: left;
  }
  .subtitle{
    font-size: 18px;
  }

  .column-half{
    max-width: 100%;
    width: auto;
    padding: 0 .5rem;
  }
  .menu a{
    margin-bottom: 0;
    margin-left: 0;
  }
  .columns-centered{
    max-width: 100%;
    padding: 0 .5rem;
  }
  .event-card{
    display: block;
    align-items: self-start;
  }
  .event-card .event-time {
    margin-bottom: 3rem;
    text-align: left;
    padding: 1em;
    width: auto;
  }
  .left-margin-small{
    margin: 0 .5rem;
  }
  .main .button, .button2, input[type="submit"]{
    margin-right: 0;
  }
  .contact-form{
    margin: 0 .5rem;
  }

  .podcast-column{
    margin-bottom: 3em;
    justify-content: center;
  }
}

@media screen and (max-width: 424px) {  
  .menu .submenu {
    margin-top: 88px;
    left: 32px;
  }
  .menu li ul li {
    display: inline-block;
  }
  .margin-top-m{
    margin-top: 5em;
  }

  .promo-text-wrapper {
    min-width: auto;
  }
}


@media screen and (max-width: 1140px) {
  .menu a{
    margin-left: 0;
  }
}

.pagination {
  display: flex;
  padding-top: 6rem;
}
.pagination > span {
  color: var(--color-text-grey);
}
.pagination > * {
  padding: .5rem;
  width: 3rem;
  text-align: center;
  border: 2px solid currentColor;
  margin-right: 1.5rem;
}
.pagination > a:hover {
  background: var(--color-black);
  color: var(--color-white);
  border-color: var(--color-black);
}

.note-excerpt {
  line-height: 1.5em;
}
.note-excerpt header {
  margin-bottom: 1.5rem;
}
.note-excerpt figure {
  margin-bottom: .5rem;
}
.note-excerpt-title {
  font-weight: 600;
}
.note-excerpt-date {
  color: var(--color-text-grey);
}


