/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline; }

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block; }

body {
  line-height: 1; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

header {
  position: relative;
  height: 9em; }
  header .top .logo {
    position: absolute;
    top: 0em;
    left: 5%;
    padding-left: 10%;
    background: url(../images/logo.svg);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: auto 100%;
    text-decoration: none;
    line-height: 9em;
    width: 35%;
    height: 9em; }
  header nav {
    display: flex;
    justify-content: right;
    padding: 0.75em;
    font-weight: bolder;
    z-index: 15;
    font-size: 0.8em;
    padding-top: 4.8em;
    margin-right: 5%; }
    header nav .burger {
      display: none;
      margin-left: 0.1em; }
    header nav a {
      color: #fff;
      text-transform: uppercase;
      text-decoration: none;
      padding: 0em 1em;
      border-radius: 0.8em;
      height: 1em;
      font-weight: bolder;
      display: inline-block; }
      header nav a:hover {
        text-decoration: none; }
      header nav a:active {
        color: #5fbcb5; }
    header nav > ul {
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-end;
      list-style: none;
      margin: 0;
      padding: 0;
      width: 100%; }
      header nav > ul > li {
        position: relative;
        flex: 0 1 auto;
        margin: 0;
        padding: 0em 1em 2em 0em;
        transition: all linear 0.1s; }
        header nav > ul > li.dropdown:hover::after {
          content: '';
          position: absolute;
          top: 0;
          left: 50%;
          width: 0;
          height: 0;
          border: 10px solid transparent;
          border-bottom-color: #5fbcb5;
          border-top: 0;
          margin-left: -0.75em;
          margin-top: 1.5em; }
        header nav > ul > li.emp a {
          background: #fff;
          text-decoration: none;
          color: #5fbcb5; }
        header nav > ul > li > ul {
          font-size: 0.7em;
          display: none;
          position: absolute;
          left: -100%;
          z-index: 2;
          list-style: none;
          white-space: nowrap;
          background: #5fbcb5;
          margin-top: 1.6em; }
          header nav > ul > li > ul li {
            margin: 0;
            display: inline-block;
            padding: 1em 1em; }
        header nav > ul > li:nth-child(4) {
          padding-right: 0em; }
          header nav > ul > li:nth-child(4) ul {
            left: auto;
            right: -25em; }
        header nav > ul > li:last-child {
          padding-right: 0em; }
          header nav > ul > li:last-child ul {
            left: auto;
            right: -0.5em; }
      header nav > ul > li:hover > a {
        color: #5fbcb5;
        text-decoration: none; }
      header nav > ul > li:hover > ul {
        display: block; }

@media (max-width: 767px) {
  header {
    height: 5em; }
    header .top {
      height: 5em; }
      header .top .logo {
        width: 100%;
        height: 5em;
        background-size: auto 90%;
        background-position: center center;
        left: 0em; }
    header nav {
      font-size: 100%;
      padding: 0;
      height: auto;
      margin: 0;
      padding: 0.5em 0em; }
      header nav:hover {
        background: #5fbcb5; }
        header nav:hover > ul {
          background: #5fbcb5; }
      header nav .burger {
        display: block;
        padding: 0.3em 0.5em;
        margin-left: 0em;
        z-index: 20;
        right: 1em; }
      header nav > ul {
        display: none;
        position: relative;
        left: -0.5em;
        z-index: 20; }
      header nav:hover > ul, header nav .burger:hover + ul {
        display: block; }
      header nav > ul > li {
        width: 100%;
        flex: none;
        padding: 0.3em 0.5em; }
        header nav > ul > li.dropdown:hover::after {
          display: none; }
        header nav > ul > li > ul {
          position: relative;
          z-index: 0;
          width: 100%;
          margin: 0 0 0 1em;
          padding: 0.3em 0.3em;
          background: transparent;
          box-shadow: none;
          left: auto;
          top: auto;
          font-size: 1em;
          line-height: 1em; }
          header nav > ul > li > ul > li {
            padding: 0.2em 0em; }
            header nav > ul > li > ul > li:last-child {
              padding-bottom: 0em; }
        header nav > ul > li:nth-child(4) ul {
          left: auto;
          right: auto; }
      header nav > ul > li:hover a {
        color: #fff; }
      header nav > ul > li:hover a:hover, header nav > ul > li:hover a:active {
        color: #fff;
        text-decoration: underline; }
      header nav > ul > li:hover > ul {
        display: block; }
        header nav > ul > li:hover > ul li {
          display: block; }
          header nav > ul > li:hover > ul li a:hover, header nav > ul > li:hover > ul li a:active {
            color: #fff; } }
section.footer {
  padding-bottom: 1em;
  margin-top: 0em !important;
  padding-top: 1em !important;
  text-align: center;
  border-top: none !important; }
  section.footer a {
    color: #fff; }

section.team-list ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 1em 0em;
  justify-content: space-between; }
  section.team-list ul h4 {
    color: #22769b; }
  section.team-list ul:after {
    content: "";
    flex: auto; }
  section.team-list ul > li {
    max-width: 50%;
    width: 200px;
    text-align: center;
    padding-bottom: 1em;
    list-style-type: none; }
    section.team-list ul > li div {
      margin: 0 auto;
      width: 150px;
      height: 150px;
      border-radius: 50%;
      background-position: center center;
      background-size: cover; }
    section.team-list ul > li span.company {
      font-weight: bold; }
    section.team-list ul > li span {
      display: block; }

.keynote-full ul {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center; }
  .keynote-full ul li {
    list-style-type: none;
    margin: 0;
    padding: 0;
    width: 20%; }
    .keynote-full ul li div {
      filter: grayscale(1);
      width: 100%;
      background-size: cover; }
      .keynote-full ul li div::after {
        content: "";
        display: block;
        padding-bottom: 100%; }
    .keynote-full ul li h4 {
      margin: 0.5em 0em; }
      .keynote-full ul li h4 strong {
        display: block; }
    .keynote-full ul li h4, .keynote-full ul li p {
      margin-left: 5%;
      margin-right: 5%; }

aside.keynote {
  padding-top: 1em;
  display: flex;
  line-height: 1.5em;
  flex-shrink: 0;
  flex-grow: 0; }
  aside.keynote div.image {
    filter: grayscale(1);
    background-size: 100% auto;
    background-repeat: no-repeat; }
    aside.keynote div.image::after {
      content: "";
      display: block;
      padding-bottom: 100%; }
  aside.keynote div {
    width: 50%;
    padding-left: 1em; }

@media (max-width: 500px) {
  .keynote-full ul {
    display: block;
    margin: 0;
    padding: 0; }
    .keynote-full ul li {
      display: block;
      width: 100%; }
      .keynote-full ul li h4, .keynote-full ul li p {
        margin-left: 0%;
        margin-right: 0%; }

  aside.keynote {
    display: block; }
    aside.keynote div {
      width: 100%;
      padding-left: 0em; }
      aside.keynote div h3 {
        margin: 0.5em 0em; } }
.supporters {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  justify-content: space-around; }
  .supporters a {
    height: 150px;
    width: 180px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center; }

.sponsors h3 {
  text-align: center; }
.sponsors div {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  justify-content: space-around; }
  .sponsors div a {
    height: 80px;
    margin: 35px 10px;
    width: 180px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center; }
  .sponsors div.Diamond a {
    width: 300px; }
  .sponsors div.Platinum a {
    width: 250px; }
  .sponsors div.Gold a {
    width: 200px; }

section:first-of-type {
  margin-top: 2em; }

section.image:first-of-type {
  padding-top: 11em;
  margin-top: -9em;
  border-top: none; }

section {
  background: #fff; }
  section ul {
    padding: 1em 1.5em; }
  section li {
    list-style-type: disc; }
  section p, section li {
    line-height: 1.5em; }

section.front {
  padding-top: 0em;
  text-align: center; }
  section.front h2 {
    color: #fff;
    margin: 0% 10% 1em 10%; }
  section.front.green h2 {
    background: #5fbcb5; }

section.image {
  background-position: bottom right, top center, top center;
  background-repeat: repeat-y, no-repeat, no-repeat;
  background-size: cover, cover, cover;
  background-blend-mode: multiply, normal, normal;
  color: #fff;
  margin-bottom: 0em; }
  section.image h1 {
    color: #fff; }

section {
  padding: 1em 10%; }

section.inverse {
  color: #fff;
  background: #5fbcb5; }
  section.inverse h1 {
    color: #fff; }

section.nopadding {
  padding: 0em 0em;
  line-height: 1em; }

section.front.nopadding h2 {
  margin-bottom: 0em; }

section.huge {
  min-height: 700px;
  text-align: center; }
  section.huge h1, section.huge h2, section.huge h3 {
    font-family: 'Montserrat', sans-serif;
    line-height: 1em; }
  section.huge h1 {
    font-size: 5em;
    font-weight: 300;
    margin: 0.1em; }
  section.huge h2 {
    font-size: 3.5em;
    margin-bottom: 0.1em; }
  section.huge h3 {
    font-size: 2em;
    font-weight: normal;
    margin-bottom: 0.7em; }
  section.huge a {
    display: inline-block;
    padding: 0.5em 3em;
    margin-right: 1em;
    border: 1px solid #fff;
    margin-bottom: 3em;
    margin-top: 1em;
    color: #22769b;
    background: #fff; }

div.expo {
  position: relative;
  padding-top: 90%;
  /* Your percentage */ }

div.expo iframe {
  width: 100%;
  position: absolute;
  height: 100%;
  left: 0;
  top: 0; }

#albums img {
  cursor: pointer; }

div.albums {
  xdisplay: flex;
  xflex: 1 auto;
  xalign-items: flex-start; }
  div.albums * {
    box-sizing: border-box; }
  div.albums div {
    width: 30%;
    margin: 0.5em;
    position: relative;
    display: inline-block; }
    div.albums div img {
      width: 100%;
      opacity: 0; }
    div.albums div img.loaded {
      opacity: 1;
      animation-duration: 3s;
      animation-name: fadeIn;
      animation-iteration-count: 1; }
  div.albums div[data-title]:after {
    content: attr(data-title);
    position: absolute;
    left: 0px;
    bottom: 0px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 0.5em 1em; }

@keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
@media (max-width: 500px) {
  div.albums div {
    width: 100%;
    margin: 0.5em 0; }

  section {
    padding-left: 5%;
    padding-right: 5%; }

  section.front h2 {
    margin: 0% 0% 1em 0%; }

  section.huge {
    min-height: 500px; }
    section.huge h1 {
      font-size: 2.5em; }
    section.huge h2 {
      font-size: 2em; }
    section.huge h3 {
      font-size: 1.5em; }
    section.huge a {
      margin-bottom: 0.5em; } }
@font-face {
  font-family: 'Aller-Italic';
  src: url("../fonts/Aller-Italic.ttf.woff") format("woff"), url("../fonts/Aller-Italic.ttf.svg#Aller-Italic") format("svg"), url("../fonts/Aller-Italic.ttf.eot"), url("../fonts/Aller-Italic.ttf.eot?#iefix") format("embedded-opentype");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'Aller';
  src: url("../fonts/Aller.ttf.woff") format("woff"), url("../fonts/Aller.ttf.svg#Aller") format("svg"), url("../fonts/Aller.ttf.eot"), url("../fonts/Aller.ttf.eot?#iefix") format("embedded-opentype");
  font-weight: normal;
  font-style: normal; }
html, body {
  padding: 0;
  margin: 0; }

body {
  font-family: 'Aller', sans-serif;
  font-size: 16px;
  background: #585794; }

* {
  box-sizing: border-box; }

em {
  font-style: italic; }

strong {
  font-weight: bold; }

a {
  text-decoration: none;
  color: #22769b; }
  a:hover {
    text-decoration: underline; }
  a.button {
    padding: 0.5em 3em;
    display: inline-block;
    color: #fff;
    background: #174860; }

h1, h2, h3 {
  line-height: 1.5em; }

sup {
  font-size: 50%;
  position: relative;
  top: -0.5em; }

sub {
  font-size: 50%;
  postion: relative;
  top: -0.5em; }

h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 3.25em;
  color: #5fbcb5; }

h2 {
  font-size: 2em; }

h3 {
  font-size: 1.5em; }

h4 {
  font-size: 1.2em;
  color: #22769b; }

ul li {
  margin-bottom: 0.5em; }
  ul li ul {
    padding-top: 0.5em;
    margin-top: 0em; }
    ul li ul li {
      margin-bottom: 0em; }

ul.centerlist {
  display: table;
  margin: 0 auto;
  text-align: left; }

p {
  margin-bottom: 1em; }

div.main {
  min-height: 400px;
  background: #fff; }

.grayscale {
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
  filter: url(/assets/images/grayscale.svg#greyscale);
  /* Firefox 4+ */
  filter: gray;
  /* IE 6-9 */ }

.shadow {
  box-shadow: inset 0px 120px 100px -100px rgba(0, 0, 0, 0.5); }

table th, table td {
  padding: 0.5em; }
table th:first-child, table td:first-child {
  padding-left: 1em; }
table th:last-child, table td:last-child {
  padding-right: 1em; }
table tr {
  border-bottom: 0.5em solid #fff; }
table thead tr {
  background: #22769b;
  color: #fff; }
  table thead tr th {
    text-align: left; }
table tbody tr {
  background: #e6e7e2; }
table tfoot {
  font-size: 80%; }
table.price td:nth-child(2), table.price th:nth-child(2) {
  text-align: right; }

.slidesandvideos a::before {
  content: "["; }
.slidesandvideos a::after {
  content: "]"; }
.slidesandvideos a[href=""] {
  text-decoration: none;
  color: #999; }
  .slidesandvideos a[href=""]:hover {
    text-decoration: none;
    cursor: text; }
.slidesandvideos em {
  font-size: 100%;
  color: #000; }
.slidesandvideos i {
  font-style: normal; }

@media (max-width: 500px) {
  h1 {
    font-size: 2em; }

  h2 {
    font-size: 1.5em; }

  h3 {
    font-size: 1.25em; } }
