@charset "UTF-8";
/*! HTML5 Boilerplate v8.0.0 | MIT License | https://html5boilerplate.com/ */
/* main.css 2.1.0 | MIT License | https://github.com/h5bp/main.css#readme */
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */
/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */
html {
  color: #222;
  font-size: 1em;
  line-height: 1.4;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Vendor-prefixed and regular ::selection selectors cannot be combined:
 * https://stackoverflow.com/a/16982510/7133471
 *
 * Customize the background color to match your design.
 */
::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */
textarea {
  resize: vertical;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */
/* ==========================================================================
   Helper classes
   ========================================================================== */
/*
 * Hide visually and from screen readers
 */
.hidden,
[hidden] {
  display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
 */
.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1 */
}

/*
 * Extends the .sr-only class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */
.sr-only.focusable:active,
.sr-only.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */
.invisible {
  visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */
.clearfix::before,
.clearfix::after {
  content: " ";
  display: table;
}

.clearfix::after {
  clear: both;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */
@media only screen and (min-width: 35em) {
  /* Style adjustments for viewports that meet the condition */
}
@media print, (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 1.25dppx), (min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices */
}
/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */
@media print {
  *,
*::before,
*::after {
    background: #fff !important;
    color: #000 !important;
    /* Black prints faster */
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
a:visited {
    text-decoration: underline;
  }
  a[href]::after {
    content: " (" attr(href) ")";
  }
  abbr[title]::after {
    content: " (" attr(title) ")";
  }
  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */
  a[href^="#"]::after,
a[href^="javascript:"]::after {
    content: "";
  }
  pre {
    white-space: pre-wrap !important;
  }
  pre,
blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  /*
   * Printing Tables:
   * https://web.archive.org/web/20180815150934/http://css-discuss.incutio.com/wiki/Printing_Tables
   */
  thead {
    display: table-header-group;
  }
  tr,
img {
    page-break-inside: avoid;
  }
  p,
h2,
h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
h3 {
    page-break-after: avoid;
  }
}
.container {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}

body.open {
  overflow: hidden;
}
body.open .menu ul {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #103054;
}
body.open .menu ul li {
  margin-top: 20px;
  margin-bottom: 20px;
}
body.open .menu ul li.right {
  margin-left: 0;
}
body.open .menu ul li:not(.right) {
  margin-right: 0;
}
body.open .menu .hbg .closed {
  display: none;
}
body.open .menu .hbg .open {
  display: block;
}
@media screen and (max-width: 1100px) {
  body:not(.open) > nav .menu ul {
    display: none;
  }
}
body > nav {
  height: 140px;
  background: #103054;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 9;
}
body > nav .container {
  display: flex;
  align-items: center;
}
body > nav .logo {
  z-index: 99;
}
body > nav .logo img {
  height: 65px;
  width: 65px;
}
body > nav .menu .hbg {
  z-index: 99;
  display: none;
  margin-left: auto;
}
@media screen and (max-width: 1100px) {
  body > nav .menu .hbg {
    display: block;
  }
}
body > nav .menu .hbg .open {
  display: none;
}
body > nav .menu .hbg .closed {
  display: block;
}
body > nav .menu .hbg img {
  width: 40px;
  color: #fff;
}
body > nav ul {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
  z-index: 9;
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 100%;
  padding: 0 0 0 100px;
  list-style-type: none;
}
body > nav ul li.right {
  margin-left: auto;
}
body > nav ul li:not(.right) {
  margin-right: 100px;
}
body > nav ul li {
  font-family: heebo700;
  font-weight: 700;
}
body > nav ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 24px;
  line-height: 29px;
}
body > nav ul li a:hover {
  opacity: 0.7;
}
body > nav ul li a.selected {
  color: #a47c52;
}
body > nav button {
  width: 100px;
}
body > nav button .hbg::before, body > nav button .hbg::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 20px;
  color: #a47c52;
  background-color: currentColor;
  transition: all 0.45s ease-in-out;
}
body > nav button .hbg::before::before, body > nav button .hbg::after::before {
  top: 0;
  transform: rotate(0);
}
body > nav button .hbg::before::after, body > nav button .hbg::after::after {
  bottom: 0;
  box-shadow: 0 -50px currentColor;
}
body > header {
  background: #E7E7E8;
}
body > header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 40px 64px;
}
body > header .container h1 {
  font-family: heebo700;
  font-weight: 700;
  font-size: 48px;
  line-height: 58px;
  color: #103054;
  margin: 0;
}
@media screen and (max-width: 800px) {
  body > header .container h1 {
    font-size: 30px;
    line-height: 40px;
  }
}
body > header .container img {
  width: 90px;
  height: 90px;
  margin-right: 24px;
}
body hr {
  width: 325px;
  height: 2px;
  background: #a47c52;
  border: none;
}
body a.btn {
  font-family: heebo700;
  font-weight: 700;
  background: #0083bc;
  color: #fff;
  display: inline-block;
  text-decoration: none;
  border-radius: 12px;
  padding: 12px 40px;
  font-size: 20px;
  line-height: 24px;
}

footer {
  background: #103054;
  font-family: heebo200;
  font-weight: 200;
  font-size: 16px;
  line-height: 19px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 80px;
}
footer a, footer a:visited {
  color: #fff;
  text-decoration: none;
}
footer p {
  color: #CCBFA3;
  font-style: italic;
  padding: 80px 0 40px 0;
}
footer img {
  max-width: 78px;
  margin-bottom: 24px;
}
footer ul {
  padding: 0;
  display: flex;
  flex-direction: row;
  margin-bottom: 40px;
  margin-top: 0px;
  list-style: none;
}
footer ul li {
  margin-left: 16px;
}
footer ul li:not(:last-child):after {
  content: "•";
  margin-left: 16px;
}
footer i {
  margin-bottom: 40px;
}

.hero {
  background: url(../img/bridge.png);
  background-size: cover;
  padding: 24px 0;
}
.hero .container {
  position: relative;
  display: flex;
  align-items: center;
}
.hero .container img.logo {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  max-width: 536px;
  width: 100%;
}
@media screen and (max-width: 1220px) {
  .hero .container img.letters {
    display: none;
  }
  .hero .container img.logo {
    position: relative;
  }
}

.youtube .container {
  display: flex;
  justify-content: center;
  padding-top: 40px;
  padding-bottom: 40px;
}

.description {
  background: url(../img/bg.png);
  background-size: cover;
}
.description .container {
  width: 100%;
  max-width: 872px;
  margin: 0 auto;
  padding-top: 40px;
  padding-bottom: 40px;
  color: #fff;
}
.description .container .seal {
  display: block;
  margin: 0 auto;
  margin-bottom: 40px;
}
.description .container .purpose {
  padding-bottom: 25px;
  font-family: heebo500;
  font-weight: 500;
  font-size: 24px;
  line-height: 30px;
}
.description .container .this-year {
  padding: 40px 0;
  font-family: heebo200;
  font-weight: 200;
  font-size: 20px;
  line-height: 32px;
}

.partnership {
  width: 100%;
  max-width: 872px;
  margin: 0 auto;
}
.partnership .container {
  margin-top: 40px;
  margin-bottom: 64px;
}
.partnership .container .partners {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  margin-top: 66px;
}
.partnership .container .partners .eof {
  grid-column: 1;
  grid-row: span 2;
  margin-right: 100px;
}
@media screen and (max-width: 750px) {
  .partnership .container .partners .eof {
    margin-right: 0;
    max-width: 450px;
  }
}
.partnership .container .partners .ff, .partnership .container .partners .cobap {
  max-width: 100%;
  object-fit: cover;
}
@media screen and (max-width: 750px) {
  .partnership .container .partners {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.partnership img {
  display: block;
  margin-bottom: 40px;
}
.partnership p {
  padding: 40px 0;
  font-size: 20px;
  line-height: 32px;
  font-family: "Heboo", sans-serif;
  color: #103054;
  font-weight: 200;
}
.partnership p.symposium {
  padding: 0;
  margin-bottom: 25px;
  font-weight: 500;
  font-size: 24px;
  line-height: 30px;
}
.partnership hr {
  margin-bottom: 40px;
}

section.split, section.fw {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 40px 64px;
  box-sizing: border-box;
}
section.split p, section.fw p {
  margin-top: 0;
  margin-bottom: 40px;
  font-family: heebo200;
  font-weight: 200;
  font-size: 20px;
  line-height: 32px;
  color: #103054;
}
section.split p:last-child, section.fw p:last-child {
  margin-bottom: 0;
}
section.split h3, section.fw h3 {
  font-family: heebo500;
  font-weight: 500;
  font-size: 24px;
  line-height: 30px;
  color: #103054;
  margin: 0;
}
section.split hr, section.fw hr {
  margin-bottom: 40px;
}

section.split {
  display: grid;
  grid-template-rows: auto auto 1fr;
  grid-template-columns: 55% 1fr;
}
@media screen and (max-width: 800px) {
  section.split {
    display: flex;
    flex-direction: column;
  }
}
section.split h3, section.split hr {
  grid-column: span 2;
}
section.split h3 {
  grid-row: 1;
}
section.split hr {
  grid-row: 2;
}
section.split .left {
  grid-column: 1;
  grid-row: 3;
}
@media screen and (max-width: 800px) {
  section.split .left {
    order: 3;
  }
}
section.split .right {
  grid-column: 2;
  grid-row: 3;
  padding-left: 56px;
}
section.split .right img {
  max-width: 100%;
  object-fit: cover;
}
@media screen and (max-width: 800px) {
  section.split .right {
    order: 2;
    padding-left: 0;
    margin-bottom: 30px;
  }
}

.agenda ul {
  list-style: none;
}
.agenda ul.days {
  margin: 0;
  padding-left: 0;
  font-family: heebo500;
  font-weight: 500;
}
.agenda ul.days > li:not(:first-child) {
  margin-top: 80px;
}
.agenda ul.days > li > time {
  font-size: 24px;
  line-height: 29px;
  color: #103054;
  font-family: heebo200;
  font-weight: 200;
  display: block;
}
.agenda ul.days > li ul.sessions li {
  display: grid;
  grid-template-columns: 200px 1fr;
  grid-template-rows: auto 1fr;
  margin-top: 40px;
  font-size: 20px;
  color: #103054;
}
.agenda ul.days > li ul.sessions li time {
  grid-column: 1;
  grid-row: span 2;
  line-height: 24px;
  font-weight: 500;
}
@media screen and (max-width: 800px) {
  .agenda ul.days > li ul.sessions li time {
    grid-row: 1;
    grid-column: span 2;
  }
}
.agenda ul.days > li ul.sessions li h4 {
  grid-column: 2;
  grid-row: 1;
  margin: 0;
  font-weight: 700;
}
@media screen and (max-width: 800px) {
  .agenda ul.days > li ul.sessions li h4 {
    grid-row: 2;
    grid-column: span 2;
    margin-top: 10px;
  }
}
.agenda ul.days > li ul.sessions li .loc {
  grid-column: 2;
  grid-row: 2;
  display: flex;
  font-size: 16px;
  font-family: "heebo200";
  line-height: 18px;
}
.agenda ul.days > li ul.sessions li .loc img {
  width: 16px;
  height: 16px;
  margin-right: 10px;
}
.agenda ul.days > li ul.sessions li p {
  grid-column: 2;
  grid-row: 3;
  margin-top: 24px;
}
@media screen and (max-width: 800px) {
  .agenda ul.days > li ul.sessions li p {
    grid-row: 3;
    grid-column: span 2;
    margin-top: 10px;
  }
}
.agenda ul.days > li ul.sessions li p b {
  font-weight: bold;
}

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