@charset "UTF-8";
/* Config */
/* Custom Variables */
/* Typography */
/* Logo */
/* Brand Colors */
/*
$color-primary: #3d2f73;
$color-secondary: #02a6a1;
$color-tertiary: #0096ce;
*/
/* Brand Colors */
/* Gradients */
/* Background Textures */
/* Text Colors */
/* Background Colors */
/* Element Styling */
/*  Grid */
/* Default Container Sizing */
/* Header Container Sizing */
/* Intro Container Sizing */
/* Main Container Sizing */
/* Content Container Sizing */
/* Wide Content Container Sizing */
/* Vertical Padding */
/* Nav */
/* Social */
/* Breakpoints */
/* Core */
/* Note: Do not change this file. Override it in the base directory */
/*
 * HTML5 Boilerplate
 *
 * 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.
 */
/* =============================================================================
   HTML5 element display
   ========================================================================== */
article, aside, details, figcaption, figure, footer, header, hgroup, nav, section, main {
  display: block;
}

audio[controls], canvas, video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}

/* =============================================================================
   Base
   ========================================================================== */
/*
 * 1. Correct text resizing oddly in IE6/7 when body font-size is set using em units
 *    http://clagnut.com/blog/348/#c790
 * 2. Force vertical scrollbar in non-IE
 * 3. Remove Android and iOS tap highlight color to prevent entire container being highlighted
 *    www.yuiblog.com/blog/2010/10/01/quick-tip-customizing-the-mobile-safari-tap-highlight-color/
 * 4. Prevent iOS text size adjust on device orientation change, without disabling user zoom
 *    www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/
 */
html {
  font-size: 100%;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-size: 16px;
  line-height: 1.231;
}

body, button, input, select, textarea {
  font-family: sans-serif;
  color: #222;
}

/*
 * These selection declarations have to be separate
 * No text-shadow: twitter.com/miketaylr/status/12228805301
 * Also: hot pink!
 */
::-moz-selection {
  text-shadow: none;
  background-color: #0091cd;
  color: #fff;
}

::selection {
  text-shadow: none;
  background-color: #0091cd;
  color: #fff;
}

/* =============================================================================
   Links
   ========================================================================== */
a {
  color: #00e;
  text-decoration: none;
  outline: 0;
}

/* Improve readability when focused and hovered in all browsers: people.opera.com/patrickl/experiments/keyboard/test */
a:hover, a:active {
  outline: 0;
}

/* =============================================================================
   Typography
   ========================================================================== */
abbr[title] {
  border-bottom: 1px dotted;
}

b, strong {
  font-weight: bold;
}

blockquote {
  margin: 1em 40px;
}

dfn {
  font-style: italic;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

ins {
  background: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background: #ff0;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

/* Redeclare monospace font family: en.wikipedia.org/wiki/User:Davidgothberg/Test59 */
pre, code, kbd, samp {
  font-family: monospace, monospace;
  _font-family: "courier new", monospace;
  font-size: 1em;
}

/* Improve readability of pre-formatted text in all browsers */
pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

q {
  quotes: none;
}

q:before, q:after {
  content: "";
  content: none;
}

small {
  font-size: 85%;
}

/* Position subscript and superscript content without affecting line-height: gist.github.com/413930 */
sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* =============================================================================
   Lists
   ========================================================================== */
ul, ol {
  margin: 1em 0;
  padding: 0 0 0 40px;
}

dd {
  margin: 0 0 0 40px;
}

nav ul, nav ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* =============================================================================
   Embedded content
   ========================================================================== */
/*
 * Improve image quality when scaled in IE7
 * code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/
 */
img {
  border: 0;
  -ms-interpolation-mode: bicubic;
  max-width: 100%;
  height: auto;
}

svg {
  max-width: 100%;
  height: auto;
}

/*
 * Correct overflow displayed oddly in IE9
 */
svg:not(:root) {
  overflow: hidden;
}

/* =============================================================================
   Figures
   ========================================================================== */
figure {
  margin: 0;
}

/* =============================================================================
   Forms
   ========================================================================== */
form {
  margin: 0;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * 1. Correct color not inheriting in IE6/7/8/9
 * 2. Correct alignment displayed oddly in IE6/7
 */
legend {
  border: 0;
  *margin-left: -7px;
  padding: 0;
}

/* Indicate that 'label' will shift focus to the associated form element */
label {
  cursor: pointer;
}

/*
 * 1. Correct font-size not inheriting in all browsers
 * 2. Remove margins in FF3/4 S5 Chrome
 * 3. Define consistent vertical alignment display in all browsers
 */
button, input, select, textarea {
  font-size: 100%;
  margin: 0;
  vertical-align: baseline;
  *vertical-align: middle;
}

/*
 * 1. Define line-height as normal to match FF3/4 (set using !important in the UA stylesheet)
 * 2. Correct inner spacing displayed oddly in IE6/7
 */
button, input {
  line-height: normal;
  *overflow: visible;
}

/*
 * 1. Display hand cursor for clickable form elements
 * 2. Allow styling of clickable form elements in iOS
 */
button, input[type=button], input[type=reset], input[type=submit] {
  cursor: pointer;
  -webkit-appearance: button;
}

/*
 * Consistent box sizing and appearance
 */
input[type=checkbox], input[type=radio] {
  box-sizing: border-box;
}

input[type=search] {
  box-sizing: content-box;
}

/*
 * Remove inner padding and border in FF3/4
 * www.sitepen.com/blog/2008/05/14/the-devils-in-the-details-fixing-dojos-toolbar-buttons/
 */
button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/* Remove default vertical scrollbar in IE6/7/8/9 */
textarea {
  overflow: auto;
  vertical-align: top;
}

/* Colors for form validity */
/* =============================================================================
   Tables
   ========================================================================== */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* =============================================================================
   Primary styles
   Author:
   ========================================================================== */
/* =============================================================================
   Non-semantic helper classes
   Please define your styles before this section.
   ========================================================================== */
/* For image replacement */
.ir {
  display: block;
  text-indent: -999em;
  overflow: hidden;
  background-repeat: no-repeat;
  text-align: left;
  direction: ltr;
}

.ir br {
  display: none;
}

/* Hide for both screenreaders and browsers:
   css-discuss.incutio.com/wiki/Screenreader_Visibility */
.hidden {
  display: none;
  visibility: hidden;
}

/* Hide only visually, but have it available for screenreaders: by Jon Neal.
  www.webaim.org/techniques/css/invisiblecontent/  &  j.mp/visuallyhidden */
.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

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

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, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-weight: inherit;
  font-style: inherit;
  font-size: 100%;
  font-family: inherit;
}

/* remember to define focus styles! */
:focus {
  outline: 0;
}

body {
  line-height: 1;
  color: black;
  background: white;
}

ol, ul {
  list-style: none;
}

/* tables still need 'cellspacing="0"' in the markup */
table {
  border-collapse: separate;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
}

blockquote, q {
  quotes: "" "";
}

em {
  font-style: italic;
}

strong {
  font-weight: 600;
}

/* Note: Do not change this file. Override it in the base directory */
/* Note: Do not change this file. Override it in the base directory */
.column, .columns {
  float: left;
  margin: 0;
}
.column.padded, .columns.padded {
  margin-left: 1.5%;
  margin-right: 1.5%;
}
.column.inline, .columns.inline {
  display: inline-block;
  float: none;
}
.column.one, .columns.one {
  width: 8.3333333333%;
}
.column.one.padded, .columns.one.padded {
  width: 5.3333333333%;
}
.column.two, .columns.two {
  width: 16.6666666667%;
}
.column.two.padded, .columns.two.padded {
  width: 13.6666666667%;
}
.column.three, .columns.three {
  width: 25%;
}
.column.three.padded, .columns.three.padded {
  width: 22%;
}
.column.four, .columns.four {
  width: 33.3333333333%;
}
.column.four.padded, .columns.four.padded {
  width: 30.3333333333%;
}
.column.five, .columns.five {
  width: 41.6666666667%;
}
.column.five.padded, .columns.five.padded {
  width: 38.6666666667%;
}
.column.six, .columns.six {
  width: 50%;
}
.column.six.padded, .columns.six.padded {
  width: 47%;
}
.column.seven, .columns.seven {
  width: 58.3333333333%;
}
.column.seven.padded, .columns.seven.padded {
  width: 55.3333333333%;
}
.column.eight, .columns.eight {
  width: 66.6666666667%;
}
.column.eight.padded, .columns.eight.padded {
  width: 63.6666666667%;
}
.column.nine, .columns.nine {
  width: 75%;
}
.column.nine.padded, .columns.nine.padded {
  width: 72%;
}
.column.ten, .columns.ten {
  width: 83.3333333333%;
}
.column.ten.padded, .columns.ten.padded {
  width: 80.3333333333%;
}
.column.eleven, .columns.eleven {
  width: 91.6666666667%;
}
.column.eleven.padded, .columns.eleven.padded {
  width: 88.6666666667%;
}

.row::after {
  display: block;
  clear: both;
  float: none;
  content: "";
}

@media screen and (max-width: 800px) {
  .one.column:not(.no-collapse), .one.columns:not(.no-collapse), .one.column.padded:not(.no-collapse), .one.columns.padded:not(.no-collapse), .two.column:not(.no-collapse), .two.columns:not(.no-collapse), .two.column.padded:not(.no-collapse), .two.columns.padded:not(.no-collapse), .three.column:not(.no-collapse), .three.columns:not(.no-collapse), .three.column.padded:not(.no-collapse), .three.columns.padded:not(.no-collapse), .four.column:not(.no-collapse), .four.columns:not(.no-collapse), .four.column.padded:not(.no-collapse), .four.columns.padded:not(.no-collapse), .five.column:not(.no-collapse), .five.columns:not(.no-collapse), .five.column.padded:not(.no-collapse), .five.columns.padded:not(.no-collapse), .six.column:not(.no-collapse), .six.columns:not(.no-collapse), .six.column.padded:not(.no-collapse), .six.columns.padded:not(.no-collapse), .seven.column:not(.no-collapse), .seven.columns:not(.no-collapse), .seven.column.padded:not(.no-collapse), .seven.columns.padded:not(.no-collapse), .eight.column:not(.no-collapse), .eight.columns:not(.no-collapse), .eight.column.padded:not(.no-collapse), .eight.columns.padded:not(.no-collapse), .nine.column:not(.no-collapse), .nine.columns:not(.no-collapse), .nine.column.padded:not(.no-collapse), .nine.columns.padded:not(.no-collapse), .ten.column:not(.no-collapse), .ten.columns:not(.no-collapse), .ten.column.padded:not(.no-collapse), .ten.columns.padded:not(.no-collapse), .eleven.column:not(.no-collapse), .eleven.columns:not(.no-collapse), .eleven.column.padded:not(.no-collapse), .eleven.columns.padded:not(.no-collapse) {
    display: block;
    float: none;
    width: auto;
  }
}
nav.social ul li, ul.social li {
  display: inline-block;
}

nav.social ul li a, ul.social ul li a, i.social {
  height: 0;
  padding: 25px 0 0 0;
  width: 25px;
  overflow: hidden;
}

nav.social ul li a, ul.social ul li a {
  display: block;
}

i.social {
  display: inline-block;
}

nav.social ul li.facebook a, nav.social ul.facebook, ul.social li.facebook a, ul.social.facebook, i.social li.facebook a, i.social.facebook {
  background-size: 25px 25px;
  background-image: url("data:image/svg+xml;utf8,%3Csvg aria-labelledby='simpleicons-facebook-icon' role='img' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Ctitle id='simpleicons-facebook-icon'%3EFacebook icon%3C/title%3E%3Cpath fill='%232bbfec' d='M22.676 0H1.324C.593 0 0 .593 0 1.324v21.352C0 23.408.593 24 1.324 24h11.494v-9.294H9.689v-3.621h3.129V8.41c0-3.099 1.894-4.785 4.659-4.785 1.325 0 2.464.097 2.796.141v3.24h-1.921c-1.5 0-1.792.721-1.792 1.771v2.311h3.584l-.465 3.63H16.56V24h6.115c.733 0 1.325-.592 1.325-1.324V1.324C24 .593 23.408 0 22.676 0'/%3E%3C/svg%3E");
}
nav.social ul li.twitter a, nav.social ul.twitter, ul.social li.twitter a, ul.social.twitter, i.social li.twitter a, i.social.twitter {
  background-size: 25px 25px;
  background-image: url("data:image/svg+xml;utf8,%3Csvg aria-labelledby='simpleicons-twitter-icon' role='img' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Ctitle id='simpleicons-twitter-icon'%3ETwitter icon%3C/title%3E%3Cpath fill='%232bbfec' d='M23.954 4.569c-.885.389-1.83.654-2.825.775 1.014-.611 1.794-1.574 2.163-2.723-.951.555-2.005.959-3.127 1.184-.896-.959-2.173-1.559-3.591-1.559-2.717 0-4.92 2.203-4.92 4.917 0 .39.045.765.127 1.124C7.691 8.094 4.066 6.13 1.64 3.161c-.427.722-.666 1.561-.666 2.475 0 1.71.87 3.213 2.188 4.096-.807-.026-1.566-.248-2.228-.616v.061c0 2.385 1.693 4.374 3.946 4.827-.413.111-.849.171-1.296.171-.314 0-.615-.03-.916-.086.631 1.953 2.445 3.377 4.604 3.417-1.68 1.319-3.809 2.105-6.102 2.105-.39 0-.779-.023-1.17-.067 2.189 1.394 4.768 2.209 7.557 2.209 9.054 0 13.999-7.496 13.999-13.986 0-.209 0-.42-.015-.63.961-.689 1.8-1.56 2.46-2.548l-.047-.02z'/%3E%3C/svg%3E");
}
nav.social ul li.instagram a, nav.social ul.instagram, ul.social li.instagram a, ul.social.instagram, i.social li.instagram a, i.social.instagram {
  background-size: 25px 25px;
  background-image: url("data:image/svg+xml;utf8,%3Csvg aria-labelledby='simpleicons-instagram-icon' role='img' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Ctitle id='simpleicons-instagram-icon'%3EInstagram icon%3C/title%3E%3Cpath fill='%232bbfec' d='M12 0C8.74 0 8.333.015 7.053.072 5.775.132 4.905.333 4.14.63c-.789.306-1.459.717-2.126 1.384S.935 3.35.63 4.14C.333 4.905.131 5.775.072 7.053.012 8.333 0 8.74 0 12s.015 3.667.072 4.947c.06 1.277.261 2.148.558 2.913.306.788.717 1.459 1.384 2.126.667.666 1.336 1.079 2.126 1.384.766.296 1.636.499 2.913.558C8.333 23.988 8.74 24 12 24s3.667-.015 4.947-.072c1.277-.06 2.148-.262 2.913-.558.788-.306 1.459-.718 2.126-1.384.666-.667 1.079-1.335 1.384-2.126.296-.765.499-1.636.558-2.913.06-1.28.072-1.687.072-4.947s-.015-3.667-.072-4.947c-.06-1.277-.262-2.149-.558-2.913-.306-.789-.718-1.459-1.384-2.126C21.319 1.347 20.651.935 19.86.63c-.765-.297-1.636-.499-2.913-.558C15.667.012 15.26 0 12 0zm0 2.16c3.203 0 3.585.016 4.85.071 1.17.055 1.805.249 2.227.415.562.217.96.477 1.382.896.419.42.679.819.896 1.381.164.422.36 1.057.413 2.227.057 1.266.07 1.646.07 4.85s-.015 3.585-.074 4.85c-.061 1.17-.256 1.805-.421 2.227-.224.562-.479.96-.899 1.382-.419.419-.824.679-1.38.896-.42.164-1.065.36-2.235.413-1.274.057-1.649.07-4.859.07-3.211 0-3.586-.015-4.859-.074-1.171-.061-1.816-.256-2.236-.421-.569-.224-.96-.479-1.379-.899-.421-.419-.69-.824-.9-1.38-.165-.42-.359-1.065-.42-2.235-.045-1.26-.061-1.649-.061-4.844 0-3.196.016-3.586.061-4.861.061-1.17.255-1.814.42-2.234.21-.57.479-.96.9-1.381.419-.419.81-.689 1.379-.898.42-.166 1.051-.361 2.221-.421 1.275-.045 1.65-.06 4.859-.06l.045.03zm0 3.678c-3.405 0-6.162 2.76-6.162 6.162 0 3.405 2.76 6.162 6.162 6.162 3.405 0 6.162-2.76 6.162-6.162 0-3.405-2.76-6.162-6.162-6.162zM12 16c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4zm7.846-10.405c0 .795-.646 1.44-1.44 1.44-.795 0-1.44-.646-1.44-1.44 0-.794.646-1.439 1.44-1.439.793-.001 1.44.645 1.44 1.439z'/%3E%3C/svg%3E");
}
nav.social ul li.pinterest a, nav.social ul.pinterest, ul.social li.pinterest a, ul.social.pinterest, i.social li.pinterest a, i.social.pinterest {
  background-size: 25px 25px;
  background-image: url("data:image/svg+xml;utf8,%3Csvg aria-labelledby='simpleicons-pinterest-icon' role='img' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Ctitle id='simpleicons-pinterest-icon'%3EPinterest icon%3C/title%3E%3Cpath fill='%232bbfec' d='M12.017 0C5.396 0 .029 5.367.029 11.987c0 5.079 3.158 9.417 7.618 11.162-.105-.949-.199-2.403.041-3.439.219-.937 1.406-5.957 1.406-5.957s-.359-.72-.359-1.781c0-1.663.967-2.911 2.168-2.911 1.024 0 1.518.769 1.518 1.688 0 1.029-.653 2.567-.992 3.992-.285 1.193.6 2.165 1.775 2.165 2.128 0 3.768-2.245 3.768-5.487 0-2.861-2.063-4.869-5.008-4.869-3.41 0-5.409 2.562-5.409 5.199 0 1.033.394 2.143.889 2.741.099.12.112.225.085.345-.09.375-.293 1.199-.334 1.363-.053.225-.172.271-.401.165-1.495-.69-2.433-2.878-2.433-4.646 0-3.776 2.748-7.252 7.92-7.252 4.158 0 7.392 2.967 7.392 6.923 0 4.135-2.607 7.462-6.233 7.462-1.214 0-2.354-.629-2.758-1.379l-.749 2.848c-.269 1.045-1.004 2.352-1.498 3.146 1.123.345 2.306.535 3.55.535 6.607 0 11.985-5.365 11.985-11.987C23.97 5.39 18.592.026 11.985.026L12.017 0z'/%3E%3C/svg%3E");
}
nav.social ul li.youtube a, nav.social ul.youtube, ul.social li.youtube a, ul.social.youtube, i.social li.youtube a, i.social.youtube {
  background-size: 25px 25px;
  background-image: url("data:image/svg+xml;utf8,%3Csvg aria-labelledby='simpleicons-youtube-icon' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ctitle id='simpleicons-youtube-icon'%3EYouTube icon%3C/title%3E%3Cpath fill='%232bbfec' class='a' d='M23.495 6.205a3.007 3.007 0 0 0-2.088-2.088c-1.87-.501-9.396-.501-9.396-.501s-7.507-.01-9.396.501A3.007 3.007 0 0 0 .527 6.205a31.247 31.247 0 0 0-.522 5.805 31.247 31.247 0 0 0 .522 5.783 3.007 3.007 0 0 0 2.088 2.088c1.868.502 9.396.502 9.396.502s7.506 0 9.396-.502a3.007 3.007 0 0 0 2.088-2.088 31.247 31.247 0 0 0 .5-5.783 31.247 31.247 0 0 0-.5-5.805zM9.609 15.601V8.408l6.264 3.602z'/%3E%3C/svg%3E");
}
nav.social ul li.vimeo a, nav.social ul.vimeo, ul.social li.vimeo a, ul.social.vimeo, i.social li.vimeo a, i.social.vimeo {
  background-size: 25px 25px;
  background-image: url("data:image/svg+xml;utf8,%3Csvg aria-labelledby='simpleicons-vimeo-icon' role='img' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Ctitle id='simpleicons-vimeo-icon'%3EVimeo icon%3C/title%3E%3Cpath fill='%232bbfec' d='M23.977 6.416c-.105 2.338-1.739 5.543-4.894 9.609-3.268 4.247-6.026 6.37-8.29 6.37-1.409 0-2.578-1.294-3.553-3.881L5.322 11.4C4.603 8.816 3.834 7.522 3.01 7.522c-.179 0-.806.378-1.881 1.132L0 7.197c1.185-1.044 2.351-2.084 3.501-3.128C5.08 2.701 6.266 1.984 7.055 1.91c1.867-.18 3.016 1.1 3.447 3.838.465 2.953.789 4.789.971 5.507.539 2.45 1.131 3.674 1.776 3.674.502 0 1.256-.796 2.265-2.385 1.004-1.589 1.54-2.797 1.612-3.628.144-1.371-.395-2.061-1.614-2.061-.574 0-1.167.121-1.777.391 1.186-3.868 3.434-5.757 6.762-5.637 2.473.06 3.628 1.664 3.493 4.797l-.013.01z'/%3E%3C/svg%3E");
}
nav.social ul li.linkedin a, nav.social ul.linkedin, ul.social li.linkedin a, ul.social.linkedin, i.social li.linkedin a, i.social.linkedin {
  background-size: 25px 25px;
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='%232bbfec' d='M19 0h-14c-2.761 0-5 2.239-5 5v14c0 2.761 2.239 5 5 5h14c2.762 0 5-2.239 5-5v-14c0-2.761-2.238-5-5-5zm-11 19h-3v-11h3v11zm-1.5-12.268c-.966 0-1.75-.79-1.75-1.764s.784-1.764 1.75-1.764 1.75.79 1.75 1.764-.783 1.764-1.75 1.764zm13.5 12.268h-3v-5.604c0-3.368-4-3.113-4 0v5.604h-3v-11h3v1.765c1.396-2.586 7-2.777 7 2.476v6.759z'/%3E%3C/svg%3E");
}

.inline {
  display: inline;
}

.inline-block {
  display: inline-block;
}

.block {
  display: block;
}

.block-center {
  display: block;
  margin: 0 auto;
}

.text-left, .left {
  text-align: left;
}

.text-center, .center {
  text-align: center;
}

.text-right, .right {
  text-align: right;
}

.float-left {
  float: left;
}

.float-right {
  float: right;
}

.invisible {
  visibility: hidden;
}

.hidden {
  visibility: hidden;
}

.clear:before, .clear:after {
  content: "";
  display: table;
}

.clear:after {
  clear: both;
}

.clear {
  zoom: 1;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.overflow-scroll {
  overflow: scroll;
}

.off {
  opacity: 0;
}

.on {
  opacity: 1;
}

@media only screen and (max-width: 1000px) {
  .hide-on-mobile {
    display: none;
  }
}

.background {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: center center;
}

.middle {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.o-0 {
  opacity: 0;
}

.o-10 {
  opacity: 0.1;
}

.o-20 {
  opacity: 0.2;
}

.o-25 {
  opacity: 0.25;
}

.o-30 {
  opacity: 0.3;
}

.o-40 {
  opacity: 0.4;
}

.o-50 {
  opacity: 0.5;
}

.o-60 {
  opacity: 0.6;
}

.o-70 {
  opacity: 0.7;
}

.o-75 {
  opacity: 0.75;
}

.o-80 {
  opacity: 0.8;
}

.o-90 {
  opacity: 0.9;
}

.o-100 {
  opacity: 1;
}

.w-0 {
  width: 0;
}

.w-5 {
  width: 5%;
}

.w-10 {
  width: 10%;
}

.w-15 {
  width: 15%;
}

.w-20 {
  width: 20%;
}

.w-25 {
  width: 25%;
}

.w-30 {
  width: 30%;
}

.w-35 {
  width: 35%;
}

.w-40 {
  width: 40%;
}

.w-45 {
  width: 45%;
}

.w-50 {
  width: 50%;
}

.w-55 {
  width: 55%;
}

.w-60 {
  width: 60%;
}

.w-65 {
  width: 65%;
}

.w-70 {
  width: 70%;
}

.w-75 {
  width: 75%;
}

.w-80 {
  width: 80%;
}

.w-85 {
  width: 85%;
}

.w-90 {
  width: 90%;
}

.w-95 {
  width: 95%;
}

.w-100 {
  width: 100%;
}

.h-0 {
  height: 0;
}

.h-10 {
  height: 10%;
}

.h-20 {
  height: 20%;
}

.h-30 {
  height: 30%;
}

.h-40 {
  height: 40%;
}

.h-50 {
  height: 50%;
}

.h-60 {
  height: 60%;
}

.h-70 {
  height: 70%;
}

.h-80 {
  height: 80%;
}

.h-90 {
  height: 90%;
}

.h-100 {
  height: 100%;
}

.mh-100 {
  max-height: 100%;
}

.fade {
  transition: opacity 500ms, top 500ms, right 500ms, left 500ms, bottom 500ms;
}

.fade-in {
  transition: opacity 500ms, top 500ms, right 500ms, left 500ms, bottom 500ms;
}

.fade-100 {
  transition: opacity 100ms, top 100ms, right 100ms, left 100ms, bottom 100ms;
}

.fade-200 {
  transition: opacity 200ms, top 200ms, right 200ms, left 200ms, bottom 200ms;
}

.fade-300 {
  transition: opacity 300ms, top 300ms, right 300ms, left 300ms, bottom 300ms;
}

.fade-400 {
  transition: opacity 400ms, top 400ms, right 400ms, left 400ms, bottom 400ms;
}

.fade-500 {
  transition: opacity 500ms, top 500ms, right 500ms, left 500ms, bottom 500ms;
}

.fade-600 {
  transition: opacity 600ms, top 600ms, right 600ms, left 600ms, bottom 600ms;
}

.fade-700 {
  transition: opacity 700ms, top 700ms, right 700ms, left 700ms, bottom 700ms;
}

.fade-800 {
  transition: opacity 800ms, top 800ms, right 800ms, left 800ms, bottom 800ms;
}

.fade-900 {
  transition: opacity 900ms, top 900ms, right 900ms, left 900ms, bottom 900ms;
}

.fade-1000 {
  transition: opacity 1000ms, top 1000ms, right 1000ms, left 1000ms, bottom 1000ms;
}

.fade-1500 {
  transition: opacity 1500ms, top 1500ms, right 1500ms, left 1500ms, bottom 1500ms;
}

.fade-2000 {
  transition: opacity 2000ms, top 2000ms, right 2000ms, left 2000ms, bottom 2000ms;
}

/* Elements */
div.main nav.page a.featured, div.main a.button,
div.main .button a, .intro .button a {
  font-size: 0.875em;
  font-weight: 500;
  position: relative;
  display: inline-block;
  line-height: 1em;
  padding: 1.25em 4em 1.125em 2em;
  margin: 0 0.5em 1em 0;
  transition: color 250ms, background-color 250ms;
  color: #0096ce;
  border: solid 2px #00ccff;
  border-radius: 50px;
}
div.main nav.page a.featured::before, div.main a.button::before,
div.main .button a::before, .intro .button a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  background-color: #fff;
  z-index: -1;
  transition: background-color 250ms;
}
div.main nav.page a.featured::after, div.main a.button::after,
div.main .button a::after, .intro .button a::after {
  content: "→";
  position: absolute;
  color: #00ccff;
  display: block;
  right: 1.5em;
  top: 1em;
  font-size: 1.25em;
  transition: right 250ms;
}
div.main nav.page a.featured:hover, div.main a.button:hover,
div.main .button a:hover, .intro .button a:hover {
  color: #fff;
}
div.main nav.page a.featured:hover::before, div.main a.button:hover::before,
div.main .button a:hover::before, .intro .button a:hover::before {
  background-color: #00ccff;
}
div.main nav.page a.featured:hover::after, div.main a.button:hover::after,
div.main .button a:hover::after, .intro .button a:hover::after {
  right: 1em;
  color: #fff;
}
div.main nav.page a.primary.featured, div.main a.primary.button,
div.main .button a.primary, .intro .button a.primary {
  font-size: clamp(0.875em, 1vw + 0.875em, 1em);
  box-shadow: 0 0.8rem 2.6rem rgba(0, 0, 0, 0.05), 2px 2px 0 rgba(0, 0, 0, 0.02);
}
div.main nav.page a.primary.featured:hover, div.main a.primary.button:hover,
div.main .button a.primary:hover, .intro .button a.primary:hover {
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.2);
}
div.main nav.page a.primary.featured:hover::before, div.main a.primary.button:hover::before,
div.main .button a.primary:hover::before, .intro .button a.primary:hover::before {
  background: linear-gradient(to bottom right, #00BCF2, rgb(0, 159.8, 205.7));
}

/* Don't change this file. */
.content form .fsLabelVertical, section form .fsLabelVertical {
  display: block !important;
}
.content form .fsHiddenField, section form .fsHiddenField {
  display: none !important;
}
.content form .form-control, section form .form-control {
  margin: 1.5em 0;
}
.content form input[type=checkbox], .content form input[type=radio], section form input[type=checkbox], section form input[type=radio] {
  margin: 6px;
}
.content form input[type=text], .content form input[type=email], .content form input[type=number], .content form input[type=tel], .content form input[type=password], .content form select, section form input[type=text], section form input[type=email], section form input[type=number], section form input[type=tel], section form input[type=password], section form select {
  border: solid 1px #ccc;
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-size: 1em;
  font-weight: 300;
  padding: 0.5em 0.5em;
  display: block;
  width: calc(100% - 1em - 2px);
  margin: 0.5em 0;
  outline: none;
  border-radius: 0;
  background-color: transparent;
  -webkit-appearance: none;
  box-sizing: border-box;
}
.content form input[type=text]:focus, .content form input[type=email]:focus, .content form input[type=number]:focus, .content form input[type=tel]:focus, .content form input[type=password]:focus, .content form select:focus, section form input[type=text]:focus, section form input[type=email]:focus, section form input[type=number]:focus, section form input[type=tel]:focus, section form input[type=password]:focus, section form select:focus {
  border: solid 1px #0096ce;
}
.content form textarea, section form textarea {
  border: solid 1px #ccc;
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-size: 1em;
  font-weight: 300;
  padding: 0.5em 0.5em;
  display: block;
  width: 96%;
  margin: 0.5em 0 !important;
  height: 8em;
}
.content form textarea:focus, section form textarea:focus {
  border: solid 1px #0096ce;
}
.content form input[type=submit], .content form button, section form input[type=submit], section form button {
  font-size: 0.875em;
  font-weight: 500;
  position: relative;
  display: inline-block;
  line-height: 1em;
  padding: 1.25em 2em 1.125em 2em;
  margin: 0 0.5em 1em 0;
  transition: color 250ms, background-color 250ms;
  color: #0096ce;
  border: solid 2px #00ccff;
  border-radius: 50px;
  font-family: "Gotham A", "Gotham B", sans-serif;
  background-color: #fff;
}
.content form input[type=submit]::before, .content form button::before, section form input[type=submit]::before, section form button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  background-color: #fff;
  z-index: -1;
  transition: background-color 250ms;
}
.content form input[type=submit]::after, .content form button::after, section form input[type=submit]::after, section form button::after {
  content: "→";
  position: absolute;
  color: #00ccff;
  display: block;
  right: 1.5em;
  top: 1em;
  font-size: 1.25em;
  transition: right 250ms;
}
.content form input[type=submit]:hover, .content form button:hover, section form input[type=submit]:hover, section form button:hover {
  background-color: #00ccff;
  color: #fff;
}
.content form input[type=submit]:hover::before, .content form button:hover::before, section form input[type=submit]:hover::before, section form button:hover::before {
  background-color: #00ccff;
}
.content form input[type=submit]:hover::after, .content form button:hover::after, section form input[type=submit]:hover::after, section form button:hover::after {
  right: 1em;
  color: #fff;
}

.content .fsPage h3 {
  font-size: 1.5em;
  margin: 1.5em 0 0;
  color: #0096ce;
}

.content .fsFieldCell,
.content .fsSubFieldGroup {
  width: 100%;
}
.content .fsFieldCell {
  flex-direction: column;
  margin: 1em 0 0;
}
.content .wf-active .fsBody, .content .wf-active .fsBody input, .content .wf-active .fsBody select, .content .wf-active .fsBody textarea {
  font-family: "Gotham A", "Gotham B", sans-serif !important;
}
.content .fsBody .fsLabel, .content .fsBody label:not(.fsOptionLabel) {
  font-weight: 800;
}
.content .fsForm .ui-slider-handle:focus, .content .fsForm input:focus, .content .fsForm select:focus, .content .fsForm textarea:focus {
  box-shadow: none !important;
  border: solid 1px #0096ce !important;
}
.content .fsBody .fsFieldRow {
  margin: 1em 0 0 !important;
}
.content .fsSection:not(:empty) {
  padding-bottom: 2rem;
}
.content .fsForm .fsSection h3:first-of-type {
  margin-top: 0;
}
.content .fsBody .fsOptionLabel {
  /*
  float:left;
  width:25% !important;
  margin:0.25em 0;
  font-weight:normal;

  @media only screen and (max-width: 900px) {
    float:none;
    width:auto !important;
  }
  */
}
.content .fsSectionHeading:empty {
  display: none;
}
.content .fsForm button {
  padding-right: 3.6em;
  text-decoration: none;
}
.content .fsForm .fsFieldLongAnswer {
  width: 100% !important;
}
.content .fsLabelVertical fieldset {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
.content .fsLabelVertical fieldset div {
  margin: 0 0 0.25em;
}

.content ul, .content ol {
  margin: 1.5em 0;
}
.content ul li {
  list-style-type: disc;
  margin: 0.2em 0 0.2em 2em;
}
.content ol li {
  list-style-type: decimal;
  margin: 1em 0 1em 2em;
}
.content ul li,
.content ol li {
  font-size: 1.125em;
}

/* Note: Do not change this file. Override it in the base directory */
a.navicon {
  display: none;
  content: " ";
  position: fixed;
  height: 0;
  padding-top: 64px;
  width: 64px;
  overflow: hidden;
  background-color: #0096ce;
  top: 0;
  right: 0;
  background-size: 30px 22px;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: 300;
  transition: background-image 250ms;
}
a.navicon svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40%;
}
a.navicon #navicon-open {
  display: block;
}
a.navicon #navicon-close {
  display: none;
}
@media only screen and (max-width: 1000px) {
  a.navicon {
    display: block;
  }
}
a.navicon.on {
  background-color: #00ccff;
  background-size: 25px 25px;
}
a.navicon.on #navicon-open {
  display: none;
}
a.navicon.on #navicon-close {
  display: block;
}

.overlay-trigger {
  cursor: pointer;
}

.overlay {
  z-index: 999999;
  position: fixed;
  left: -9999px;
  width: 100vw;
  height: 0;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.7);
  opacity: 0;
  overflow-y: scroll;
  transform: scale(1.25);
  -webkit-transform: scale(1.25);
  transition: opacity 200ms, transform 200ms;
  -webkit-transition: opacity 200ms, -webkit-transform 200ms;
}
.overlay.on {
  left: 0;
  top: 0;
  height: 100vh;
  opacity: 1;
  transform: scale(1);
  -webkit-transform: scale(1);
}
.overlay a.close {
  position: fixed;
  top: 2vw;
  right: 2vw;
  width: 100px;
  height: 100px;
  opacity: 0.7;
  border: none;
  z-index: 100;
  color: #fff;
  font-size: clamp(3rem, 4vw + 2rem, 6rem);
  cursor: pointer;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1em;
}
.overlay a.close:hover {
  opacity: 1;
}
.overlay .overlay-video {
  position: relative;
  max-width: 1200px;
  padding-top: 56.25%;
  margin: 0 auto;
  background-color: #000;
}
.overlay .overlay-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.overlay .overlay-container {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  line-height: 1.25em;
  max-height: calc(100vh - 4em);
  background-color: #fff;
  border-radius: 1rem;
  max-width: 800px;
  overflow: hidden;
}
.overlay .overlay-container h2 {
  color: rgb(53.2893700787, 63.25, 73.2106299213);
  font-size: 2em;
  font-weight: 800;
  margin: 0 0 0.25em;
}
.overlay .overlay-container h3 {
  margin: 1em 0 0.25em;
  font-size: 1.5em;
  font-weight: 800;
  color: rgb(53.2893700787, 63.25, 73.2106299213);
}
.overlay .overlay-container h5 {
  text-transform: uppercase;
  font-weight: 800;
  font-size: 1em;
  color: rgb(53.2893700787, 63.25, 73.2106299213);
}
.overlay .overlay-container h6 {
  font-size: 0.875em;
  color: rgb(53.2893700787, 63.25, 73.2106299213);
  font-weight: 800;
}
.overlay .overlay-container h6 svg {
  height: 12px;
  width: 12px;
}
.overlay .overlay-container h6 svg g {
  fill: rgb(0, 94.2961165049, 129.5);
}
.overlay .overlay-container p {
  margin: 0.5em 0;
}
.overlay .overlay-container table {
  width: 100%;
  margin: 0.5em 0 1.5em;
}
.overlay .overlay-container table tbody tr td {
  padding: 0.75em 0;
  font-weight: 300;
  font-size: 0.875em;
}
.overlay .overlay-container table tbody tr td:last-child {
  text-align: right;
}
.overlay .overlay-container form {
  padding: 1em 0;
}
.overlay .overlay-container form label {
  display: block;
  font-weight: 700;
  padding: 0 0 0.25rem;
}
.overlay .overlay-container form .fsRowBody {
  margin: 0 0 2rem 0;
}
.overlay .overlay-container form input[type=button] {
  border: none !important;
  background: #004E77;
  color: #fff;
  border-radius: 0.02rem;
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 700;
  padding: 0.4rem 1rem;
}
.overlay .overlay-container form div.showMobile {
  display: none;
}
.overlay .overlay-container input[type=text], .overlay .overlay-container input[type=email], .overlay .overlay-container input[type=number], .overlay .overlay-container input[type=tel], .overlay .overlay-container select {
  border: none;
  border-bottom: solid 1px #ccc;
  font-weight: 500;
}
.overlay .overlay-container input[type=text]:focus, .overlay .overlay-container input[type=email]:focus, .overlay .overlay-container input[type=number]:focus, .overlay .overlay-container input[type=tel]:focus, .overlay .overlay-container select:focus {
  border: none;
  border-bottom: solid 1px #0096ce;
}
.overlay .overlay-container input[type=checkbox] {
  margin: 0 0.75em 1.5em 0.5em;
  transform: scale(1.5) translateY(0.25em);
}
.overlay .overlay-container input[type=submit] {
  display: block;
  position: absolute;
  bottom: 0;
  width: 100%;
  left: 0;
  padding: 1.5em 0;
  margin: 0;
  top: auto;
  text-align: center;
  font-size: 1.125em;
  border-radius: 0;
  background-color: #00BCF2;
  font-family: "Gotham A", "Gotham B", sans-serif;
  color: #fff;
  font-weight: 700;
  border: none !important;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.05);
}
@media only screen and (max-width: 800px) {
  .overlay .overlay-main form, .overlay .overlay article {
    margin-top: 5em;
    margin-bottom: 5em;
    position: relative;
    top: auto;
    transform: none;
    -webkit-transform: none;
  }
}

.content table {
  width: 100%;
  margin: 1.5em 0;
}
.content table tr:first-child td, .content table tr th {
  padding: 1.25em 0;
  font-weight: 700;
  font-size: 0.875em;
  border-bottom: solid 1px #777;
}
.content table tr td {
  padding: 1.25em 0;
  font-weight: 300;
  font-size: 0.875em;
  border-bottom: solid 1px #ddd;
}
.content table tr td p {
  margin: 0;
}
body {
  font-family: "Gotham A", "Gotham B", sans-serif;
  color: #6b7f93;
}
body a {
  color: #135379;
}
body a:hover {
  color: rgb(25.9214285714, 113.2357142857, 165.0785714286);
}

.content {
  font-size: 1em;
  line-height: 1.75em;
  /*
    figure {
        text-align:center;
        padding:0 10%;
    }

    figure img {
        border-radius:10px;
        box-shadow:0 5px 15px rgba(0,0,0,0.25);
    }
  */
}
.content h1, .content h2, .content h3, .content h4, .content h5 {
  color: #004E77;
}
.content h1 {
  font-size: clamp(2rem, 2vw + 1rem, 3rem);
  margin: 1em 0 0.25em;
  font-weight: 800;
  line-height: 1.25em;
}
.content h2 {
  font-size: clamp(1.6rem, 1vw + 1rem, 2.2rem);
  margin: 1em 0 0.5em;
  font-weight: 800;
  line-height: 1.25em;
}
.content h3 {
  font-size: clamp(1.2rem, 1vw + 1rem, 1.8rem);
  margin: 1em 0 0.25em;
  font-weight: 800;
  line-height: 1.25em;
}
.content h4 {
  margin: 1em 0 0.5em;
  font-size: clamp(1.1rem, 1vw + 1rem, 1.4rem);
  font-weight: 600;
  line-height: 1.25em;
}
.content h5 {
  margin: 1em 0 0.25em;
  font-size: clamp(1rem, 1vw + 1rem, 1.3rem);
  font-weight: 700;
}
.content p {
  margin: 0.5em 0 1.5em;
  font-size: 1.125em;
  line-height: 1.5em;
}
.content hr {
  border-top: 1px solid #e1e5e9;
  margin: calc(1rem + 2vw) 0;
}
.content sup {
  font-size: 0.7em;
}
.content .no-break {
  white-space: nowrap;
}

/* Patterns */
div.marquee {
  position: relative;
  margin-top: 2rem;
  max-width: 1500px;
  margin: 2rem auto 0;
  overflow: hidden;
}
div.marquee::before, div.marquee::after {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  z-index: 2;
  width: 20vw;
}
div.marquee::before {
  left: 0;
  background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
}
div.marquee::after {
  right: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
}
div.marquee .marquee-row {
  height: 100px;
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
  position: relative;
  margin: 0 auto;
  z-index: 1;
}
@media screen and (min-width: 1000px) {
  div.marquee .marquee-row {
    margin: calc(1rem + 0.5vw) auto;
  }
}
div.marquee .marquee-row .marquee-group {
  animation-duration: 60s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
div.marquee .marquee-row .marquee-group {
  animation-name: marquee-0;
}
@media screen and (min-width: 400px) {
  div.marquee .marquee-row .marquee-group {
    animation-name: marquee-400;
  }
}
@media screen and (min-width: 600px) {
  div.marquee .marquee-row .marquee-group {
    animation-name: marquee-600;
  }
}
@media screen and (min-width: 800px) {
  div.marquee .marquee-row .marquee-group {
    animation-name: marquee-800;
  }
}
@media screen and (min-width: 1000px) {
  div.marquee .marquee-row .marquee-group {
    animation-name: marquee-1000;
  }
}
div.marquee .marquee-row:nth-child(even) .marquee-group {
  animation-direction: reverse;
}
div.marquee .marquee-group {
  width: 1000%;
  height: 100%;
  position: absolute;
}
@media screen and (min-width: 400px) {
  div.marquee .marquee-group {
    width: 800%;
  }
}
@media screen and (min-width: 600px) {
  div.marquee .marquee-group {
    width: 500%;
  }
}
@media screen and (min-width: 800px) {
  div.marquee .marquee-group {
    width: 400%;
  }
}
@media screen and (min-width: 1000px) {
  div.marquee .marquee-group {
    width: 300%;
  }
}
div.marquee .interior {
  display: flex;
  flex-direction: row;
  height: 100%;
}
div.marquee figure {
  display: block;
  margin: 0 1.5rem;
  padding: 0;
  height: 100%;
  width: calc(20% - 3rem);
}
div.marquee figure img {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center center;
     object-position: center center;
  width: calc(100% - 4rem);
  height: calc(100% - 4rem);
  margin: 2rem;
}
div.marquee figure.landscape-wide {
  margin: 0 0.8rem;
  width: calc(20% - 1.6rem);
}
div.marquee figure.landscape-wide img {
  margin: 1.9rem 0.3rem;
  width: calc(100% - 0.6rem);
  height: calc(100% - 3.8rem);
}
div.marquee figure.landscape img {
  margin: 1.5rem 1.25rem;
  width: calc(100% - 2rem);
  height: calc(100% - 3rem);
}
div.marquee figure.portrait img {
  margin: 1rem 2rem;
  height: calc(100% - 2rem);
}
div.marquee figure.square img {
  margin: 1.1rem;
  height: calc(100% - 2.2rem);
  width: calc(100% - 2.2rem);
}
@keyframes marquee-0 {
  0% {
    left: 0;
  }
  100% {
    left: -500%;
  }
}
@keyframes marquee-400 {
  0% {
    left: 0;
  }
  100% {
    left: -400%;
  }
}
@keyframes marquee-600 {
  0% {
    left: 0;
  }
  100% {
    left: -250%;
  }
}
@keyframes marquee-800 {
  0% {
    left: 0;
  }
  100% {
    left: -200%;
  }
}
@keyframes marquee-1000 {
  0% {
    left: 0;
  }
  100% {
    left: -150%;
  }
}

.contact-bubble {
  position: fixed;
  bottom: 1rem;
  right: -4rem;
  border-radius: 80px;
  padding: 10px;
  background-color: #fff;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1), 0 0.05rem 0 rgba(0, 0, 0, 0.05);
  z-index: 100;
  display: inline-block;
  width: 500px;
  opacity: 0;
  transition: opacity 400ms, right 400ms, bottom 400ms;
  border: 1px solid #f2f2f2;
}
.contact-bubble.in {
  opacity: 1;
  right: 1rem;
}
@media screen and (max-width: 999px) {
  .contact-bubble {
    width: calc(100% - 20px);
    border-radius: 0;
    bottom: -25px;
    right: 0;
    padding: 10px 10px 3.5rem;
  }
  .ready .contact-bubble {
    right: 0;
    bottom: 61.5px;
  }
}
.contact-bubble.off {
  opacity: 0;
  right: -500px;
}
@media screen and (max-width: 999px) {
  .contact-bubble.off {
    right: 0;
    bottom: -500px;
  }
}
.contact-bubble button.close {
  display: block;
  z-index: 10;
  width: 40px;
  height: 40px;
  line-height: 0px;
  position: absolute;
  background-color: #0096ce;
  color: #fff;
  text-align: center;
  font-size: 2.125rem;
  right: 20px;
  top: -15px;
  border-radius: 25px;
  font-weight: 400;
  padding: 0 0.125em 0.175em 0.125em;
  text-align: center;
  margin: 0;
  border: none;
}
.contact-bubble button.close span {
  position: relative;
}
.contact-bubble button.close::after {
  display: none;
}
@media only screen and (max-width: 999px) {
  .contact-bubble button.close {
    right: 10px;
    top: -20px;
  }
}
.contact-bubble figure.contact-photo {
  width: 120px;
  height: 120px;
  border-radius: 120px;
  float: left;
  margin: 0 1rem 0 0;
  background: #ccc;
  overflow: hidden;
}
.contact-bubble figure.contact-photo img, .contact-bubble figure.contact-photo picture {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
@media screen and (max-width: 999px) {
  .contact-bubble figure.contact-photo {
    float: right;
    width: 80px;
    height: 80px;
    margin: 1rem 1rem 0;
  }
}
.contact-bubble .text {
  padding: 0.5rem;
}
.contact-bubble h2 {
  font-weight: 800;
  color: #333;
  font-size: 1.25rem;
  margin: 0 0 0.25rem;
}
.contact-bubble p {
  font-size: 0.875rem;
  line-height: 1.2rem;
  margin: 0;
}
.contact-bubble p.action a {
  display: inline-block;
  background-color: #0096ce;
  border-radius: 4px;
  padding: 0.25rem 0.5rem;
  margin: 0.5rem 0 0;
  color: #fff;
  font-size: 0.75rem;
}
@media only screen and (max-width: 999px) {
  .contact-bubble p.action a {
    width: calc(50% - 1.5rem);
    padding: 0.75rem;
    position: absolute;
    bottom: 0;
    left: 0;
    text-align: center;
    border-radius: 0;
    text-transform: uppercase;
    font-weight: 700;
  }
  .contact-bubble p.action a:nth-of-type(2) {
    left: auto;
    right: 0;
    background-color: rgb(0, 112.8640776699, 155);
  }
}
@media only screen and (min-width: 1000px) {
  .contact-bubble p.action a {
    font-weight: 700;
  }
}
.contact-bubble span.long {
  display: none;
}
@media screen and (min-width: 600px) {
  .contact-bubble span.long {
    display: block;
  }
  .contact-bubble span.short {
    display: none;
  }
}

.contact-bubble-action-buttons {
  position: fixed;
  bottom: -5em;
  z-index: 50;
  transition: bottom 250ms, right 250ms;
}
@media only screen and (max-width: 1000px) {
  .contact-bubble-action-buttons.on {
    bottom: 0;
  }
}
@media only screen and (min-width: 1000px) {
  .contact-bubble-action-buttons {
    bottom: 2em;
    right: -300px;
  }
  .contact-bubble-action-buttons.on {
    right: 2em;
  }
}
.contact-bubble-action-buttons .contact-bubble-contact-button {
  width: calc(100% - 3em);
  background-color: #0096ce;
  background: #0096ce; /* Old browsers */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #0096ce 0%, #00ccff 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="$colorStart", endColorstr="$colorEnd",GradientType=1 ); /* IE6-9 */
  color: #fff;
  padding: 1.5em;
  text-align: center;
  font-weight: 800;
  font-size: 0.875em;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  display: block;
}
@media only screen and (min-width: 1000px) {
  .contact-bubble-action-buttons .contact-bubble-contact-button {
    width: auto;
    display: inline-block;
    border-radius: 80px;
  }
}
.contact-bubble-action-buttons .contact-bubble-text-button {
  width: calc(100% - 3em);
  background-color: #0096ce;
  background: #0096ce; /* Old browsers */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #0096ce 0%, #00ccff 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="$colorStart", endColorstr="$colorEnd",GradientType=1 ); /* IE6-9 */
  color: #fff;
  padding: 1.5em;
  text-align: center;
  font-weight: 800;
  font-size: 0.875em;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  display: none;
}
@media only screen and (min-width: 1000px) {
  .contact-bubble-action-buttons .contact-bubble-text-button {
    width: auto;
    display: inline-block;
    border-radius: 80px;
  }
}

@keyframes shadow-pulse {
  0% {
    box-shadow: 0 0 0 0px rgba(0, 150, 206, 0.2);
  }
  100% {
    box-shadow: 0 0 0 20px rgba(0, 150, 206, 0);
  }
}
.timeline {
  margin: 4em 0;
}
.timeline .timeline-list {
  border-top: solid 2px #ccc;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 2em;
}
@media only screen and (max-width: 1000px) {
  .timeline .timeline-list {
    border: none;
  }
  .timeline .timeline-list::before {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100%;
    content: "";
    background-color: #ccc;
  }
}
@media screen and (min-width: 1000px) {
  .timeline .timeline-list {
    flex-direction: row;
    flex-wrap: nowrap;
  }
}
.timeline .timeline-item {
  position: relative;
  margin: 0;
  width: calc(100% - 8em);
  display: inline-block;
  text-align: center;
  font-size: 0.875em;
  vertical-align: top;
  background-color: #fff;
  line-height: 1.4em;
}
@media only screen and (max-width: 1000px) {
  .timeline .timeline-item {
    margin: 2em 0;
    padding: 1em 4em;
  }
}
.timeline .timeline-item::before {
  display: none;
}
.timeline .timeline-item span {
  display: block;
  margin: 1.5em 0 0;
  font-size: 0.75em;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: #aaa;
  text-transform: uppercase;
}
.timeline .timeline-item div::before {
  position: absolute;
  left: 50%;
  top: -10px;
  transform: translateX(-50%);
  display: block;
  content: "";
  border-radius: 20px;
  background-color: #0096ce;
  border: solid 3px #fff;
  width: 12px;
  height: 12px;
}
@media only screen and (max-width: 1000px) {
  .timeline .timeline-item div::before {
    top: 2px;
  }
}
.timeline .timeline-item div.complete::before {
  background-color: #67be22;
}
.timeline .timeline-item div.in-progress::before {
  animation: shadow-pulse 1.5s infinite;
}
.timeline .timeline-item h3 {
  color: #555 !important;
  font-size: 1.25em !important;
  margin: 0.5em 0 !important;
  font-weight: 800 !important;
}
.timeline .timeline-item h5 {
  color: #0096ce !important;
  font-size: 0.875em !important;
  margin-bottom: 0.75rem !important;
}

.pattern.upcoming-programs .upcoming-program {
  position: relative;
  width: 40%;
  max-width: 400px;
  margin: 0;
  opacity: 1;
  transform: opacity 150ms;
}
@media only screen and (max-width: 1000px) {
  .pattern.upcoming-programs .upcoming-program {
    width: 75%;
  }
}
.pattern.upcoming-programs .upcoming-program:nth-of-type(2n) a {
  background-color: #00ccff;
}
.pattern.upcoming-programs .upcoming-program:nth-of-type(3n) a {
  background-color: #3d5dd7;
}
.pattern.upcoming-programs .upcoming-program a {
  margin: 50px 30px 50px 30px;
  border-radius: 12px;
  background-color: #0096ce;
  display: block;
  width: calc(100% - 50px);
  aspect-ratio: 5/7;
  overflow: hidden;
  position: relative;
  outline: solid 0 rgba(0, 150, 206, 0.8);
  transition: opacity 250ms, transform 250ms, outline 250ms, box-shadow 250ms;
  transform: scale(1) skewY(-2.5deg) translateY(0);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.25);
}
@media only screen and (max-width: 1000px) {
  .pattern.upcoming-programs .upcoming-program a {
    padding-top: 80%;
    width: calc(100% - 20px);
  }
}
.pattern.upcoming-programs .upcoming-program a .background {
  opacity: 0.8;
}
.pattern.upcoming-programs .upcoming-program a .background::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 250px;
  background: rgba(0, 0, 0, 0); /* Old browsers */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #000 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="$colorStart", endColorstr="$colorEnd",GradientType=0 ); /* IE6-9 */
}
.pattern.upcoming-programs .upcoming-program a .text {
  position: absolute;
  width: 100%;
  text-align: left;
  bottom: 15px;
  left: 15px;
  opacity: 1;
  transition: opacity 250ms;
}
.pattern.upcoming-programs .upcoming-program a .text h3, .pattern.upcoming-programs .upcoming-program a .text h4 {
  margin: 0;
}
.pattern.upcoming-programs .upcoming-program a .text h3 {
  color: #fff;
  text-transform: uppercase;
  font-size: 1.5em;
  font-weight: 900;
}
.pattern.upcoming-programs .upcoming-program a .text h3 strong {
  font-weight: 900;
}
.pattern.upcoming-programs .upcoming-program a .text h3 span.light {
  font-weight: 300;
}
.pattern.upcoming-programs .upcoming-program a .text h4 {
  font-size: 1em;
  font-weight: 400;
  color: #fff;
  text-transform: uppercase;
}
.pattern.upcoming-programs .upcoming-program a .text h5 {
  color: #fff;
  text-transform: uppercase;
  font-size: 0.875em;
  margin: 0 0 0.5em;
}
.pattern.upcoming-programs .upcoming-program a .text div.open {
  margin: 0 0 0 -0.2rem;
}
.pattern.upcoming-programs .upcoming-program a .text div.open span {
  color: #fff;
  text-transform: uppercase;
  background-color: #00a872;
  font-size: 0.6em;
  font-weight: 500;
  padding: 0.5em 1em;
  line-height: 1em;
  border-radius: 2em;
  letter-spacing: 0.03em;
}
.pattern.upcoming-programs .upcoming-program a .date {
  position: absolute;
  top: 18px;
  right: 14px;
  border-radius: 50px;
  padding: 10px 15px !important;
  background-color: #0096ce;
  box-shadow: 0 0.8rem 2.6rem rgba(0, 0, 0, 0.05);
}
.pattern.upcoming-programs .upcoming-program a .date h5 {
  font-size: 0.675em;
  color: #fff;
  font-weight: 600;
  margin: 0;
  line-height: 1em;
}
.pattern.upcoming-programs .upcoming-program a:hover {
  transform: scale(1.05) skewY(-2.5deg) translateY(-15px);
  outline: solid 5px rgba(0, 150, 206, 0.8);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

/* Layout */
header {
  position: relative;
}
header .divider {
  bottom: 0;
}
header nav.main {
  position: fixed;
  top: 0;
  z-index: 200;
  width: 100%;
  padding: 0;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}
header nav.main .container {
  padding: 0;
}
header nav.main h1 {
  padding: 0;
  width: 64px;
  float: left;
}
@media only screen and (max-width: 1000px) {
  header nav.main h1 {
    position: relative;
    z-index: 400;
  }
}
header nav.main h1 a {
  display: block;
  overflow: hidden;
  height: 0;
  background-color: #0096ce;
  padding-top: 64px;
  width: 64px;
  background-size: 34px 34px;
  background-repeat: no-repeat;
  background-position: center center;
  transition: background-color 250ms;
  background-image: url("https://cdn.orbie.org/assets/orbie.png");
}
header nav.main h1 a:hover {
  background-color: #3d5dd7;
}
header nav.main ul {
  float: left;
}
header nav.main ul li {
  display: inline-block;
}
@media only screen and (max-width: 1000px) {
  header nav.main ul {
    top: 100%;
    display: grid;
    align-content: center;
    grid-template-columns: 1fr;
    opacity: 0;
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    background-color: #fff;
    border-radius: 6px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.4);
    z-index: 100;
    transition: top 250ms, opacity 250ms;
  }
}
@media only screen and (max-width: 1000px) {
  header nav.main.on ul {
    top: 0;
    opacity: 1;
  }
}
header nav.main ul li {
  position: relative;
  margin: 0;
  text-align: center;
}
@media only screen and (max-width: 1000px) {
  header nav.main ul li {
    display: block;
  }
}
header nav.main ul li a {
  display: block;
  color: #0096ce;
  position: relative;
  padding: 25px 1.75em;
  margin: 0;
  font-weight: 500;
  font-size: 0.875em;
  transition: color 250ms, background-color 250ms;
}
header nav.main ul li a:hover {
  color: #00ccff;
}
header nav.main ul li a.nav-path-selected {
  color: #0096ce;
}
@media only screen and (max-width: 1000px) {
  header nav.main ul li a {
    color: #0096ce;
    margin: 0;
    padding: 1em;
    font-size: 2em;
  }
}
header nav.main #orbie-search-app {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 200;
}
@media only screen and (max-width: 1000px) {
  header nav.main #orbie-search-app {
    display: none;
  }
}
header nav.main #orbie-search-app input {
  float: right;
  border: none;
  font-family: "Gotham A", "Gotham B";
  width: 25em;
  font-size: 0.875em;
  padding: 26px 1em 1.5em 1em;
  transition: width 250ms, background-color 250ms;
}
header nav.main #orbie-search-app input:focus {
  background-color: #ecf2f6;
}
header nav.main #orbie-search-app input:focus::-moz-placeholder {
  color: transparent;
}
header nav.main #orbie-search-app input:focus::placeholder {
  color: transparent;
}
@media only screen and (max-width: 1000px) {
  header nav.main #orbie-search-app input {
    float: none;
    text-align: center;
  }
}
header nav.main #orbie-search-app .results {
  position: absolute;
  top: 100%;
  left: 0;
  width: calc(100% - 20px);
  background-color: #fff;
  padding: 0 10px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
}
header nav.main #orbie-search-app .results .result a {
  display: block;
  display: grid;
  grid-template-columns: 1fr 4fr;
  grid-column-gap: 10px;
  margin: 10px 0;
  padding: 5px;
  border-radius: 8px;
  font-size: 0.875em;
  line-height: 0;
  position: relative;
}
header nav.main #orbie-search-app .results .result a img {
  border-radius: 4px;
  overflow: hidden;
}
header nav.main #orbie-search-app .results .result a .result-text {
  line-height: 1.25em;
  position: relative;
}
header nav.main #orbie-search-app .results .result a .result-text-content {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
}
header nav.main #orbie-search-app .results .result a .title {
  font-weight: 700;
}
header nav.main #orbie-search-app .results .result a .subtitle {
  color: #9ba8c5;
  font-size: 0.875em;
}
header nav.main #orbie-search-app .results .result a:hover {
  background: #3d5dd7; /* Old browsers */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #3d5dd7 0%, #00ccff 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="$colorStart", endColorstr="$colorEnd",GradientType=1 ); /* IE6-9 */
  color: #fff;
}
header nav.main #orbie-search-app .results .result a:hover .subtitle {
  color: #fff;
}
header nav.main #orbie-search-app .results .no-results {
  text-align: center;
  padding: 25px;
  font-size: 0.875em;
}

.intro {
  background: rgb(34.1025641026, 61.3846153846, 165.3974358974); /* Old browsers */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, rgb(34.1025641026, 61.3846153846, 165.3974358974) 0%, #0096ce 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="$colorStart", endColorstr="$colorEnd",GradientType=1 ); /* IE6-9 */
}
.section-market:not(.page-market) .intro {
  padding: 16em 0 18em;
}
@media only screen and (max-width: 1000px) {
  .section-market:not(.page-market) .intro {
    padding: 12em 0 10em;
  }
}
.intro .text {
  max-width: 1000px;
  margin: 0 auto;
}
.section-market:not(.page-market) .intro .text .container {
  display: grid;
  grid-template-columns: 1fr 3fr;
  grid-column-gap: 30px;
}
@media only screen and (max-width: 1000px) {
  .section-market:not(.page-market) .intro .text .container {
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 0;
  }
}
.intro .text h4 {
  font-size: 1.25em;
  line-height: 1.25em;
  color: rgb(127.5, 229.5, 255);
}
.section-market:not(.page-market) .intro .text h1 {
  text-align: left;
  line-height: 1em;
  position: relative;
  margin: 0;
}
@media only screen and (max-width: 1000px) {
  .section-market:not(.page-market) .intro .text h1 {
    font-size: 1.5em;
    line-height: 1.25em;
  }
}
.section-market:not(.page-market) .intro .text h1 span {
  display: block;
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
}
.intro .header-image {
  position: relative;
  margin: 0 auto 2em;
  text-align: center;
}
@media only screen and (max-width: 1000px) {
  .intro .header-image {
    width: 75%;
    margin: 3em auto 0;
  }
}
.section-market:not(.page-market) .intro .header-image {
  padding: 15px 0;
  margin: 0 auto;
  border-right: solid 1px #00ccff;
}
.intro .header-image.xl img, .intro .header-image.xl svg {
  width: 100%;
}
.intro .header-image.large img, .intro .header-image.large svg {
  width: 75%;
}
.intro .header-image.medium img, .intro .header-image.medium svg {
  width: 50%;
}
.intro .header-image.small img, .intro .header-image.small svg {
  width: 25%;
}
.section-market:not(.page-market) .intro .header-image.small img, .section-market:not(.page-market) .intro .header-image.small svg {
  width: 80%;
}
.intro .button a {
  font-size: 0.875em !important;
  margin: 0.5em 0.25em;
  border-radius: 50px;
  border: solid 0 #fff;
  color: #fff;
  font-weight: 500;
  padding: 1.25em 2.5em;
  background-color: rgba(0, 150, 206, 0.75);
  transition: background-color 250ms, color 250ms;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.15);
}
.intro .button a::after, .intro .button a::before {
  display: none;
}
.intro .button a:nth-of-type(2n) {
  background-color: rgba(0, 204, 255, 0.75);
}
.intro .button a:hover {
  background-color: #fff;
  color: #0096ce;
}
@media only screen and (max-width: 1000px) {
  .intro .button a {
    display: block;
  }
}

div.main .container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 30px;
}
div.main .container.narrow {
  max-width: 1000px;
}
@media only screen and (max-width: 1000px) {
  div.main .container.narrow {
    padding: 0 5%;
    font-size: 0.875em;
  }
}
div.main .container.breakpoint-small {
  max-width: 600px;
}
div.main .container.breakpoint-medium {
  max-width: 800px;
}
div.main .container.breakpoint-large {
  max-width: 1000px;
}
div.main .container.breakpoint-xl {
  max-width: 1200px;
}
div.main .container.breakpoint-2xl {
  max-width: 1400px;
}
div.main .container.breakpoint-3xl {
  max-width: 1600px;
}
div.main .container.breakpoint-4xl {
  max-width: 1800px;
}
div.main .container.breakpoint-5xl {
  max-width: 2000px;
}
div.main a.button {
  font-size: 0.75em;
}
div.main .content-image {
  text-align: center;
}
div.main .content-image img {
  width: 90%;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
div.main nav.page {
  margin: 2rem 0 calc(2em + 2vw);
  font-size: 1.2em;
}
div.main nav.page ul, div.main nav.page li {
  list-style: none;
  margin: 0;
  padding: 0;
}
div.main nav.page ul {
  display: flex;
  flex-direction: row;
  gap: 1rem 2rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
div.main nav.page a {
  font-weight: 500;
  display: block;
}
div.main nav.page a.featured {
  margin: 0;
}

.cta {
  position: relative;
  padding: 4em 0;
  border-top: solid 1px #eee;
  background: #3d5dd7; /* Old browsers */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #3d5dd7 0%, #00ccff 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="$colorStart", endColorstr="$colorEnd",GradientType=1 ); /* IE6-9 */
}
@media only screen and (max-width: 1000px) {
  .cta {
    padding: 3em 0;
  }
}
.cta::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("https://cdn.orbie.org/sites/background-poly.png");
  opacity: 0.8;
  content: "";
  mix-blend-mode: multiply;
}
.cta .container {
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 3fr 1fr;
  position: relative;
  padding: 0 30px;
}
@media only screen and (max-width: 1000px) {
  .cta .container {
    display: block;
    padding: 0 5%;
  }
}
.cta h4 {
  font-size: 3.5em;
  font-weight: 800;
  line-height: 1.125em;
  color: #fff;
}
@media only screen and (max-width: 1000px) {
  .cta h4 {
    font-size: 1.75em;
  }
}
.cta .button {
  margin: 2em 0 0;
  text-align: center;
}
.cta .button a {
  font-size: 1em;
  font-weight: 500;
  position: relative;
  display: inline-block;
  line-height: 1em;
  padding: 1.25em 4em 1.125em 2em;
  margin: 0 0.5em 0 0;
  transition: color 250ms, background-color 250ms;
  color: #fff;
  border: solid 2px #fff;
  border-radius: 50px;
}
@media only screen and (max-width: 1000px) {
  .cta .button a {
    display: block;
  }
}
.cta .button a::after {
  content: "→";
  position: absolute;
  color: #fff;
  display: block;
  right: 1.5em;
  top: 1em;
  font-size: 1.25em;
  transition: right 250ms;
}
.cta .button a:hover {
  background-color: #fff;
  color: #0096ce;
  border: solid 2px #fff;
}
.cta .button a:hover::after {
  right: 1em;
  color: #00ccff;
}

footer.main {
  padding: 4em 0 0;
  background-color: #fcfcfc;
}
@media only screen and (max-width: 1000px) {
  footer.main {
    padding: 2em 0 0;
  }
}
footer.main a {
  color: #6b7f93;
}
footer.main a:hover {
  color: rgb(85.5157480315, 101.5, 117.4842519685);
}
footer.main .container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 30px;
}
footer.main nav {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
@media only screen and (max-width: 1000px) {
  footer.main nav {
    display: block;
    padding: 0 5%;
    text-align: center;
  }
  footer.main nav ul {
    margin: 2em 0;
  }
}
footer.main nav .logo {
  padding: 2em 0;
  line-height: 1.5em;
  font-size: 0.875em;
}
footer.main nav .logo img {
  width: 60%;
}
footer.main nav ul li a {
  color: #6b7f93;
  display: block;
  margin: 1em 0;
}
footer.main nav ul li a:hover {
  color: rgb(85.5157480315, 101.5, 117.4842519685);
}
footer.main nav ul li:first-of-type {
  font-weight: 800;
}
footer.main .copyright {
  margin: 2em 0 0;
  padding: 2em 0 1.5em 0;
  font-size: 0.875em;
  position: relative;
}
@media only screen and (max-width: 1000px) {
  footer.main .copyright {
    padding: 1.5em 5%;
    line-height: 1.5em;
    text-align: center;
    font-size: 1em;
  }
  footer.main .copyright a {
    white-space: nowrap;
  }
}

/* Page Templates */
.template-home header {
  overflow: hidden;
}
.template-home header .intro {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 35vh 0 30vh;
  overflow: hidden;
}
@media only screen and (max-width: 1000px) {
  .template-home header .intro {
    padding: 20vh 0 25vh;
  }
}
.template-home header .intro::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10vw 0 0 100vw;
  border-color: transparent transparent transparent rgba(0, 150, 206, 0.5);
  z-index: 10;
}
.template-home header .intro::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 10vw 100vw;
  border-color: transparent transparent #fff transparent;
  z-index: 10;
}
.template-home header .intro .background {
  background-position: center 30%;
  opacity: 0;
  transform: scale(1);
  transition: opacity 2.5s, transform 10s;
}
.ready .template-home header .intro .background {
  opacity: 0.6;
  transform: scale(1.05);
}
.template-home header .intro .text {
  margin: 0;
  text-align: center;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}
@media only screen and (max-width: 1000px) {
  .template-home header .intro .text {
    padding: 0 5%;
  }
}
.template-home header .intro .text h1 {
  font-size: 3.75em;
  color: #fff;
  font-weight: 800;
  margin: 0 0 0.25em;
  line-height: 1.25em;
}
@media only screen and (max-width: 1000px) {
  .template-home header .intro .text h1 {
    font-size: 1.75em;
  }
}
.template-home header .intro .text h4 {
  font-size: 4em;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1.125em;
  margin: 0 0 0.25em;
  text-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  opacity: 0;
  filter: blur(50px);
  color: #fff;
  letter-spacing: -0.025em;
  transition: opacity 1s, filter 1s;
  transition-delay: 1s;
}
.template-home header .intro .text h4 strong {
  font-weight: 900;
}
@media only screen and (max-width: 1000px) {
  .template-home header .intro .text h4 {
    font-size: 1.75em;
  }
}
.ready .template-home header .intro .text h4 {
  opacity: 1;
  filter: blur(0);
}
.template-home div.main {
  padding: 0;
  /*
  .upcoming {
      padding:0 0 0 25px;

    @media only screen and (max-width: $main-nav-collapse-breakpoint) {
      padding:0 3% 2em;

      .button a {
          display:block;
      }
    }

    .text {
      padding-top:4em;
    }

    h2 {
      font-size:2.25em;
      font-weight:900;
      color:darken($color-primary,15%);
      margin:2.5em 0 0.5em;
      line-height:1.25em;

      @media only screen and (max-width: $main-nav-collapse-breakpoint) {
        font-size:1.5em;
      }
    }

    p {
      font-size:1.125em;
      line-height:1.5em;
      margin:0.5em 0 1.5em;

      @media only screen and (max-width: $main-nav-collapse-breakpoint) {
          font-size:0.875em;
      }
    }

    .upcoming-programs {
      margin:2em 0;
    }

    .upcoming-program {
      position:relative;
      width:40%;
      margin:0;
      opacity:1;
      transform:opacity 150ms;

      @media only screen and (max-width: $main-nav-collapse-breakpoint) {
        width:75%;
      }

      &:nth-of-type(2n) a {
        background-color:$color-secondary;
      }

      &:nth-of-type(3n) a {
        background-color:$color-tertiary;
      }

      a {
        margin:50px 30px 50px 30px;
        border-radius:12px;
        background-color:$color-primary;
        display:block;
        width:calc(100% - 50px);
        padding-top:130%;
        overflow:hidden;
        position:relative;
        outline:solid 0 rgba($color-primary,0.8);
        transition:opacity 250ms, transform 250ms, outline 250ms, box-shadow 250ms;
        transform:scale(1) skewY(-2.5deg) translateY(0);
        box-shadow:0 5px 10px rgba(0,0,0,0.25);

        @media only screen and (max-width: $main-nav-collapse-breakpoint) {
            padding-top:80%;
              width:calc(100% - 20px);
        }

        .background {
          opacity:0.8;

          &::after {
              position:absolute;
              bottom:0;
              left:0;
              content:'';
              width:100%;
              height:250px;
              @include background-gradient(rgba(0,0,0,0),#000,vertical);
          }
        }

        .text {
          position:absolute;
          width:100%;
          text-align:left;
          bottom:15px;
          left:25px;
          opacity:1;
          transition:opacity 250ms;

          h3 {
            color:#fff;
            text-transform:uppercase;
            font-size:1.5em;
            font-weight:900;

            strong {
              font-weight: 900;
            }
          }

          h4 {
              color:#fff;
              text-transform:uppercase;
          }

          h5 {
            color:#fff;
            text-transform:uppercase;
            font-size:0.875em;
            margin:0 0 0.5em;
          }
        }

        .date {
            position:absolute;
            bottom:18px;
            right:14px;
            border-radius:50px;
            padding:10px 15px;
            background-color:$color-primary;
            box-shadow:inset 0 2px 5px rgba(0,0,0,0.25);

            h5 {
                font-size:0.675em;
                color:#fff;
                font-weight:600;
                text-shadow:0 2px 5px rgba(0,0,0,0.3);
            }
        }

        &:hover {
          transform:scale(1.05) skewY(-2.5deg) translateY(-15px);
          outline:solid 5px rgba($color-primary,0.8);
          box-shadow:0 5px 20px rgba(0,0,0,0.5);
        }

      }
    }

  .flickity-button-icon {
      fill:$color-primary;
  }

  .flickity-prev-next-button.next {
      top:auto;
      left:auto;
      bottom:-100px;
      right:25px;
    }

    .flickity-prev-next-button.previous {
      top:auto;
      left:auto;
      bottom:-100px;
      right:90px;
    }

    .flickity-prev-next-button {
      width:70px;
      height:70px;
      z-index:100;
      cursor:pointer;

      @media only screen and (max-width: $main-nav-collapse-breakpoint) {
          display:none;
      }

      &:hover {
          border:none;

          .flickity-button-icon {
              fill:$color-secondary;
          }
      }
    }

    .flickity-page-dots {
      bottom:-37px;

      @media only screen and (max-width: $main-nav-collapse-breakpoint) {
          display:none;
      }
    }

    .flickity-page-dots .dot {
      background-color:$color-secondary;
      width:10px;
      transition:width 250ms;
      border-radius:5px;
    }

    .flickity-page-dots .dot.is-selected {
      width:30px;
      background-color:$color-primary;
    }

  }
  */
}
.template-home div.main .video {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  line-height: 0;
}
.template-home div.main section#introduction {
  margin: 6rem 0;
}
.template-home div.main section#introduction div.container > .grid {
  display: grid;
  gap: 3rem;
}
@media screen and (min-width: 1000px) {
  .template-home div.main section#introduction div.container > .grid {
    align-items: center;
    justify-content: center;
    grid-template-columns: 4fr 5fr;
  }
}
.template-home div.main section#introduction div.container > .grid figure.photo {
  overflow: hidden;
  box-shadow: 0 0.8rem 2.6rem rgba(0, 0, 0, 0.05) 2px 2px 0 rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
}
.template-home div.main section#introduction div.container > .grid figure.photo img {
  display: flex;
  width: 100%;
  height: auto;
}
.template-home div.main section#by-the-numbers {
  padding: calc(12rem + 5vw) 0 calc(6rem + 5vw);
  margin: 6rem 0;
  position: relative;
  overflow: hidden;
}
.template-home div.main section#by-the-numbers::before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 30%;
  background: #fff;
  transform: skewY(-3deg);
  pointer-events: none;
  z-index: 2;
}
.template-home div.main section#by-the-numbers::before {
  top: -15%;
}
.template-home div.main section#by-the-numbers figure.background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
  background-size: cover;
  background-position: center center;
}
.template-home div.main section#by-the-numbers figure.background::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgb(0, 54.6, 83.3), #004E77, #00BCF2);
  mix-blend-mode: multiply;
  z-index: 1;
}
.template-home div.main section#by-the-numbers figure.background iframe {
  width: 100vw;
  height: 56.25vw; /* Given a 16:9 aspect ratio, 9/16*100 = 56.25 */
  min-height: 100%;
  min-width: 177.77vh; /* Given a 16:9 aspect ratio, 16/9*100 = 177.77 */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.template-home div.main section#by-the-numbers > .container {
  position: relative;
  z-index: 1;
}
.template-home div.main section#by-the-numbers .grid {
  display: grid;
  gap: 3rem;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media screen and (min-width: 1000px) {
  .template-home div.main section#by-the-numbers .grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.template-home div.main section#by-the-numbers .grid div.item {
  opacity: 0;
  position: relative;
  top: 2rem;
  color: #fff;
  font-size: clamp(1em, 2vw, 1.6em);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.3em;
  transition: opacity 400ms, top 400ms;
  transition-delay: calc(var(--index) * 800ms);
  text-shadow: 0 0.8rem 2.6rem rgba(0, 0, 0, 0.05), 2px 2px 0 rgba(0, 0, 0, 0.1);
}
.template-home div.main section#by-the-numbers .grid div.item div.descriptor {
  font-weight: 300;
  letter-spacing: 0.1em;
}
.template-home div.main section#by-the-numbers .grid div.item div.noun {
  font-size: 1.4em;
  line-height: 1.3em;
  font-weight: 700;
}
.template-home div.main section#by-the-numbers .grid div.item div.value {
  font-size: 3.2em;
  color: #00BCF2;
  font-weight: 700;
  line-height: 1em;
  letter-spacing: -0.03em;
  background-image: linear-gradient(to bottom, #FFCC05, #f22d20);
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
}
.template-home div.main section#by-the-numbers .grid.in div.item {
  opacity: 1;
  top: 0;
}
.template-home div.main section#explore-awards-programs {
  margin: 6rem 0;
}
.template-home div.main section#explore-awards-programs h2 {
  text-align: center;
}
.template-home div.main section#explore-awards-programs div.grid {
  display: grid;
  gap: 3rem;
  text-align: center;
}
@media screen and (min-width: 1000px) {
  .template-home div.main section#explore-awards-programs div.grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.template-home div.main section#explore-awards-programs div.grid a {
  display: block;
  position: relative;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4/5;
  border-radius: 1.5rem;
  cursor: pointer;
  max-width: 300px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 1000px) {
  .template-home div.main section#explore-awards-programs div.grid a {
    max-width: none;
  }
}
.template-home div.main section#explore-awards-programs div.grid a figure.photo, .template-home div.main section#explore-awards-programs div.grid a h3 {
  transition: transform 400ms;
  pointer-events: none;
}
.template-home div.main section#explore-awards-programs div.grid a figure.photo {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
}
.template-home div.main section#explore-awards-programs div.grid a figure.photo img {
  display: flex;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.template-home div.main section#explore-awards-programs div.grid a h3 {
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 0;
  width: calc(100% - 4rem);
  padding: 4rem 2rem 2rem;
  margin: 0;
  background: linear-gradient(to top, #000, transparent);
  color: #fff;
}
.template-home div.main section#explore-awards-programs div.grid a h3 span.light {
  font-weight: 300;
}
.template-home div.main section#explore-awards-programs div.grid a:hover figure.photo {
  transform: scale(1.1);
}
.template-home div.main section#explore-awards-programs div.grid a:hover h3 {
  transform: scale(1.1);
}
.template-home div.main section#nominate {
  margin: 6rem 0;
}
.template-home div.main section#nominate div.grid {
  display: grid;
  gap: 4rem;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 1000px) {
  .template-home div.main section#nominate div.grid {
    grid-template-columns: 1fr 1fr;
  }
}
.template-home div.main section#nominate div.button {
  margin: 2em 0;
}
.template-home .nominate {
  padding: 25em 0;
  background: rgb(34.1025641026, 61.3846153846, 165.3974358974); /* Old browsers */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, rgb(34.1025641026, 61.3846153846, 165.3974358974) 0%, #0096ce 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="$colorStart", endColorstr="$colorEnd",GradientType=1 ); /* IE6-9 */
  clip-path: polygon(0 150px, 100% 0, 100% 100%, 0 100%);
}
.template-home .nominate h3 {
  font-size: 2.75em;
  color: #fff;
  font-weight: 300;
  text-transform: uppercase;
}
.template-home .nominate h3 strong {
  font-size: 1.4em;
  display: block;
  font-weight: 900;
}
.template-home .nominate p {
  margin: 1em 0 3em;
  color: #c9f3fe;
  font-size: 1.125em;
  line-height: 1.5em;
}
.template-home .nominate .map iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 15px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.2);
}

.template-default header nav.sub {
  background-color: rgba(0, 57.1601941748, 78.5, 0.5);
  position: absolute;
  top: 62px;
  padding: 1.5em;
  width: calc(100% - 3em);
  z-index: 100;
}
@media only screen and (max-width: 1000px) {
  .template-default header nav.sub {
    text-align: center;
  }
}
.template-default header nav.sub ul li {
  display: inline-block;
  padding: 0 0.75em;
  position: relative;
}
.template-default header nav.sub ul li a {
  color: rgb(127.5, 229.5, 255);
  font-weight: 500;
  font-size: 0.875em;
}
.template-default header nav.sub ul li a:hover {
  color: #fff;
}
.template-default header nav.sub ul li a.on {
  color: #fff;
}
.template-default header nav.sub ul li:first-of-type {
  padding: 0 1.25em;
}
@media only screen and (max-width: 1000px) {
  .template-default header nav.sub ul li:first-of-type {
    display: none;
  }
}
.template-default header nav.sub ul li:first-of-type::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 5px;
  border-color: transparent transparent transparent #00ccff;
  right: -2px;
  top: 3px;
}
.template-default header nav.sub ul li:first-of-type a {
  color: #fff;
}
.template-default header .intro {
  padding: 14em 0 14em;
}
@media only screen and (max-width: 1000px) {
  .template-default header .intro {
    padding: 8em 0;
  }
}
.template-default header .intro::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15vw 0 0 100vw;
  border-color: transparent transparent transparent rgba(0, 150, 206, 0.5);
  z-index: 10;
}
@media screen and (min-width: 1400px) {
  .template-default header .intro::before {
    border-width: 10vw 0 0 100vw;
  }
}
.template-default header .intro::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 15vw 100vw;
  border-color: transparent transparent #fff transparent;
  z-index: 10;
}
@media screen and (min-width: 1400px) {
  .template-default header .intro::after {
    border-width: 0 0 10vw 100vw;
  }
}
@media only screen and (max-width: 1000px) {
  .template-default header {
    padding: 0;
  }
  .template-default header .text {
    text-align: center;
    font-size: 0.75em;
  }
  .template-default header .text h1 {
    font-size: 2em;
  }
}
.template-default header .text {
  max-width: 1100px;
  position: relative;
  text-align: center;
}
@media only screen and (max-width: 1000px) {
  .template-default header .text {
    padding: 0 5%;
  }
}
.template-default header .text figure svg {
  width: 450px;
}
.template-default header .text h1 {
  font-size: 3.25em;
  color: #fff;
  font-weight: 800;
  margin: 0 0 0.25em;
  line-height: 1.25em;
}
@media only screen and (max-width: 1000px) {
  .template-default header .text h1 {
    font-size: 2.25em;
  }
}
.template-default header .text h1.medium {
  font-size: 2.75em;
}
.template-default header .text h3 {
  color: #fff;
  text-align: center;
  font-weight: 500;
  font-size: 1.5em;
  margin: 0 0 0.25em;
}
.template-default header .text h5 {
  color: #fff;
  text-align: center;
  font-weight: 400;
  font-size: 0.875em;
}
.template-default header .text p {
  margin: 0;
  color: #fff;
  font-size: 1.25em;
  line-height: 1.5em;
}
.template-default header .text .button a {
  font-size: 1.125em;
}
.template-default header .background {
  opacity: 0.25;
}
.template-default header figure {
  position: relative;
}
.template-default header figure * {
  fill: #fff !important;
}
.template-default header .presenter {
  position: absolute;
  bottom: 5vw;
  right: 40px;
  z-index: 100;
}
@media only screen and (max-width: 1000px) {
  .template-default header .presenter {
    bottom: -30px;
    right: auto;
    width: 100%;
    text-align: center;
  }
}
.template-default header .presenter h5 {
  display: inline-block;
  font-size: 0.875em;
  margin: 0 0.5em 0 0;
}
.template-default header .presenter .chapter {
  display: inline-block;
  position: relative;
  top: 4px;
  margin: 0 0 0 20px;
}
.template-default header .presenter .chapter::before {
  content: "+";
  display: block;
  position: absolute;
  left: -18px;
  top: 3px;
  color: #6b7f93;
  font-weight: 400;
  font-size: 0.875em;
}
.template-default header .presenter .chapter:first-of-type {
  margin: 0;
}
.template-default header .presenter .chapter:first-of-type::before {
  content: "";
}
.template-default header .presenter .chapter img {
  height: 22px;
  height: 18px;
  width: auto;
}
.template-default header .awards-datetime {
  position: absolute;
  bottom: 4vw;
  left: 40px;
  z-index: 100;
}
@media only screen and (max-width: 1000px) {
  .template-default header .awards-datetime {
    width: 90%;
    padding: 0 5%;
    left: 0;
    text-align: center;
    bottom: 60px;
    font-size: 0.75em;
  }
}
.template-default header .awards-datetime h3 {
  color: #fff;
  font-size: 1.25em;
  margin: 0 0 0.25em;
}
.template-default header .awards-datetime h4 {
  color: #fff;
  font-size: 0.8em;
  font-weight: 500;
}
.template-default div.main {
  padding: 4em 0;
}
.template-default div.main .grid-50-50 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 40px;
  margin: 0 0 6em;
}
@media only screen and (max-width: 1000px) {
  .template-default div.main .grid-50-50 {
    display: block;
    padding: 0 3%;
    font-size: 0.875em;
  }
}
.template-default div.main .video {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  line-height: 0;
}

/* Pages */
div.page-accept.section-market section.section.no-border {
  border: none !important;
}
div.page-accept.section-market section#media-coverage {
  margin-top: calc(2em + 5vw);
}
div.page-accept.section-market section#media-coverage div.grid {
  display: grid;
  gap: 1rem;
}
@media screen and (min-width: 800px) {
  div.page-accept.section-market section#media-coverage div.grid {
    gap: 3rem;
    grid-template-columns: 1fr 1fr;
  }
}
div.page-accept.section-market section#media-coverage div.grid div.media a.image {
  display: block;
  width: 100%;
  aspect-ratio: 9/6;
  min-height: 200px;
  position: relative;
  padding: 2em 0;
}
div.page-accept.section-market section#media-coverage div.grid div.media img {
  position: absolute;
  display: flex;
  border-radius: 0.125rem;
  box-shadow: 0 0.8rem 2.6rem rgba(0, 0, 0, 0.05);
  transition: opacity 800ms, left 1200ms, transform 1200ms;
  transition-timing-function: ease-in-out;
}
div.page-accept.section-market section#media-coverage div.grid div.media img:first-child {
  z-index: 1;
  width: 45%;
  transform: rotate(-5deg);
  left: -5%;
  opacity: 0;
}
div.page-accept.section-market section#media-coverage div.grid div.media.visible.in img:first-child {
  transform: rotate(-3deg);
  opacity: 1;
  left: 0;
}
div.page-accept.section-market section#media-coverage div.grid div.media img:nth-child(2) {
  z-index: 2;
  left: 30%;
  top: 30%;
  width: 70%;
  transform: rotate(5deg);
  opacity: 0;
}
div.page-accept.section-market section#media-coverage div.grid div.media.visible.in img:nth-child(2) {
  transform: rotate(3deg);
  opacity: 1;
  left: 25%;
}
div.page-accept.section-market section#media-coverage div.grid div.media p {
  font-size: 0.9em;
}
div.page-accept.section-market section#next-steps {
  position: relative;
  padding: calc(2em + 5vw) 0;
  margin: calc(2em + 2vw) 0 calc(2em + 5vw);
  color: #fff;
  background: linear-gradient(45deg, hsl(285, 30%, 35%) 0%, hsl(258, 28%, 41%) 28%, hsl(231, 31%, 44%) 41%, hsl(214, 48%, 43%) 50%, hsl(202, 80%, 37%) 59%, hsl(196, 100%, 34%) 66%, hsl(193, 100%, 34%) 73%, hsl(188, 100%, 34%) 80%, hsl(183, 100%, 33%) 87%, hsl(177, 100%, 33%) 100%);
}
div.page-accept.section-market section#next-steps figure.background {
  z-index: 0;
}
div.page-accept.section-market section#next-steps figure.background svg {
  height: 260%;
  width: 260%;
  position: relative;
  top: -80%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  opacity: 0.05;
}
div.page-accept.section-market section#next-steps .container {
  position: relative;
  z-index: 1;
}
div.page-accept.section-market section#next-steps h2, div.page-accept.section-market section#next-steps p {
  color: #fff;
}
div.page-accept.section-market section#next-steps h2 {
  margin-top: 0;
}

div.page-anniversary div.main {
  padding-bottom: 0;
  padding-top: 3rem;
}
div.page-anniversary section#introduction div.grid {
  display: grid;
  gap: 3rem;
}
@media screen and (min-width: 1000px) {
  div.page-anniversary section#introduction div.grid {
    grid-template-columns: 1fr 380px;
    align-items: center;
    justify-content: center;
  }
}
div.page-anniversary section#introduction div.grid div.copy h1 {
  margin-top: 0;
  font-weight: 800;
  color: #004E77;
  line-height: 1.2em;
  margin-bottom: 0.8em;
}
div.page-anniversary section#introduction div.grid div.copy h1 span.hanging-indention {
  margin-left: -0.5em;
}
div.page-anniversary section#introduction div.grid div.media figure.photo {
  display: block;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 0.8rem 2.6rem rgba(0, 0, 0, 0.05), 2px 2px 0 rgba(0, 0, 0, 0.1);
  margin: 0 auto;
}
div.page-anniversary section#introduction div.grid div.media figure.photo img {
  display: block;
}
div.page-anniversary section#celebration {
  position: relative;
  padding: min(8rem + 8vw, 280px) 0;
  overflow: hidden;
  background: linear-gradient(to top right, rgb(81.6, 49.6, 92), rgb(0, 62.4, 95.2), rgb(0, 169.2, 217.8));
  text-align: center;
}
div.page-anniversary section#celebration::before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: calc(20% + 4vw);
  z-index: 2;
  background: #fff;
}
div.page-anniversary section#celebration::before {
  top: -15%;
  transform: skewY(3deg);
}
div.page-anniversary section#celebration figure.background {
  z-index: 0;
  mix-blend-mode: soft-light;
  opacity: 0.6;
}
div.page-anniversary section#celebration figure.background img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
div.page-anniversary section#celebration > div.container {
  position: relative;
  z-index: 1;
}
div.page-anniversary section#celebration div.title {
  margin-bottom: 3rem;
}
div.page-anniversary section#celebration div.title h1 {
  color: #fff;
  font-weight: 800;
  line-height: 1.2em;
  margin: 0;
}
div.page-anniversary section#celebration div.grid {
  display: grid;
  gap: 3rem;
}
@media screen and (min-width: 1000px) {
  div.page-anniversary section#celebration div.grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-content: center;
  }
}
div.page-anniversary section#celebration h2 {
  color: rgb(153, 228.2, 249.8);
  margin: 0 0 0.15em;
}
div.page-anniversary section#celebration h2 sup {
  font-size: 0.625em;
}
div.page-anniversary section#celebration h5 {
  margin: 0 0 0.2em;
  font-weight: 700;
}
div.page-anniversary section#celebration p {
  font-size: 0.9em;
  margin: 0 0 1em;
}
div.page-anniversary section#celebration h5, div.page-anniversary section#celebration p {
  color: #fff;
}
div.page-anniversary section#circle-members {
  background: #000;
  position: relative;
  overflow: hidden;
  margin-top: -6rem;
  margin-bottom: -6rem;
  z-index: 2;
  transform: skewY(-3deg);
}
div.page-anniversary section#circle-members::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: #000;
  opacity: 0.2;
}
div.page-anniversary section#circle-members figure.background {
  transform: skewY(3deg);
  width: 120%;
  height: 120%;
  top: -10%;
  left: -10%;
  opacity: 0.3;
}
div.page-anniversary section#circle-members figure.background img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
div.page-anniversary section#circle-members .internal {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) skewY(3deg);
  z-index: 2;
  width: 100%;
}
div.page-anniversary section#circle-members > div.container {
  position: relative;
  z-index: 2;
}
div.page-anniversary section#circle-members h1 {
  color: #fff;
  font-weight: 800;
  line-height: 1.2em;
  margin-bottom: 0.4em;
  margin-top: 0;
  text-shadow: 0 0.8rem 2.6rem rgba(0, 0, 0, 0.05), 2px 2px 0 rgba(0, 0, 0, 0.1);
}
div.page-anniversary section#circle-members div.marquee {
  position: relative;
  width: 100%;
  z-index: 0;
  margin-top: 0;
  max-width: none;
}
div.page-anniversary section#circle-members div.marquee::before {
  display: none;
}
div.page-anniversary section#circle-members div.marquee::after {
  display: none;
}
div.page-anniversary section#circle-members div.marquee .marquee-row {
  height: calc(120px + 5vw);
  margin: calc(1.5rem + 0.5vw) auto;
}
div.page-anniversary section#circle-members div.marquee figure.headshot {
  overflow: hidden;
  width: calc(10% - 20px);
  height: calc(100% - 20px);
  transform: skewY(3deg);
  margin: 10px;
}
div.page-anniversary section#circle-members div.marquee figure.headshot div.image-wrapper {
  aspect-ratio: 1/1;
  max-width: 100%;
  max-height: 100%;
}
div.page-anniversary section#circle-members div.marquee figure.headshot img {
  width: 100%;
  height: 100%;
  width: auto;
  margin: 0;
  border-radius: 100%;
  opacity: 1;
  overflow: hidden;
}
div.page-anniversary section#once-an-orbie-winner {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: min(8rem + 6vw, 280px) 0 min(4rem + 4vw, 240px);
  z-index: 1;
  background: linear-gradient(to top right, #00BCF2, #663E73);
}
div.page-anniversary section#once-an-orbie-winner > .container {
  position: relative;
  z-index: 1;
}
div.page-anniversary section#once-an-orbie-winner figure.background {
  mix-blend-mode: soft-light;
  opacity: 0.8;
}
div.page-anniversary section#once-an-orbie-winner figure.background img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}
div.page-anniversary section#once-an-orbie-winner h1 {
  color: #fff;
  font-weight: 800;
  line-height: 1.1em;
  margin-bottom: 0.8em;
}

.page-archive div.main {
  padding: 0;
}
.page-archive div.main .loading .icon {
  transform: translate(-50%, -50%);
  background-color: #fff;
  border-radius: 15px;
  padding: 50px;
  text-align: center;
}
.page-archive div.main #orbie-archive {
  padding: 4em 0;
}
.page-archive div.main nav.archive {
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 100px;
  border: solid 1px #ddd;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 1.5em 3em;
  position: sticky;
  top: 75px;
  z-index: 100;
  background-color: #fff;
}
@media only screen and (max-width: 1000px) {
  .page-archive div.main nav.archive {
    font-size: 0.75em;
    max-width: calc(90% - 6em);
  }
}
.page-archive div.main nav.archive .search label div {
  font-size: 0.75em;
  font-weight: 700;
  color: #3d5dd7;
  margin: 0 0 0.25em;
}
.page-archive div.main nav.archive .search input {
  font-family: "Gotham A", "Gotham B", sans-serif;
  border: none;
  font-size: 1em;
  padding: 0;
  font-weight: 400;
  width: 90%;
  line-height: 1em;
}
.page-archive div.main nav.archive .search input::-moz-placeholder {
  color: rgb(151.1161417323, 165.25, 179.3838582677);
}
.page-archive div.main nav.archive .search input::placeholder {
  color: rgb(151.1161417323, 165.25, 179.3838582677);
}
@media only screen and (max-width: 1000px) {
  .page-archive div.main nav.archive .filters {
    display: none;
  }
}
.page-archive div.main nav.archive .filters > ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  cursor: pointer;
}
.page-archive div.main nav.archive .filters > ul .filter-summary .filtered {
  color: #444;
  font-weight: 700;
}
.page-archive div.main nav.archive .filters > ul > li {
  position: relative;
}
.page-archive div.main nav.archive .filters > ul > li > span {
  display: block;
  font-size: 0.75em;
  font-weight: 700;
  color: #3d5dd7;
  margin: 0 0 0.25em;
}
.page-archive div.main nav.archive .filters > ul > li > div {
  font-family: "Gotham A", "Gotham B", sans-serif;
  border: none;
  font-size: 1em;
  padding: 0;
  font-weight: 400;
  line-height: 1em;
}
.page-archive div.main nav.archive .filters > ul > li > ul {
  position: absolute;
  border: solid 1px #ddd;
  left: -20px;
  top: calc(100% + 10px);
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.15);
  padding: 10px;
  z-index: 1000;
  max-height: 250px;
  overflow-y: scroll;
  min-width: 200px;
}
.page-archive div.main nav.archive .filters > ul > li > ul li {
  font-size: 0.875em;
  padding: 0.5em 0.75em;
  border-radius: 4px;
  line-height: 1.25em;
  display: grid;
  grid-template-columns: 18px auto;
}
.page-archive div.main nav.archive .filters > ul > li > ul li:hover {
  background-color: rgba(0, 150, 206, 0.2);
}
.page-archive div.main .results {
  margin: 6em 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 3rem 0;
}
@media only screen and (max-width: 1000px) {
  .page-archive div.main .results {
    grid-template-columns: 1fr 1fr;
    margin: 2em 0 6em;
  }
}
.page-archive div.main .results .honoree-container {
  position: relative;
  text-align: center;
}
.page-archive div.main .results .honoree-container .photo {
  width: 80%;
  padding-top: 80%;
  margin: 0 auto;
  height: 0;
  position: relative;
  border-radius: 15px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}
.page-archive div.main .results .honoree-container h2 {
  margin: 0.75em 0 0.25em;
  font-size: 1.375em;
  font-weight: 600;
}
@media only screen and (max-width: 1000px) {
  .page-archive div.main .results .honoree-container h2 {
    font-size: 1.125em;
  }
}
.page-archive div.main .results .honoree-container h5 {
  color: #6b7f93;
  font-size: 0.875em;
}
@media only screen and (max-width: 1000px) {
  .page-archive div.main .results .honoree-container h5 {
    font-size: 0.75em;
  }
}
.page-archive div.main .results .honoree-container .orbie-circle {
  position: absolute;
  right: 0%;
  bottom: 0%;
  height: 10%;
  width: 10%;
  padding: 20% 5% 5% 20%;
  border-radius: 100%;
  z-index: 2;
}
.page-archive div.main .results .honoree-container .orbie-circle img {
  position: relative;
  z-index: 4;
}
.page-archive div.main .results .honoree-container .orbie-circle::after {
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(-45deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0) 50%);
  z-index: 3;
}

.page-awards div.main div.grid.header {
  display: grid;
  gap: 3rem;
  margin: 0 0 3rem 0;
}
.page-awards div.main div.grid.header div.center h3 {
  margin: 0;
}
@media screen and (min-width: 1000px) {
  .page-awards div.main div.grid.header {
    grid-template-columns: auto 1fr;
    align-items: center;
    justify-self: center;
  }
  .page-awards div.main div.grid.header .filters {
    align-items: end;
  }
}
.page-awards div.main .filters {
  display: flex;
}
.page-awards div.main .isotope-filters-button-group {
  border-radius: 100px;
  border: solid 1px #ddd;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: inline-flex;
  overflow: hidden;
}
.page-awards div.main .isotope-filters-button-group button {
  all: unset;
  padding: 0.75em 1.5em;
}
.page-awards div.main .isotope-filters-button-group button:not(:last-of-type) {
  border-right: solid 1px #ddd;
}
.page-awards div.main .isotope-filters-button-group button.is-checked {
  background: linear-gradient(to bottom, #00BCF2, rgb(0, 150.4, 193.6));
  color: #fff;
}
.page-awards div.main .markets {
  opacity: 0;
  width: 100%;
  clear: both;
  transition: opacity 400ms;
}
body.ready .page-awards div.main .markets {
  opacity: 1;
}
.page-awards div.main .markets .market {
  display: block;
  position: relative;
  background: #3d5dd7; /* Old browsers */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #3d5dd7 0%, #00ccff 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="$colorStart", endColorstr="$colorEnd",GradientType=1 ); /* IE6-9 */
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 16/9;
  transform: scale(1);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.25);
  margin: 1rem;
  width: calc(100% - 2rem);
}
@media screen and (min-width: 600px) {
  .page-awards div.main .markets .market {
    width: calc(50% - 2rem);
  }
}
@media screen and (min-width: 800px) {
  .page-awards div.main .markets .market {
    width: calc(33.3333333333% - 2rem);
  }
}
@media screen and (min-width: 1200px) {
  .page-awards div.main .markets .market {
    width: calc(25% - 2rem);
  }
}
.page-awards div.main .markets .market:hover {
  transform: scale(1.05);
}
.page-awards div.main .markets .market .background {
  opacity: 0.3;
}
.page-awards div.main .markets .market .market-name {
  color: #fff;
  position: absolute;
  bottom: 15px;
  left: 15px;
  text-transform: uppercase;
  line-height: 1.25em;
  font-size: 1em;
  font-weight: 800;
}
.page-awards div.main .markets .market .market-logo {
  position: absolute;
  width: 40%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.page-awards div.main .markets .market .market-logo svg * {
  fill: #fff !important;
}
.page-awards div.main .markets .market .verticals {
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  font-size: 0.625em;
  font-weight: 500;
  display: block;
  background-color: rgba(255, 255, 255, 0.75);
  padding: 10px;
  line-height: 1em;
  font-weight: 700;
  color: #3d5dd7;
  text-transform: uppercase;
}
.page-awards div.main .markets .market .verticals .vertical {
  display: inline-block;
  margin: 0;
}
.page-awards div.main .markets .market .verticals .vertical:after {
  content: "+";
  display: inline-block;
  margin: 0 0.25em 0 0.375em;
}
.page-awards div.main .markets .market .verticals .vertical:last-of-type:after {
  content: "";
}

.page-finalist div.main {
  padding-top: 0;
}
.page-finalist section#media h4 + h5 {
  margin-top: 0;
}

div.section-market.page-interview section#date {
  padding-bottom: 2rem;
}
div.section-market.page-interview section#date div.grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 4rem;
  text-align: center;
  justify-content: center;
}
div.section-market.page-interview section#date div.grid div.item {
  width: 100%;
}
@media screen and (min-width: 800px) {
  div.section-market.page-interview section#date div.grid div.item {
    width: 400px;
  }
}
div.section-market.page-interview section#date div.grid div.item figure.icon {
  height: 60px;
  width: 60px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  padding: 20px;
  background: linear-gradient(to top right, rgb(0, 169.2, 217.8), #00BCF2);
  margin: 0 auto;
  box-shadow: 0 0.8rem 2.6rem rgba(0, 0, 0, 0.05), 2px 2px 0 rgba(0, 0, 0, 0.1);
}
div.section-market.page-interview section#date div.grid div.item figure.icon svg {
  display: block;
  height: 100%;
  width: auto;
  fill: #fff;
  filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.05));
}
div.section-market.page-interview section#date div.grid div.item h3 {
  margin-top: 0.5em;
}
div.section-market.page-interview section#date div.grid div.item h5 {
  margin-top: 0;
  font-size: 1.2em;
}
div.section-market.page-interview section#call-to-action {
  padding: 4rem 0;
}
div.section-market.page-interview section#call-to-action div.standout {
  position: relative;
  background: linear-gradient(to top, rgb(242.25, 251.65, 254.35), #fff);
  border: 1px solid rgb(234.6, 240.84, 244.12);
  border-radius: 1rem;
  box-shadow: 0 0.8rem 2.6rem rgba(0, 0, 0, 0.05), 2px 2px 0 rgba(0, 0, 0, 0.02);
  transform: skew(-5deg);
  overflow: hidden;
}
div.section-market.page-interview section#call-to-action div.standout div.interior {
  transform: skew(5deg);
  padding: 3rem 6rem;
}
div.section-market.page-interview section#call-to-action div.standout figure.background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("https://cdn.orbie.org/assets/background-poly.png");
  z-index: 0;
  mix-blend-mode: color-burn;
  opacity: 0.95;
  background-size: 1000px;
}
div.section-market.page-interview section#call-to-action div.standout p {
  font-size: 1.4em;
  color: #00BCF2;
  font-weight: 500;
}
div.section-market.page-interview section#call-to-action div.standout.reverse {
  background: linear-gradient(to top, #004E77, rgb(0, 159.8, 205.7));
}
div.section-market.page-interview section#call-to-action div.standout.reverse p {
  color: #fff;
  text-shadow: 0 0 0.25em rgba(0, 0, 0, 0.2);
}
div.section-market.page-interview section#tips {
  padding: 6rem 0;
}
div.section-market.page-interview section#tips div.grid {
  display: grid;
  gap: 3rem;
}
@media screen and (min-width: 1000px) {
  div.section-market.page-interview section#tips div.grid {
    grid-template-columns: 1fr 1fr;
  }
}
div.section-market.page-interview section#tips div.grid h2 {
  margin-top: 0;
}
div.section-market.page-interview section#conclusion {
  padding: 0 0 calc(4rem + 2vw) 0;
}

.page-purchase #purchase-table div.sold-out {
  color: #727477;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 1.25em 2em;
  border: 2px solid #C6C8CA;
  display: inline-block;
  margin: 0 auto;
}

.page-schedule {
  /*!
   * Load Awesome v1.1.0 (http://github.danielcardoso.net/load-awesome/)
   * Copyright 2015 Daniel Cardoso <@DanielCardoso>
   * Licensed under MIT
   */
  /*
   * Animation
   */
}
.page-schedule .notes {
  font-family: "Gotham";
  border: solid 2px #ddd;
  width: calc(100% - 1em);
  padding: 0.5em;
  height: 5em;
  border-radius: 8px;
}
.page-schedule .notes:focus {
  border: solid 2px rgba(0, 150, 206, 0.75);
}
.page-schedule .error {
  font-size: 0.875em;
  color: #3d5dd7;
  display: block;
  margin: 0 0 1em;
}
.page-schedule .loader {
  width: 18px;
  height: 18px;
  border: 3px solid #FFF;
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.page-schedule .main.table {
  padding: 0;
  min-height: 100vh;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.page-schedule .main.table .table-awards-logo * {
  fill: #fff !important;
  margin: 0 0 2em;
}
@media only screen and (max-width: 1000px) {
  .page-schedule .main.table {
    display: block;
  }
}
.page-schedule .main.table #orbie-schedule-app {
  padding: 150px 25px;
  background-color: #f2f5f7;
  position: relative;
}
.page-schedule .main.table #orbie-schedule-app .orbie-schedule-loading {
  opacity: 0;
  transition: opacity 500ms;
  position: absolute;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  background-color: #fff;
}
.page-schedule .main.table #orbie-schedule-app .orbie-schedule-loading #orbie-loader {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  text-align: center;
}
.page-schedule .main.table #orbie-schedule-app .orbie-schedule-loading.on {
  opacity: 1;
}
.page-schedule .main.table #orbie-schedule-app .orbie-schedule-loading p {
  margin: 1em;
}
.page-schedule .main.table #orbie-schedule-app .lookup {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity 500ms;
  transition-delay: 500ms;
}
.page-schedule .main.table #orbie-schedule-app .lookup.on {
  opacity: 1;
}
.page-schedule .main.table #orbie-schedule-app .lookup h3 {
  color: #555;
  font-weight: 800;
  font-size: 2.5em;
  margin: 0 0 0.25em;
}
.page-schedule .main.table #orbie-schedule-app .lookup .lookup-input {
  margin: 1em 0 0;
}
.page-schedule .main.table #orbie-schedule-app .lookup .lookup-input input[type=email] {
  border-radius: 0;
  border-top-left-radius: 100px;
  border-bottom-left-radius: 100px;
  -webkit-appearance: none;
  border: solid 1px #ccc;
  border-right: none;
  font-family: "Gotham";
  font-size: 1.5em;
  padding: 0.75em 1em;
  width: 15em;
}
.page-schedule .main.table #orbie-schedule-app .lookup .lookup-input button {
  border-radius: 0;
  border-top-right-radius: 100px;
  border-bottom-right-radius: 100px;
  -webkit-appearance: none;
  border: solid 1px #0096ce;
  border-left: none;
  font-family: "Gotham";
  background-color: #0096ce;
  color: #fff;
  font-weight: 700;
  font-size: 1.5em;
  padding: 0.75em 1.25em;
  position: relative;
}
.page-schedule .main.table #orbie-schedule-app .lookup .lookup-input button span {
  opacity: 0;
}
.page-schedule .main.table #orbie-schedule-app .lookup .lookup-input button span.on {
  opacity: 1;
}
.page-schedule .main.table #orbie-schedule-app .lookup .lookup-input button .loading-icon {
  opacity: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.page-schedule .main.table #orbie-schedule-app .lookup .lookup-input button .loading-icon.on {
  opacity: 1;
}
.page-schedule .main.table #orbie-schedule-app .lookup .table-not-found {
  display: inline-block;
  opacity: 0;
  visibility: hidden;
  transition: opacity 500ms;
  margin: 1em 0;
  background-color: #ecc;
  border: solid 1px #933;
  padding: 1em 2em;
  color: #611;
  border-radius: 4px;
  max-width: 600px;
  line-height: 1.5em;
}
.page-schedule .main.table #orbie-schedule-app .lookup .table-not-found.on {
  visibility: visible;
  opacity: 1;
}
.page-schedule .main.table #orbie-schedule-app .registration-closed {
  background-color: #f5ecc8;
  border: solid 2px #a58f37;
  padding: 25px;
  border-radius: 10px;
  color: #706124;
}
.page-schedule .main.table #orbie-schedule-app .registration-closed strong {
  font-weight: 800;
}
.page-schedule .main.table #orbie-schedule-app .days {
  max-width: 750px;
  margin: 0 auto;
  position: relative;
  z-index: 100;
  opacity: 0;
  transition: opacity 500ms;
}
.page-schedule .main.table #orbie-schedule-app .days.on {
  opacity: 1;
}
@media only screen and (max-width: 1000px) {
  .page-schedule .main.table #orbie-schedule-app .days {
    position: relative;
    transform: none;
    top: auto;
  }
}
.page-schedule .main.table #orbie-schedule-app .days h2 {
  font-size: 2em;
  font-weight: 800;
  color: #555;
  text-align: center;
  margin: 0.25em 0;
}
.page-schedule .main.table #orbie-schedule-app .days .day {
  margin: 2em 0 0;
}
.page-schedule .main.table #orbie-schedule-app .days .day h3 {
  font-weight: 800;
  color: #0096ce;
  font-size: 1.25em;
  margin: 1.5em 0 0.25em;
}
.page-schedule .main.table #orbie-schedule-app .days .day h5 {
  font-size: 0.875em;
  display: inline-block;
  margin: 0 0 0.75em;
}
.page-schedule .main.table #orbie-schedule-app .days .day .unlimited-notice p {
  margin: 0.25em 2.5em 1.5em 0;
  line-height: 1.75em;
  font-size: 0.875em;
}
.page-schedule .main.table #orbie-schedule-app .days .day .sessions {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media only screen and (max-width: 1000px) {
  .page-schedule .main.table #orbie-schedule-app .days .day .sessions {
    grid-template-columns: 1fr;
  }
}
.page-schedule .main.table #orbie-schedule-app .days .day .session {
  background-color: #fff;
  border-radius: 10px;
  margin: 0.5em 1em 0.5em 0;
  text-align: left;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  position: relative;
  cursor: pointer;
  transform: scale(1);
  transition: transform 150ms;
  outline: solid 2px #fff;
  transition: outline 250ms;
  text-align: center;
}
.page-schedule .main.table #orbie-schedule-app .days .day .session .details {
  color: #ccc;
  display: block;
}
.page-schedule .main.table #orbie-schedule-app .days .day .session .details .session-form {
  padding: 0 1.5em;
  max-height: 0;
  overflow: hidden;
  transition: max-height 600ms;
}
.page-schedule .main.table #orbie-schedule-app .days .day .session .details .session-form.on {
  max-height: 1500px;
}
.page-schedule .main.table #orbie-schedule-app .days .day .session .details .session-form p {
  font-size: 0.875em;
  margin: 2em 0 0;
  color: #555;
  background-color: rgb(155, 227.8155339806, 255);
  padding: 1em;
  border-radius: 6px;
}
.page-schedule .main.table #orbie-schedule-app .days .day .session .details .session-form-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 1em;
}
.page-schedule .main.table #orbie-schedule-app .days .day .session .details .session-form-section .form-control {
  margin: 2em 0 0;
}
.page-schedule .main.table #orbie-schedule-app .days .day .session .details .session-form-section .form-control label {
  display: block;
  color: #0096ce;
  font-size: 0.875em;
}
.page-schedule .main.table #orbie-schedule-app .days .day .session .details .session-form-section .form-control input {
  width: 100%;
  padding: 0.5em 0;
  border: none;
  border-bottom: solid 1px #ccc;
  font-family: "Gotham A", "Gotham B", sans-serif;
}
.page-schedule .main.table #orbie-schedule-app .days .day .session .details .session-form-section .form-control input:focus {
  border-bottom: solid 1px #00ccff;
}
.page-schedule .main.table #orbie-schedule-app .days .day .session .details .session-form-section .form-control select {
  width: 100%;
  padding: 0.5em 0;
  border: none;
  border-bottom: solid 1px #ccc;
  font-family: "Gotham A", "Gotham B", sans-serif;
}
.page-schedule .main.table #orbie-schedule-app .days .day .session .details .orbie-button {
  display: block;
  background-color: #0096ce;
  background: #3d5dd7; /* Old browsers */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #3d5dd7 0%, #0096ce 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="$colorStart", endColorstr="$colorEnd",GradientType=1 ); /* IE6-9 */
  color: #fff;
  text-align: center;
  padding: 1.5em;
  border-radius: 50px;
  margin: 2em 0;
  transition: background-color 150ms;
  font-weight: 800;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
}
.page-schedule .main.table #orbie-schedule-app .days .day .session .details .orbie-button:hover {
  background-color: #00ccff;
  background: rgb(82.141025641, 110.6538461538, 219.358974359); /* Old browsers */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, rgb(82.141025641, 110.6538461538, 219.358974359) 0%, rgb(0, 168.567961165, 231.5) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="$colorStart", endColorstr="$colorEnd",GradientType=1 ); /* IE6-9 */
}
.page-schedule .main.table #orbie-schedule-app .days .day .session .details .session-error {
  color: #c8472a;
  font-size: 0.875em;
  margin: 2em 0 0;
}
.page-schedule .main.table #orbie-schedule-app .days .day .session:hover {
  outline: solid 2px #00ccff;
}
.page-schedule .main.table #orbie-schedule-app .days .day .session:hover .clear-session {
  opacity: 1;
}
.page-schedule .main.table #orbie-schedule-app .days .day .session:hover .clear-session:hover {
  background-color: #be3c3c;
  color: #fff;
}
.page-schedule .main.table #orbie-schedule-app .days .day .session:hover .details {
  color: #0096ce;
}
.page-schedule .main.table #orbie-schedule-app .days .day .session.active {
  outline: solid 2px #0096ce;
}
.page-schedule .main.table #orbie-schedule-app .days .day .session.active .details::after {
  content: "";
  background-color: #fff;
  border: solid 2px #00d16e;
  position: absolute;
  width: 25px;
  height: 25px;
  display: block;
  top: -5px;
  right: -10px;
  border-radius: 25px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
  background-image: url("https://cdn.orbie.org/icons/check.png");
  background-position: center center;
  background-size: 12px 9px;
  background-repeat: no-repeat;
}
.page-schedule .main.table #orbie-schedule-app .days .day .session .session-name {
  padding: 1.25em;
  color: #555;
  font-size: 1em;
  font-weight: 800;
}
@media only screen and (max-width: 1000px) {
  .page-schedule .main.table #orbie-schedule-app .days .day .session .session-name {
    font-size: 1em;
  }
}
.page-schedule .main.table #orbie-schedule-app .days .day .session .filled .session-name {
  color: #ccc;
}
.page-schedule .main.table #orbie-schedule-app .attendee-form {
  padding: 1em;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  border-color: gray;
  margin: 0.5em 1em 0.5em 0;
  background: white;
}
.page-schedule .main.table #orbie-schedule-app .attendee-form h3 {
  font-weight: 800;
  color: #555;
  font-size: 1.125em;
  margin: 0 0 1.5em;
}
.page-schedule .main.table #orbie-schedule-app .attendee-form h2 {
  text-align: center;
  padding-bottom: 0.5em;
  color: #0096ce;
}
.page-schedule .main.table #orbie-schedule-app .attendee-selection {
  padding: 1em;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  border-color: gray;
  margin: 2.5em 1em 0.5em 0;
  background: white;
}
.page-schedule .main.table #orbie-schedule-app .attendee-selection h3 {
  font-weight: 800;
  color: #555;
  font-size: 1.125em;
  margin: 0 0 0.5em;
}
.page-schedule .main.table #orbie-schedule-app .attendee-selection h4 {
  text-align: left;
  padding-bottom: 0.7em;
  color: #0096ce;
}
.page-schedule .main.table #orbie-schedule-app .attendee-selection-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0 0 1em;
}
.page-schedule .main.table #orbie-schedule-app .attendee-selection-details p {
  font-size: 0.875em;
  margin: 1.25em 0 0;
  line-height: 1.5em;
}
.page-schedule .main.table #orbie-schedule-app .input {
  margin: 0.5em 0;
}
.page-schedule .main.table #orbie-schedule-app .input input {
  font-family: "Gotham A", "Gotham B", sans-serif;
  width: calc(100% - 1em);
  border: solid 1px #ddd;
  padding: 0.75em 0.5em;
  margin-bottom: 0.5em;
  border-radius: 6px;
  outline: solid 0 #0096ce;
  transition: outline 150ms, border 150ms;
}
.page-schedule .main.table #orbie-schedule-app .input input:focus {
  border: solid 1px #fff;
  outline: solid 2px rgba(0, 150, 206, 0.75);
}
.page-schedule .main.table #orbie-schedule-app .submit-button {
  display: inline-block;
  padding: 1em 2em;
  margin: 1em auto;
  border-radius: 50px;
  color: #fff;
  background-color: #0096ce;
  font-size: 1.125em;
  font-weight: 800;
  cursor: pointer;
  transition: background-color 250ms;
}
.page-schedule .main.table #orbie-schedule-app .submit-button:hover {
  background-color: #00ccff;
}
.page-schedule .main.table #orbie-schedule-app .edit-button {
  font-weight: 800;
  color: #0096ce;
  cursor: pointer;
}
.page-schedule .main.table #orbie-schedule-app .preferences h3 {
  margin: 1.25em 0 0;
  font-size: 1.5em;
  font-weight: 800;
  color: #0096ce;
}
.page-schedule .main.table #orbie-schedule-app .preferences label {
  display: block;
  margin: 1.25em 0;
}
.page-schedule .main.table #orbie-schedule-app .preferences label div {
  margin: 0 0 0.25em;
}
.page-schedule .main.table #orbie-schedule-app .preferences select {
  width: 100%;
  border: none;
  padding: 12px 6px;
  border-radius: 8px;
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 800;
  color: #555;
}
.page-schedule .main.table #orbie-schedule-app .preferences .orbie-button {
  display: block;
  background-color: #0096ce;
  background: #3d5dd7; /* Old browsers */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #3d5dd7 0%, #0096ce 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="$colorStart", endColorstr="$colorEnd",GradientType=1 ); /* IE6-9 */
  color: #fff;
  text-align: center;
  padding: 1.5em;
  border-radius: 50px;
  margin: 2em 0;
  transition: background-color 150ms;
  font-weight: 800;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}
.page-schedule .main.table #orbie-schedule-app .preferences .orbie-button:hover {
  background-color: #00ccff;
  background: rgb(82.141025641, 110.6538461538, 219.358974359); /* Old browsers */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, rgb(82.141025641, 110.6538461538, 219.358974359) 0%, rgb(0, 168.567961165, 231.5) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="$colorStart", endColorstr="$colorEnd",GradientType=1 ); /* IE6-9 */
}
.page-schedule .main.table #orbie-schedule-app .unlock-code-input {
  position: absolute;
  bottom: 0;
  right: 0;
  margin: 10px;
  padding: 8px 12px;
  background-color: #ccc;
  font-size: 0.75em;
  border-radius: 0;
  cursor: pointer;
  font-weight: 400;
  border: none;
  width: 4em;
  background: transparent;
  border-bottom: solid 2px transparent;
  font-family: "Gotham A", "Gotham B", sans-serif;
  color: #555;
}
.page-schedule .main.table #orbie-schedule-app .unlock-code-input:hover {
  border-bottom: solid 2px #ccc;
}
.page-schedule .main.table #orbie-schedule-app .unlock-code-input:focus {
  border-bottom: solid 2px #0096ce;
}
.page-schedule .main.table #orbie-schedule-app .form-complete {
  padding: 1em;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  border-color: gray;
  margin: 2.5em 1em 0.5em 0;
  background: white;
}
.page-schedule .main.table #orbie-schedule-app .form-complete h2 {
  text-align: left;
  padding-bottom: 0.5em;
  font-weight: 400;
  color: #0096ce;
}
.page-schedule .main.table #orbie-schedule-app .form-complete h3 {
  font-weight: 800;
  color: #555;
  font-size: 1.125em;
  margin: 0 0 1.5em;
}
.page-schedule .main.table #orbie-schedule-app .form-complete h4 {
  text-align: left;
  padding-bottom: 0.7em;
  color: #0096ce;
}
.page-schedule .main.table #orbie-schedule-app .form-complete .attendee-details {
  padding: 1em;
}
.page-schedule .main.table .table-background {
  position: sticky;
  width: 100%;
  left: 0;
  top: 0;
  height: 100vh;
  background-size: cover;
  background-position: center center;
}
.page-schedule .main.table .table-background .container {
  position: absolute;
  z-index: 10;
  top: 50%;
  transform: translateY(-50%);
  width: calc(80% - 60px);
  margin: 0 10%;
}
.page-schedule .main.table .table-background .container h3 {
  color: #fff;
  font-size: 2.25em;
  font-weight: 800;
}
.page-schedule .main.table .table-background .container p {
  color: #fff;
  font-size: 1.125em;
  line-height: 1.5em;
  margin: 0.5em 0 1.5em;
}
.page-schedule .main.table .table-background .container a {
  color: rgb(102, 224.4, 255);
}
.page-schedule .main.table .table-background .container a:hover {
  color: rgb(25.5, 209.1, 255);
}
.page-schedule .main.table .table-background::after {
  content: "";
  position: absolute;
  width: 100%;
  right: 0;
  top: 0;
  height: 100%;
  background: #0096ce; /* Old browsers */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #0096ce 0%, #3d5dd7 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="$colorStart", endColorstr="$colorEnd",GradientType=0 ); /* IE6-9 */
  opacity: 0.85;
}
.page-schedule .la-line-scale,
.page-schedule .la-line-scale > div {
  position: relative;
  box-sizing: border-box;
}
.page-schedule .la-line-scale {
  display: block;
  font-size: 0;
  color: #0096ce;
}
.page-schedule .la-line-scale.la-dark {
  color: #333;
}
.page-schedule .la-line-scale > div {
  display: inline-block;
  float: none;
  background-color: currentColor;
  border: 0 solid currentColor;
}
.page-schedule .la-line-scale {
  width: 40px;
  height: 32px;
  margin: 0 auto;
}
.page-schedule .la-line-scale > div {
  width: 4px;
  height: 32px;
  margin: 2px;
  margin-top: 0;
  margin-bottom: 0;
  border-radius: 0;
  animation: line-scale 1.2s infinite ease;
}
.page-schedule .la-line-scale > div:nth-child(1) {
  animation-delay: -1.2s;
}
.page-schedule .la-line-scale > div:nth-child(2) {
  animation-delay: -1.1s;
}
.page-schedule .la-line-scale > div:nth-child(3) {
  animation-delay: -1s;
}
.page-schedule .la-line-scale > div:nth-child(4) {
  animation-delay: -0.9s;
}
.page-schedule .la-line-scale > div:nth-child(5) {
  animation-delay: -0.8s;
}
.page-schedule .la-line-scale.la-sm {
  width: 20px;
  height: 16px;
}
.page-schedule .la-line-scale.la-sm > div {
  width: 2px;
  height: 16px;
  margin: 1px;
  margin-top: 0;
  margin-bottom: 0;
}
.page-schedule .la-line-scale.la-2x {
  width: 80px;
  height: 64px;
}
.page-schedule .la-line-scale.la-2x > div {
  width: 8px;
  height: 64px;
  margin: 4px;
  margin-top: 0;
  margin-bottom: 0;
}
.page-schedule .la-line-scale.la-3x {
  width: 120px;
  height: 96px;
}
.page-schedule .la-line-scale.la-3x > div {
  width: 12px;
  height: 96px;
  margin: 6px;
  margin-top: 0;
  margin-bottom: 0;
}
@keyframes line-scale {
  0%, 40%, 100% {
    transform: scaleY(0.4);
  }
  20% {
    transform: scaleY(1);
  }
}

.page-finalists div.main .awards-videos {
  margin: 0 0 3em;
}
.page-finalists div.main .awards-videos .awards-video {
  margin: 20px;
  width: 300px;
  text-align: center;
}
.page-finalists div.main .awards-videos .awards-video .awards-video-image {
  background-color: #000;
  line-height: 0;
  border-radius: 8px;
  margin: 0 0 0.5em;
  overflow: hidden;
  border: solid 2px #fff;
  outline: solid 1px #ccc;
  transition: outline 250ms;
}
.page-finalists div.main .awards-videos .awards-video .awards-video-image img {
  opacity: 0.75;
  transition: opacity 250ms;
}
.page-finalists div.main .awards-videos .awards-video h5 {
  font-size: 0.875em;
  font-weight: 600;
}
.page-finalists div.main .awards-videos .awards-video a:hover .awards-video-image {
  outline: solid 3px #0096ce;
}
.page-finalists div.main .awards-videos .awards-video a:hover .awards-video-image img {
  opacity: 1;
}
.page-finalists div.main .awards-video-player {
  height: 0;
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
}
.page-finalists div.main .awards-video-player.on {
  height: auto;
}
.page-finalists div.main .media {
  margin: 0 0 3em;
}
.page-finalists div.main .category {
  display: grid;
}
.page-finalists div.main .category:not(:first-of-type) {
  border-top: solid 1px #eee;
  padding: 3em 0;
}
@media only screen and (max-width: 1000px) {
  .page-finalists div.main .category {
    display: block;
    text-align: center;
    font-size: 0.75em;
  }
}
@media only screen and (min-width: 1200px) {
  .page-finalists div.main .category {
    grid-template-columns: minmax(20vw, 370px) auto;
  }
}
.page-finalists div.main .category h3 {
  text-transform: uppercase;
  font-weight: 400;
  font-size: 1.25em;
  color: #999;
}
.page-finalists div.main .category h3 strong {
  font-weight: 800;
  font-size: 1.75em;
  color: #0096ce;
}
.page-finalists div.main figure.organization {
  display: flex;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  height: calc(2rem + 4vw);
  position: relative;
  align-items: flex-start;
  justify-content: center;
  opacity: 0;
  transition: opacity 400ms;
  max-width: 14em;
  max-height: 8em;
  z-index: 2;
}
@media screen and (min-width: 1000px) {
  .page-finalists div.main figure.organization {
    height: 4rem;
  }
}
.page-finalists div.main figure.organization.done {
  opacity: 1;
}
.page-finalists div.main figure.organization img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.page-finalists div.main figure.organization.landscape-ultrawide img {
  width: 95%;
}
.page-finalists div.main figure.organization.landscape-wide img {
  width: 70%;
}
.page-finalists div.main figure.organization.landscape img {
  width: 65%;
}
.page-finalists div.main figure.organization.landscape-narrow img {
  width: 60%;
}
.page-finalists div.main figure.organization.square {
  height: calc(3rem + 3vw);
}
.page-finalists div.main figure.organization.square img {
  width: 50%;
}
.page-finalists div.main figure.organization.portrait {
  height: calc(4rem + 3vw);
}
.page-finalists div.main figure.organization.portrait img {
  height: 65%;
}
.page-finalists div.main figure.organization.portrait-tall {
  height: calc(6rem + 3vw);
}
.page-finalists div.main figure.organization.portrait-tall img {
  height: 90%;
}
.page-finalists div.main .winners {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: calc(1rem + 5vw);
  max-width: 1200px;
  margin: 2rem auto 2rem;
}
@media screen and (min-width: 1000px) {
  .page-finalists div.main .winners {
    gap: 2rem;
  }
}
.page-finalists div.main .winners .winner {
  display: grid;
  vertical-align: top;
  text-align: center;
  margin: 0;
  position: relative;
  padding: 60px 1rem 1rem;
  box-shadow: 0 0.8rem 2.6rem rgba(0, 0, 0, 0.05), 2px 2px 0 rgba(0, 0, 0, 0.1);
  border-radius: 1rem;
  overflow: hidden;
  width: calc(100% - 2rem);
  max-width: 300px;
}
@media only screen and (min-width: 600px) {
  .page-finalists div.main .winners .winner {
    width: calc(50% - 2.5rem - 5vw);
  }
}
@media only screen and (min-width: 1000px) {
  .page-finalists div.main .winners .winner {
    width: calc(25% - 4rem);
  }
}
.page-finalists div.main .winners .winner div.winner-category {
  display: flex;
  margin: 0;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: calc(100% - 2rem);
  height: 40px;
  padding: 0.5rem 1rem 70%;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to top right, #004E77, #00BCF2);
  /*
  &.leadership,
  &.lifetime-achievement {
      background: linear-gradient(
          to top right,
          $color-black,
          $color-dark-gray
      );
  }


  &.global {
      background: linear-gradient(
          to top right,
          shade($color-dark-blue,20%),
          $color-dark-blue
      );
  }

  &.large-enterprise {
      background: linear-gradient(
          to top right,
          shade($color-teal,70%),
          shade($color-teal,30%)
      );
  }

  &.enterprise {
      background: linear-gradient(
          to top right,
          shade($color-teal,20%),
          tint($color-teal,10%)
      );
  }

  &.large-corporate {
      background: linear-gradient(
          to top right,
          shade($color-light-blue,60%),
          shade($color-light-blue,20%)
      );
  }

  &.corporate {
      background: linear-gradient(
          to top right,
          shade($color-light-blue,20%),
          tint($color-light-blue,30%)
      );
  }

  &.healthcare {
      background: linear-gradient(
          to top right,
          shade($color-orange,30%),
          tint($color-orange,20%)
      );
  }
  */
}
.page-finalists div.main .winners .winner div.winner-category::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("https://cdn.orbie.org/assets/background-poly.png");
  mix-blend-mode: color-burn;
  background-size: 200px;
}
.page-finalists div.main .winners .winner div.winner-category::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 80%;
  left: 0;
  height: calc(40% + 4vw);
  width: 100%;
  background: #fff;
  transform: skewY(-10deg);
}
.page-finalists div.main .winners .winner div.winner-category h5 {
  text-transform: uppercase;
  font-size: 1em;
  line-height: 1.1em;
  color: #fff;
  margin: 0;
  position: relative;
  z-index: 2;
  text-shadow: 0 0.8rem 2.6rem rgba(0, 0, 0, 0.05), 2px 2px 0 rgba(0, 0, 0, 0.1);
}
.page-finalists div.main .winners .winner .winner-headshot {
  display: block;
  border-radius: 100%;
  border: solid 2px #fff;
  outline: solid 2px #ccc;
  width: 100%;
  height: 0;
  padding-top: 100%;
  aspect-ratio: 1/1;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0.8rem 2.6rem rgba(0, 0, 0, 0.05);
  z-index: 2;
  transform: scale(1);
  transition: outline 150ms, transform 300ms, box-shadow 300ms;
}
.page-finalists div.main .winners .winner .winner-headshot:hover {
  outline: solid 2px #0096ce;
  transform: scale(1.025);
  box-shadow: 0 0.5rem 2.25rem rgba(0, 0, 0, 0.15);
}
.page-finalists div.main .winners .winner .winner-headshot a {
  display: block;
  width: 100%;
  height: 100%;
}
.page-finalists div.main .winners .winner .winner-headshot a img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  transform: scale(1);
}
.page-finalists div.main .winners .winner h4.winner-name {
  color: rgb(53.2893700787, 63.25, 73.2106299213);
  font-weight: 600;
  font-size: 1.4em;
  position: relative;
  margin-bottom: 1em;
  margin: 1em 0;
  z-index: 2;
}
.page-finalists div.main .finalists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}
@media only screen and (max-width: 1000px) {
  .page-finalists div.main .finalists {
    grid-template-columns: 1fr 1fr;
    padding: 0 5%;
  }
}
.page-finalists div.main .finalists .finalist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  margin: 2em 0;
}
@media only screen and (max-width: 1000px) {
  .page-finalists div.main .finalists .finalist {
    display: block;
    text-align: center;
  }
}
.page-finalists div.main .finalists .finalist .finalist-headshot {
  grid-area: 1/1/3/2;
  text-align: center;
}
.page-finalists div.main .finalists .finalist .finalist-headshot a {
  display: block;
}
.page-finalists div.main .finalists .finalist .finalist-headshot img {
  width: 75%;
  border-radius: 100%;
  border: solid 2px #fff;
  outline: solid 1px rgb(195.3897637795, 203.5, 211.6102362205);
  box-shadow: 0 0.8rem 2.6rem rgba(0, 0, 0, 0.05);
  transform: scale(1);
  transition: outline 150ms, transform 300ms, box-shadow 300ms;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.page-finalists div.main .finalists .finalist .finalist-headshot a:hover img {
  outline: solid 3px #0096ce;
  transform: scale(1.025);
  box-shadow: 0 1rem 2.25rem rgba(0, 0, 0, 0.15);
}
.page-finalists div.main .finalists .finalist .finalist-name {
  grid-area: 1/2/2/3;
}
@media screen and (min-width: 1000px) {
  .page-finalists div.main .finalists .finalist .finalist-name {
    display: grid;
    align-items: center;
  }
}
.page-finalists div.main .finalists .finalist h4 {
  font-weight: 700;
  color: #555;
  margin: 0.2em 0 0.5em;
  font-size: 1.5em;
}
.page-finalists div.main .finalists .finalist figure.organization {
  grid-area: 2/2/3/3;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  max-width: calc(8rem + 8vw);
  max-height: calc(5rem + 5vw);
}
@media screen and (min-width: 1000px) {
  .page-finalists div.main .finalists .finalist figure.organization {
    margin: 0;
    align-items: flex-start;
    justify-content: flex-start;
    max-width: 8em;
    max-height: 5em;
  }
  .page-finalists div.main .finalists .finalist figure.organization.landscape-ultrawide, .page-finalists div.main .finalists .finalist figure.organization.landscape-wide, .page-finalists div.main .finalists .finalist figure.organization.landscape, .page-finalists div.main .finalists .finalist figure.organization.landscape-narrow {
    max-height: 6em;
  }
  .page-finalists div.main .finalists .finalist figure.organization.landscape-ultrawide {
    max-width: 11em;
    max-height: 5em;
  }
  .page-finalists div.main .finalists .finalist figure.organization.landscape-wide {
    max-width: 13em;
    max-height: 5em;
  }
  .page-finalists div.main .finalists .finalist figure.organization.landscape {
    max-width: 12.5em;
  }
  .page-finalists div.main .finalists .finalist figure.organization.landscape-narrow {
    max-width: 12em;
  }
  .page-finalists div.main .finalists .finalist figure.organization.square {
    max-height: 6em;
    max-width: 6em;
  }
}
.page-finalists div.main .finalists .finalist figure.organization.portrait img, .page-finalists div.main .finalists .finalist figure.organization.portrait-tall img {
  height: 100%;
}
.page-finalists div.main .finalists .finalist figure.organization.square img {
  width: 85%;
  height: 85%;
}
.page-finalists div.main .finalists .finalist figure.organization img {
  -o-object-position: center top;
     object-position: center top;
}
@media screen and (min-width: 1000px) {
  .page-finalists div.main .finalists .finalist figure.organization img {
    -o-object-position: top left;
       object-position: top left;
  }
}
.page-finalists div.main .finalists .finalist h5 {
  margin: 0;
}
.page-finalists div.main #finalists-sponsors-grid {
  display: grid;
  gap: calc(3rem + 3vw);
}
@media screen and (min-width: 1000px) {
  .page-finalists div.main #finalists-sponsors-grid {
    grid-template-columns: 11fr 200px;
  }
}
.page-finalists div.main #finalists-sponsors-grid div.sponsors-grid {
  position: relative;
}
@media screen and (min-width: 1000px) {
  .page-finalists div.main #finalists-sponsors-grid div.sponsors-grid::after {
    content: "";
    position: absolute;
    top: 0;
    left: calc((-3rem - 3vw) / 2);
    width: 0;
    height: 100%;
    border-left: 1px solid #eee;
  }
}
.page-finalists div.main div.sponsors-grid div.levels {
  position: sticky;
  top: 6rem;
}
.page-finalists div.main div.sponsors-grid div.levels div.level h3 {
  text-transform: uppercase;
  font-weight: 700;
  margin: 0 0 2rem 0;
  color: #0096ce;
  letter-spacing: 0.03em;
  line-height: 2em;
  position: relative;
  font-size: clamp(0.575em, 0.4vw, 0.8em);
  padding: 0.85em 1.5em 0.5em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.page-finalists div.main div.sponsors-grid div.levels div.level h3::before {
  /*
  @include background-gradient($color-secondary,$color-tertiary,horizontal);
  */
  border: 1px solid rgba(0, 150, 206, 0.5);
  border-radius: 4px;
  position: absolute;
  content: "";
  width: calc(100% - 0.6em);
  height: calc(100% - 0.6em);
  top: 0.3em;
  left: 0.3em;
  z-index: -1;
  transform: skew(-5deg);
}
@media only screen and (max-width: 1000px) {
  .page-finalists div.main div.sponsors-grid div.levels div.level h3::before {
    width: 90%;
    left: 50%;
    transform: skew(-5deg) translateX(-50%);
  }
}
.page-finalists div.main div.sponsors-grid div.levels div.level div.sponsor {
  margin: 0 0 3rem 0;
}
.page-finalists div.main div.sponsors-grid figure.logo {
  display: block;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  position: relative;
  max-width: 240px;
}
.page-finalists div.main div.sponsors-grid figure.logo div.internal {
  width: 100%;
  height: 0;
  position: relative;
  padding-top: 70%;
}
.page-finalists div.main div.sponsors-grid figure.logo img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.page-finalists div.main div.sponsors-grid figure.logo.landscape-super-ultrawide {
  width: 100%;
}
.page-finalists div.main div.sponsors-grid figure.logo.landscape-super-ultrawide div.internal {
  padding-top: 10%;
}
.page-finalists div.main div.sponsors-grid figure.logo.landscape-ultrawide {
  width: 100%;
}
.page-finalists div.main div.sponsors-grid figure.logo.landscape-ultrawide div.internal {
  padding-top: 15%;
}
.page-finalists div.main div.sponsors-grid figure.logo.landscape-wide {
  width: 85%;
}
.page-finalists div.main div.sponsors-grid figure.logo.landscape-wide div.internal {
  padding-top: 20%;
}
.page-finalists div.main div.sponsors-grid figure.logo.landscape {
  width: 80%;
}
.page-finalists div.main div.sponsors-grid figure.logo.landscape div.internal {
  padding-top: 28%;
}
.page-finalists div.main div.sponsors-grid figure.logo.landscape-narrow {
  width: 70%;
}
.page-finalists div.main div.sponsors-grid figure.logo.landscape-narrow div.internal {
  padding-top: 55%;
}
.page-finalists div.main div.sponsors-grid figure.logo.portrait {
  width: 40%;
}
.page-finalists div.main div.sponsors-grid figure.logo.portrait div.internal {
  padding-top: 60%;
}
.page-finalists div.main div.sponsors-grid figure.logo.portrait-tall {
  width: 30%;
}
.page-finalists div.main div.sponsors-grid figure.logo.portrait-tall div.internal {
  padding-top: 70%;
}
.page-finalists div.main div.sponsors-grid figure.logo.square {
  width: 50%;
}
.page-finalists div.main div.sponsors-grid figure.logo.square div.internal {
  padding-top: 50%;
}

.page-guide div.main {
  padding: 4em 0 0;
}
.page-guide .events {
  background: #3d5dd7; /* Old browsers */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #3d5dd7 0%, #00ccff 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="$colorStart", endColorstr="$colorEnd",GradientType=1 ); /* IE6-9 */
  margin: 8em 0;
  padding: 18em 0;
  position: relative;
  /*

  &::before {
      background-image:url('https://cdn.orbie.org/assets/background-orbie-1.jpg');
      background-position:right bottom;
      opacity:0.25;
      position:absolute;
      content:'';
      top:0;
      left:0;
      width:100%;
      height:100%;
  }
  */
}
.page-guide .events::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 100vw 10vw 0;
  border-color: transparent #fff transparent transparent;
  z-index: 10;
}
.page-guide .events::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 10vw 100vw;
  border-color: transparent transparent #fff transparent;
  z-index: 10;
}
.page-guide .events .container {
  max-width: 1300px;
}
.page-guide .events h2 {
  text-align: center;
  font-weight: 900;
  color: #fff;
  margin: 0 0 1em;
  font-size: 3em;
}
.page-guide .events div {
  position: relative;
}
.page-guide .events h3 {
  color: #fff;
}
.page-guide .events p {
  color: #fff;
  font-size: 1em;
}
.page-guide .events .ratio {
  display: inline-block;
  color: #004E77;
  padding: 0.25em 1em 0.5em 3.5em;
  font-size: 0.75em;
  position: relative;
  margin: 2em 0 2em 1em;
  text-transform: uppercase;
  font-weight: 800;
}
.page-guide .events .ratio::before {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  transform: skew(-15deg);
  top: -3px;
  left: 0;
  background-color: #fff;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.3);
  border-radius: 3px;
}
.page-guide .events .ratio span {
  display: block;
  position: absolute;
  top: -10px;
  left: -15px;
  border-radius: 50%;
  line-height: 50px;
  width: 50px;
  background-color: #1bb0e0;
  color: #fff;
  text-align: center;
  font-weight: 800;
  font-size: 1.25em;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}
.page-guide .events .ratio strong {
  position: relative;
}
.page-guide .events .ratio em {
  position: relative;
  opacity: 0.75;
  font-style: normal;
  font-weight: 400;
}
.page-guide .events .note {
  text-align: right;
  color: #fff;
  font-size: 0.875em;
  font-weight: 500;
}
.page-guide .split-4 {
  padding: 0 0 10em;
}
.page-guide .split-4 .container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  padding: 0 3%;
}
.page-guide .split-4 h2 {
  font-weight: 800;
  text-align: center;
  color: #0096ce;
  margin: 0 0 1.5em;
  font-size: 3em;
}
.page-guide .split-4 h3 {
  font-size: 1.25em;
  font-weight: 800;
  color: #3d5dd7;
  margin: 1.5em 0 0;
  text-transform: uppercase;
}
.page-guide .split-4 .benefit-breakdown {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
}
.page-guide .split-4 .level {
  text-align: center;
  padding: 1.5em 1em;
  color: #fff;
  font-weight: 800;
  position: relative;
  top: 0;
  z-index: 10;
  background-color: #fff;
  margin-bottom: 1.5em;
}
.page-guide .split-4 .level span.per-market {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  color: #6b7f93;
  text-align: left;
  padding-left: 0;
  font-size: 1.4em;
  height: 100%;
  align-items: flex-end;
}
.page-guide .split-4 .level div {
  position: relative;
}
.page-guide .split-4 .level.gold::before, .page-guide .split-4 .level.silver::before, .page-guide .split-4 .level.bronze::before {
  position: absolute;
  content: "";
  width: calc(100% - 20px);
  height: calc(100% - 10px);
  top: 5px;
  left: 10px;
  transform: skew(-10deg);
  border-radius: 3px;
  background-color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.page-guide .split-4 .level.bronze::before {
  background-color: #7b6c56;
}
.page-guide .split-4 .level.silver::before {
  background-color: #8ba5ac;
}
.page-guide .split-4 .level.gold::before {
  background-color: #cf9213;
}
.page-guide .split-4 .event {
  font-weight: 800;
  padding: 1.5em 0;
  top: 0;
  border-bottom: solid 1px #eee;
  color: #fff;
}
.page-guide .split-4 .event.event-name {
  background-color: #fff;
  grid-column: 1/-1;
  position: relative;
  margin: 1em 0;
}
.page-guide .split-4 .event.event-name::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: -2%;
  width: 104%;
  height: 100%;
  background: #3d5dd7; /* Old browsers */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #3d5dd7 0%, #00ccff 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="$colorStart", endColorstr="$colorEnd",GradientType=1 ); /* IE6-9 */
  transform: skew(-10deg);
  border-radius: 4px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.page-guide .split-4 .event div {
  position: relative;
}
.page-guide .split-4 .benefit-description, .page-guide .split-4 .benefit {
  border-bottom: solid 1px #eee;
  padding: 1.75em 0;
  font-size: 0.875em;
}
.page-guide .split-4 .benefit-description a, .page-guide .split-4 .benefit a {
  display: inline-block;
  position: relative;
  margin: 0.25em 0 0.25em 0;
  padding: 0.75em 0.75em;
  color: #fff;
  font-size: 0.75em;
  line-height: 1em;
}
.page-guide .split-4 .benefit-description a span, .page-guide .split-4 .benefit a span {
  position: relative;
}
.page-guide .split-4 .benefit-description a::before, .page-guide .split-4 .benefit a::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #3d5dd7;
  transform: skew(-10deg);
  border-radius: 4px;
}
.page-guide .split-4 .benefit-description a:hover::before, .page-guide .split-4 .benefit a:hover::before {
  background-color: #0096ce;
}
.page-guide .split-4 .benefit {
  text-align: center;
  font-weight: 800;
}
.page-guide .split-4 .pricing, .page-guide .split-4 .price {
  padding: 1.5em 0;
  border-bottom: solid 1px #eee;
}
.page-guide .split-4 .pricing h5 {
  font-weight: 800;
}
.page-guide .split-4 .pricing ul {
  margin: 0.5em 0 0;
}
.page-guide .split-4 .pricing ul li {
  display: inline-block;
  position: relative;
  margin: 0.25em 0 0.25em 0;
  padding: 0.75em 0.75em;
  color: #fff;
  font-size: 0.75em;
  line-height: 1em;
}
.page-guide .split-4 .pricing ul li span {
  position: relative;
}
.page-guide .split-4 .pricing ul li::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #3d5dd7;
  transform: skew(-10deg);
  border-radius: 4px;
}
.page-guide .split-4 .price {
  text-align: center;
  font-weight: 800;
  font-size: 1.25em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-guide .split-4 .price.bronze {
  color: #7b6c56;
}
.page-guide .split-4 .price.silver {
  color: #8ba5ac;
}
.page-guide .split-4 .price.gold {
  color: #cf9213;
}
.page-guide .split-4 .price.level-1 {
  opacity: 1;
}
.page-guide .split-4 .price.level-2 {
  opacity: 0.8;
}
.page-guide .split-4 .price.level-3 {
  opacity: 0.6;
}
.page-guide .split-4 #multi-market {
  padding: 2em;
  margin: 2em 0 0;
  position: relative;
}
.page-guide .split-4 #multi-market::before {
  position: absolute;
  top: 0;
  left: -2%;
  content: "";
  width: 104%;
  height: 100%;
  background: #3d5dd7; /* Old browsers */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #3d5dd7 0%, #00ccff 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="$colorStart", endColorstr="$colorEnd",GradientType=1 ); /* IE6-9 */
  border-radius: 6px;
  transform: skew(-10deg);
}
.page-guide .split-4 #multi-market h3 {
  color: #fff;
  margin: 0 0 0.5em;
  position: relative;
}
.page-guide .split-4 #multi-market p {
  color: #fff;
  font-size: 0.875em;
  position: relative;
}
.page-guide #dates {
  background-color: #ecf0f5;
  padding: 20em 0 10em;
  position: relative;
}
.page-guide #dates::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 100vw 10vw 0;
  border-color: transparent #fff transparent transparent;
  z-index: 10;
}
.page-guide #dates .container {
  max-width: 1200px;
  margin: 0 auto;
}
.page-guide #dates h2 {
  text-align: center;
  font-weight: 900;
  font-size: 2.75em;
  color: #0096ce;
  margin: 0 0 1em;
}
.page-guide #dates table {
  width: 100%;
  margin: 2em 0;
  border-bottom: none;
}
.page-guide #dates table thead {
  position: sticky;
  top: 0;
}
.page-guide #dates table tr th {
  text-transform: uppercase;
  padding: 1.5em 0.5em;
  text-align: center;
  font-size: 0.75em;
  font-weight: 800;
  color: #3d5dd7;
}
.page-guide #dates table tr td, .page-guide #dates table tr:first-child td {
  border: none;
}
.page-guide #dates table tr td {
  text-align: center;
  padding: 1.5em 0.5em;
  font-size: 0.875em;
}
.page-guide #dates table tr td .small a {
  display: inline-block;
  font-size: 0.75em;
  font-weight: 800;
  text-transform: uppercase;
  background-color: #3d5dd7;
  padding: 0.5em 1em;
  color: #fff;
  margin: 0.5em 0 0;
  border-radius: 3px;
}
.page-guide #dates table tr td .small a:hover {
  background-color: #0096ce;
}
.page-guide #dates table tr:nth-child(even) td {
  background-color: rgba(255, 255, 255, 0.5);
}
.page-guide #dates table tr td:first-of-type, .page-guide #dates table tr th:first-of-type {
  text-align: left;
  font-weight: 800;
}
.page-guide #dates table.dataTable tbody tr {
  background: transparent;
}
.page-guide #dates table.dataTable thead th, .page-guide #dates table.dataTable thead td {
  border-bottom: none;
  background-color: rgba(255, 255, 255, 0.75);
  position: relative;
}
.page-guide #dates .dataTables_info {
  display: none;
}
.page-guide #dates table.dataTable .sorting_asc::after, .page-guide #dates table.dataTable .sorting_desc::after {
  content: "▲";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(0);
  font-size: 0.75em;
  color: #0096ce;
  transition: transform 250ms;
}
.page-guide #dates table.dataTable .sorting_asc::after {
  transform: translateY(-50%) rotate(180deg);
}
.page-guide .cta {
  margin: 0;
}

.page-honoree .main.honoree {
  padding: 0;
  height: 100vh;
  position: relative;
}
.page-honoree .main.honoree .honoree-background {
  content: "";
  position: absolute;
  width: 50%;
  right: 0;
  top: 0;
  height: 100%;
  background-size: cover;
  background-position: center center;
}
@media only screen and (max-width: 1000px) {
  .page-honoree .main.honoree .honoree-background {
    display: none;
  }
}
.page-honoree .main.honoree::after {
  content: "";
  position: absolute;
  width: 50%;
  right: 0;
  top: 0;
  height: 100%;
  background: #0096ce; /* Old browsers */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #0096ce 0%, #3d5dd7 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="$colorStart", endColorstr="$colorEnd",GradientType=0 ); /* IE6-9 */
  opacity: 0.8;
}
@media only screen and (max-width: 1000px) {
  .page-honoree .main.honoree::after {
    display: none;
  }
}
.page-honoree .cta {
  margin: 0;
}
.page-honoree .honoree-detail {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50%;
}
@media only screen and (max-width: 1000px) {
  .page-honoree .honoree-detail {
    width: 90%;
    font-size: 0.875em;
    padding: 0 5%;
  }
}
.page-honoree .honoree-detail .honoree-name {
  text-align: center;
}
.page-honoree .honoree-detail .honoree-name img {
  width: 140px;
  border-radius: 140px;
  border: solid 2px #fff;
  outline: solid 1px #c3ccd4;
}
.page-honoree .honoree-detail .honoree-name h2 {
  margin: 0.5em 0 0;
  font-size: 2.5em;
  color: #0096ce;
  font-weight: 800;
}
.page-honoree .honoree-detail .honoree-honor {
  text-align: center;
  margin: 3em 0;
}
.page-honoree .honoree-detail .honoree-honor h3 {
  font-size: 1.5em;
  font-weight: 700;
}
.page-honoree .honoree-detail .honoree-honor h5 {
  margin: 0.5em 0;
  line-height: 1.25em;
}

@media screen and (min-width: 600px) {
  .page-leadership.section-market .float-right,
  .page-leadership .float-right {
    float: right;
    margin: 0 0 3rem 3rem;
    width: 40%;
  }
}
.page-leadership.section-market figure.video + figcaption,
.page-leadership figure.video + figcaption {
  margin: 0.4rem 0;
}
.page-leadership.section-market figure.image,
.page-leadership figure.image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  line-height: 0;
}
.page-leadership.section-market div.grid-50,
.page-leadership div.grid-50 {
  display: grid;
  gap: 1rem;
}
@media screen and (min-width: 800px) {
  .page-leadership.section-market div.grid-50,
  .page-leadership div.grid-50 {
    gap: 3rem;
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}
.page-leadership.section-market div.grid-50 div.media a.image,
.page-leadership div.grid-50 div.media a.image {
  display: block;
  width: 100%;
  aspect-ratio: 9/6;
  min-height: 200px;
  position: relative;
}
.page-leadership.section-market div.grid-50 div.media.tilted-images img,
.page-leadership div.grid-50 div.media.tilted-images img {
  position: absolute;
  display: flex;
  border-radius: 0.125rem;
  box-shadow: 0 0.8rem 2.6rem rgba(0, 0, 0, 0.05);
  transition: opacity 800ms, left 1200ms, transform 1200ms;
  transition-timing-function: ease-in-out;
}
.page-leadership.section-market div.grid-50 div.media.tilted-images img:first-child,
.page-leadership div.grid-50 div.media.tilted-images img:first-child {
  z-index: 1;
  width: 45%;
  transform: rotate(-5deg);
  left: -5%;
  opacity: 0;
}
.page-leadership.section-market div.grid-50 div.media.tilted-images.visible.in img:first-child,
.page-leadership div.grid-50 div.media.tilted-images.visible.in img:first-child {
  transform: rotate(-3deg);
  opacity: 1;
  left: 0;
}
.page-leadership.section-market div.grid-50 div.media.tilted-images img:nth-child(2),
.page-leadership div.grid-50 div.media.tilted-images img:nth-child(2) {
  z-index: 2;
  left: 30%;
  top: 30%;
  width: 70%;
  transform: rotate(5deg);
  opacity: 0;
}
.page-leadership.section-market div.grid-50 div.media.tilted-images.visible.in img:nth-child(2),
.page-leadership div.grid-50 div.media.tilted-images.visible.in img:nth-child(2) {
  transform: rotate(3deg);
  opacity: 1;
  left: 25%;
}
.page-leadership.section-market div.grid-50 div.media p,
.page-leadership div.grid-50 div.media p {
  font-size: 0.9em;
}
.page-leadership.section-market section#intro ul.qualifications,
.page-leadership section#intro ul.qualifications {
  display: grid;
  list-style: none;
  margin: 2rem 0;
  font-size: 1.2em;
}
@media screen and (min-width: 600px) {
  .page-leadership.section-market section#intro ul.qualifications,
  .page-leadership section#intro ul.qualifications {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
  }
}
.page-leadership.section-market section#intro ul.qualifications li,
.page-leadership section#intro ul.qualifications li {
  position: relative;
  padding-left: 0;
  padding-top: 1rem;
  color: #00BCF2;
  transition: all 800ms;
  margin-top: 2rem;
  margin-bottom: 2rem;
  list-style: none;
}
.page-leadership.section-market section#intro ul.qualifications li:nth-child(2),
.page-leadership section#intro ul.qualifications li:nth-child(2) {
  transition-delay: 600ms;
}
.page-leadership.section-market section#intro ul.qualifications li:nth-child(3),
.page-leadership section#intro ul.qualifications li:nth-child(3) {
  transition-delay: 1200ms;
}
.page-leadership.section-market section#intro ul.qualifications li::before,
.page-leadership section#intro ul.qualifications li::before {
  display: none;
}
.page-leadership.section-market section#intro ul.qualifications li figure.check,
.page-leadership section#intro ul.qualifications li figure.check {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
}
.page-leadership.section-market section#intro ul.qualifications li figure.check svg,
.page-leadership section#intro ul.qualifications li figure.check svg {
  display: block;
  fill: #00BCF2;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center center;
     object-position: center center;
}
.page-leadership.section-market section#intro ul.qualifications.out li,
.page-leadership section#intro ul.qualifications.out li {
  top: 2rem;
  opacity: 0;
}
.page-leadership.section-market section#intro ul.qualifications.in li,
.page-leadership section#intro ul.qualifications.in li {
  top: 0;
  opacity: 1;
}
@media screen and (min-width: 1000px) {
  .page-leadership.section-market section#dates nav.timeline li,
  .page-leadership section#dates nav.timeline li {
    max-width: calc(20% - 2em);
  }
}
.page-leadership.section-market section#questionnaire .container,
.page-leadership section#questionnaire .container {
  max-width: 800px;
}
.page-leadership.section-market section#questionnaire .fsBody,
.page-leadership section#questionnaire .fsBody {
  margin: 3rem 0;
}
.page-leadership.section-market section#questionnaire .fsRowBody,
.page-leadership section#questionnaire .fsRowBody {
  margin: 2rem 0;
}
.page-leadership.section-market div.main,
.page-leadership div.main {
  padding-top: 0;
}
.page-leadership.section-market div.main#candidates #fsSection0,
.page-leadership div.main#candidates #fsSection0 {
  padding: 0 !important;
}
.page-leadership.section-market section#leadership-candidates,
.page-leadership section#leadership-candidates {
  position: relative;
  z-index: 2;
}
.page-leadership.section-market div.radio,
.page-leadership div.radio {
  padding: 1rem 0;
}
.page-leadership.section-market div.radio input[type=radio],
.page-leadership div.radio input[type=radio] {
  display: none;
}
.page-leadership.section-market div.radio label,
.page-leadership div.radio label {
  display: block;
}
.page-leadership.section-market div.radio label span.instruction::before,
.page-leadership div.radio label span.instruction::before {
  content: "Click to Vote";
}
.page-leadership.section-market div.radio label figure,
.page-leadership div.radio label figure {
  width: 30px;
  height: 30px;
  position: relative;
  margin: 0 auto;
  padding: 4px;
  border: 4px solid #C6C8CA;
  border-radius: 100%;
  transition: border 400ms;
}
.page-leadership.section-market div.radio label figure svg,
.page-leadership div.radio label figure svg {
  opacity: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  fill: #00a872;
  transform: scale(0.8);
  transition: opacity 400ms, transform, 400ms;
}
.page-leadership.section-market div.radio label span,
.page-leadership div.radio label span {
  display: block;
  font-size: 0.7em;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-weight: 500;
}
.page-leadership.section-market div.radio input[type=radio]:checked + label figure,
.page-leadership div.radio input[type=radio]:checked + label figure {
  border: 4px solid #00a872;
}
.page-leadership.section-market div.radio input[type=radio]:checked + label figure svg,
.page-leadership div.radio input[type=radio]:checked + label figure svg {
  transform: scale(1);
  opacity: 1;
}
.page-leadership.section-market div.radio input[type=radio]:checked + label span.instruction::before,
.page-leadership div.radio input[type=radio]:checked + label span.instruction::before {
  content: "Candidate Selected";
  color: #00a872;
}
.page-leadership.section-market figure.organization,
.page-leadership figure.organization {
  display: flex;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  height: calc(2rem + 4vw);
  position: relative;
  align-items: flex-start;
  justify-content: center;
  opacity: 0;
  transition: opacity 400ms;
  max-width: 14em;
  max-height: 8em;
  z-index: 2;
}
@media screen and (min-width: 1000px) {
  .page-leadership.section-market figure.organization,
  .page-leadership figure.organization {
    height: 4rem;
  }
}
.page-leadership.section-market figure.organization.done,
.page-leadership figure.organization.done {
  opacity: 1;
}
.page-leadership.section-market figure.organization img,
.page-leadership figure.organization img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.page-leadership.section-market figure.organization.landscape-ultrawide img,
.page-leadership figure.organization.landscape-ultrawide img {
  width: 95%;
}
.page-leadership.section-market figure.organization.landscape-wide img,
.page-leadership figure.organization.landscape-wide img {
  width: 70%;
}
.page-leadership.section-market figure.organization.landscape img,
.page-leadership figure.organization.landscape img {
  width: 65%;
}
.page-leadership.section-market figure.organization.landscape-narrow img,
.page-leadership figure.organization.landscape-narrow img {
  width: 60%;
}
.page-leadership.section-market figure.organization.square,
.page-leadership figure.organization.square {
  height: calc(3rem + 3vw);
}
.page-leadership.section-market figure.organization.square img,
.page-leadership figure.organization.square img {
  width: 50%;
}
.page-leadership.section-market figure.organization.portrait,
.page-leadership figure.organization.portrait {
  height: calc(4rem + 3vw);
}
.page-leadership.section-market figure.organization.portrait img,
.page-leadership figure.organization.portrait img {
  height: 65%;
}
.page-leadership.section-market figure.organization.portrait-tall,
.page-leadership figure.organization.portrait-tall {
  height: calc(6rem + 3vw);
}
.page-leadership.section-market figure.organization.portrait-tall img,
.page-leadership figure.organization.portrait-tall img {
  height: 90%;
}
.page-leadership.section-market .candidates,
.page-leadership .candidates {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: calc(1rem + 5vw);
  max-width: 1200px;
  margin: 2rem auto 2rem;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 1000px) {
  .page-leadership.section-market .candidates,
  .page-leadership .candidates {
    gap: 2rem;
  }
}
.page-leadership.section-market .candidates .candidate,
.page-leadership .candidates .candidate {
  display: grid;
  vertical-align: top;
  text-align: center;
  margin: 0;
  position: relative;
  padding: 1rem;
  box-shadow: 0 0.8rem 2.6rem rgba(0, 0, 0, 0.05), 2px 2px 0 rgba(0, 0, 0, 0.1);
  border-radius: 1rem;
  width: calc(100% - 2rem);
  max-width: 300px;
  overflow: hidden;
}
@media only screen and (min-width: 600px) {
  .page-leadership.section-market .candidates .candidate,
  .page-leadership .candidates .candidate {
    width: calc(50% - 2.5rem - 5vw);
  }
}
@media only screen and (min-width: 1000px) {
  .page-leadership.section-market .candidates .candidate,
  .page-leadership .candidates .candidate {
    width: calc(25% - 4rem);
  }
}
.page-leadership.section-market .candidates .candidate.active,
.page-leadership .candidates .candidate.active {
  outline: 4px solid #00a872;
}
.page-leadership.section-market .candidates .candidate figure.background,
.page-leadership .candidates .candidate figure.background {
  display: flex;
  margin: 0;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: calc(100% - 2rem);
  height: 40px;
  padding: 0.5rem 1rem 70%;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to top right, #004E77, #00BCF2);
}
.page-leadership.section-market .candidates .candidate figure.background::before,
.page-leadership .candidates .candidate figure.background::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("https://cdn.orbie.org/assets/background-poly.png");
  mix-blend-mode: color-burn;
  background-size: 200px;
}
.page-leadership.section-market .candidates .candidate figure.background::after,
.page-leadership .candidates .candidate figure.background::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 80%;
  left: 0;
  height: calc(40% + 4vw);
  width: 100%;
  background: #fff;
  transform: skewY(-10deg);
}
.page-leadership.section-market .candidates .candidate figure.background h5,
.page-leadership .candidates .candidate figure.background h5 {
  text-transform: uppercase;
  font-size: 1em;
  line-height: 1.1em;
  color: #fff;
  margin: 0;
  position: relative;
  z-index: 2;
  text-shadow: 0 0.8rem 2.6rem rgba(0, 0, 0, 0.05), 2px 2px 0 rgba(0, 0, 0, 0.1);
}
.page-leadership.section-market .candidates .candidate .candidate-headshot,
.page-leadership .candidates .candidate .candidate-headshot {
  display: block;
  border-radius: 100%;
  border: solid 2px #fff;
  outline: solid 2px #ccc;
  width: 100%;
  height: 0;
  padding-top: 100%;
  aspect-ratio: 1/1;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0.8rem 2.6rem rgba(0, 0, 0, 0.05);
  z-index: 2;
  transform: scale(1);
  transition: outline 150ms, transform 300ms, box-shadow 300ms;
}
.page-leadership.section-market .candidates .candidate .candidate-headshot:hover,
.page-leadership .candidates .candidate .candidate-headshot:hover {
  outline: solid 2px #0096ce;
  transform: scale(1.025);
  box-shadow: 0 0.5rem 2.25rem rgba(0, 0, 0, 0.15);
}
.page-leadership.section-market .candidates .candidate .candidate-headshot a, .page-leadership.section-market .candidates .candidate .candidate-headshot > div.wrapper,
.page-leadership .candidates .candidate .candidate-headshot a,
.page-leadership .candidates .candidate .candidate-headshot > div.wrapper {
  display: block;
  width: 100%;
  height: 100%;
}
.page-leadership.section-market .candidates .candidate .candidate-headshot a img, .page-leadership.section-market .candidates .candidate .candidate-headshot > div.wrapper img,
.page-leadership .candidates .candidate .candidate-headshot a img,
.page-leadership .candidates .candidate .candidate-headshot > div.wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  transform: scale(1);
}
.page-leadership.section-market .candidates .candidate h4.candidate-name,
.page-leadership .candidates .candidate h4.candidate-name {
  color: rgb(53.2893700787, 63.25, 73.2106299213);
  font-weight: 600;
  font-size: 1.4em;
  position: relative;
  margin-bottom: 1em;
  margin: 1em 0;
  z-index: 2;
}
.page-market div.main .events {
  margin: 10em 0;
}
.page-market div.main .events .grid {
  display: grid;
  gap: 3rem;
}
@media screen and (min-width: 1200px) {
  .page-market div.main .events .grid {
    grid-template-columns: 250px 8fr;
  }
}
.page-market div.main .events .events-grid {
  display: grid;
  gap: 3rem;
}
@media screen and (min-width: 1000px) {
  .page-market div.main .events .events-grid.count-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .page-market div.main .events .events-grid.count-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media only screen and (max-width: 1000px) {
  .page-market div.main .events {
    margin: 4em 0 0;
    padding: 0 5%;
    display: block;
  }
}
.page-market div.main .events .title {
  position: relative;
  margin: 0 0 2em;
}
.page-market div.main .events .title::after {
  background-color: #e1e5e9;
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  right: 40px;
  top: 0;
  transform: skew(-5deg);
  width: 2px;
}
@media only screen and (max-width: 1000px) {
  .page-market div.main .events .title::after {
    display: none;
  }
}
.page-market div.main .events h2 {
  font-weight: 800;
  color: rgb(53.2893700787, 63.25, 73.2106299213);
  font-size: 1.8em;
  line-height: 1.125em;
  margin-top: 0;
}
@media only screen and (max-width: 1000px) {
  .page-market div.main .events h2 {
    margin: 0;
    text-align: center;
  }
}
.page-market div.main .events h3 {
  font-size: 1.2em;
  color: rgb(53.2893700787, 63.25, 73.2106299213);
  margin: 0;
}
.page-market div.main .events h5 {
  margin: 0.25em 0;
  font-size: 1em;
  font-weight: 700;
  color: #0096ce;
  line-height: 1.25em;
}
.page-market div.main .events p {
  font-size: 0.775em;
  line-height: 1.5em;
}
.page-market div.main .sponsors {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.page-nominate div.main .button-nominate a {
  transform: scale(1);
  transition: transform 250ms;
}
.page-nominate div.main .button-nominate a.on {
  color: #fff;
}
.page-nominate div.main .button-nominate a.on::before {
  background-color: #0096ce;
  color: #fff;
}
.page-nominate div.main .markets {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  margin: 2em 0;
}
@media only screen and (max-width: 1000px) {
  .page-nominate div.main .markets {
    grid-template-columns: 1fr;
    padding: 0 10%;
  }
}
.page-nominate div.main .market a {
  display: block;
  position: relative;
  background: #3d5dd7; /* Old browsers */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #3d5dd7 0%, #00ccff 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="$colorStart", endColorstr="$colorEnd",GradientType=1 ); /* IE6-9 */
  border-radius: 8px;
  font-size: 1.5em;
  text-transform: uppercase;
  padding: 5em 0.75em 0.75em;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
  transform: skew(-5deg);
}
@media only screen and (max-width: 1000px) {
  .page-nominate div.main .market a {
    padding: 4em 0.75em 0.75em;
    font-size: 1em;
  }
}
.page-nominate div.main .market a .background {
  opacity: 0.15;
  transform: scale(1);
  transition: opacity 250ms, transform 250ms;
}
.page-nominate div.main .market a h3 {
  transform: skew(5deg);
  font-size: 1.25em;
  line-height: 1em;
}
.page-nominate div.main .market a strong {
  position: relative;
  color: #fff;
  font-weight: 800;
  display: block;
}
.page-nominate div.main .market a strong i {
  font-style: normal;
  font-weight: 300;
}
.page-nominate div.main .market a span {
  position: relative;
  color: #fff;
  font-size: 0.675em;
  font-style: normal;
  font-weight: 400;
}
.page-nominate div.main .market a:hover .background {
  transform: scale(1.1);
  opacity: 0.5;
}
.page-nominate div.main div.grid.sponsors {
  display: grid;
  gap: 3rem;
}
@media screen and (min-width: 1000px) {
  .page-nominate div.main div.grid.sponsors {
    grid-template-columns: 1fr 1fr;
  }
}
.page-nominate div.main div.grid.sponsors div.center {
  text-align: left;
}
.page-nominate div.main div.button {
  font-size: 0.875em;
}

.page-share div.main {
  background: #3d5dd7; /* Old browsers */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #3d5dd7 0%, #0096ce 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="$colorStart", endColorstr="$colorEnd",GradientType=1 ); /* IE6-9 */
  overflow: hidden;
  position: relative;
  height: 90vh;
}
.page-share .background {
  opacity: 0.25;
}
.page-share .share-element {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 450px;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 80%;
}
.page-share .share-element h3 {
  text-align: center;
  color: #fff;
  font-size: 1.25em;
  font-weight: 600;
  line-height: 1.25em;
  margin: 1.5em 0;
}
.page-share .share-element figure svg * {
  fill: #fff !important;
}

.page-sponsors div.main h4 {
  font-size: 3em;
  font-weight: 800;
  text-align: center;
  margin: 0 auto 1.25em;
  width: 80%;
  line-height: 1.25em;
}
@media only screen and (max-width: 1000px) {
  .page-sponsors div.main h4 {
    font-size: 1.5em;
  }
}
.page-sponsors div.main .levels h3 {
  font-size: 0.875em;
  text-transform: uppercase;
  position: relative;
  padding: 1.5em 0;
  text-align: center;
  color: #fff;
  margin: 3em 0 3em;
}
.page-sponsors div.main .levels h3::before {
  background: #00ccff; /* Old browsers */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #00ccff 0%, #3d5dd7 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="$colorStart", endColorstr="$colorEnd",GradientType=1 ); /* IE6-9 */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  border-radius: 4px;
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  transform: skew(-5deg);
}
@media only screen and (max-width: 1000px) {
  .page-sponsors div.main .levels h3::before {
    width: 90%;
    left: 50%;
    transform: skew(-5deg) translateX(-50%);
  }
}
.page-sponsors div.main .levels h3 strong {
  font-weight: 800;
}
.page-sponsors div.main .levels .sponsors {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.page-sponsors div.main .levels .sponsors .sponsor {
  width: 25%;
  margin: 3em 0;
}
@media only screen and (max-width: 1000px) {
  .page-sponsors div.main .levels .sponsors .sponsor {
    width: 45%;
    margin: 1em 0;
  }
}
.page-sponsors div.main .levels .sponsors.underwriter .sponsor {
  width: 20%;
}
@media only screen and (max-width: 1000px) {
  .page-sponsors div.main .levels .sponsors.underwriter .sponsor {
    width: 45%;
  }
}
.page-sponsors div.main .levels .sponsors.silver .sponsor {
  width: 20%;
}
@media only screen and (max-width: 1000px) {
  .page-sponsors div.main .levels .sponsors.silver .sponsor {
    width: 45%;
  }
}
.page-sponsors div.main .levels .sponsors.bronze .sponsor {
  width: 15%;
}
@media only screen and (max-width: 1000px) {
  .page-sponsors div.main .levels .sponsors.bronze .sponsor {
    width: 45%;
  }
}
.page-sponsors div.main .levels .sponsors figure {
  width: 60%;
  height: 60px;
  display: block;
  margin: 0 auto;
  position: relative;
}
.page-sponsors div.main .levels .sponsors figure img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center center;
     object-position: center center;
}

.page-start .content form {
  margin: 0 0 5em;
}
.page-start .content form select {
  font-size: 1.375em;
  border-radius: 5px;
  font-weight: 400;
  margin: 1em 0;
}

.page-purchase #purchase-table div.sold-out {
  color: #727477;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 1.25em 2em;
  border: 2px solid #C6C8CA;
  display: inline-block;
  margin: 0 auto;
}

.page-table {
  /*!
   * Load Awesome v1.1.0 (http://github.danielcardoso.net/load-awesome/)
   * Copyright 2015 Daniel Cardoso <@DanielCardoso>
   * Licensed under MIT
   */
  /*
   * Animation
   */
}
.page-table .main.table {
  padding: 0;
  min-height: 100vh;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.page-table .main.table .table-awards-logo * {
  fill: #fff !important;
  margin: 0 0 2em;
}
@media only screen and (max-width: 1000px) {
  .page-table .main.table {
    display: block;
  }
}
.page-table .main.table #orbie-registration-app {
  padding: 150px 25px;
  background-color: #f2f5f7;
  position: relative;
}
@media only screen and (max-width: 1000px) {
  .page-table .main.table #orbie-registration-app {
    height: calc(100vh - 300px);
  }
}
.page-table .main.table #orbie-registration-app .orbie-table-loading {
  opacity: 0;
  transition: opacity 500ms;
  position: absolute;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  background-color: #fff;
}
.page-table .main.table #orbie-registration-app .orbie-table-loading #orbie-loader {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  text-align: center;
}
.page-table .main.table #orbie-registration-app .orbie-table-loading.on {
  opacity: 1;
}
.page-table .main.table #orbie-registration-app .orbie-table-loading p {
  margin: 1em;
}
.page-table .main.table #orbie-registration-app .lookup {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity 500ms;
  transition-delay: 500ms;
}
.page-table .main.table #orbie-registration-app .lookup.on {
  opacity: 1;
}
.page-table .main.table #orbie-registration-app .lookup h3 {
  color: #555;
  font-weight: 800;
  font-size: 2.5em;
  margin: 0 0 0.25em;
}
@media only screen and (max-width: 1000px) {
  .page-table .main.table #orbie-registration-app .lookup h3 {
    font-size: 2em;
  }
}
.page-table .main.table #orbie-registration-app .lookup .lookup-input {
  margin: 1em 0 0;
}
.page-table .main.table #orbie-registration-app .lookup .lookup-input input[type=email] {
  border-radius: 0;
  border-top-left-radius: 100px;
  border-bottom-left-radius: 100px;
  -webkit-appearance: none;
  border: solid 1px #ccc;
  border-right: none;
  font-family: "Gotham";
  font-size: 1.5em;
  padding: 0.75em 1em;
  width: 15em;
}
@media only screen and (max-width: 1000px) {
  .page-table .main.table #orbie-registration-app .lookup .lookup-input input[type=email] {
    font-size: 1em;
    width: 12em;
  }
}
.page-table .main.table #orbie-registration-app .lookup .lookup-input button {
  border-radius: 0;
  border-top-right-radius: 100px;
  border-bottom-right-radius: 100px;
  -webkit-appearance: none;
  border: solid 1px #0096ce;
  border-left: none;
  font-family: "Gotham";
  background-color: #0096ce;
  color: #fff;
  font-weight: 700;
  font-size: 1em;
  padding: 0.75em 1.25em;
  position: relative;
}
.page-table .main.table #orbie-registration-app .lookup .lookup-input button span {
  opacity: 0;
}
.page-table .main.table #orbie-registration-app .lookup .lookup-input button span.on {
  opacity: 1;
}
.page-table .main.table #orbie-registration-app .lookup .lookup-input button .loading-icon {
  opacity: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.page-table .main.table #orbie-registration-app .lookup .lookup-input button .loading-icon.on {
  opacity: 1;
}
.page-table .main.table #orbie-registration-app .lookup .table-not-found {
  display: inline-block;
  opacity: 0;
  visibility: hidden;
  transition: opacity 500ms;
  margin: 1em 0;
  background-color: #ecc;
  border: solid 1px #933;
  padding: 1em 2em;
  color: #611;
  border-radius: 4px;
  max-width: 600px;
  line-height: 1.5em;
}
.page-table .main.table #orbie-registration-app .lookup .table-not-found.on {
  visibility: visible;
  opacity: 1;
}
.page-table .main.table #orbie-registration-app .registration-closed {
  background-color: #f5ecc8;
  border: solid 2px #a58f37;
  padding: 25px;
  border-radius: 10px;
  color: #706124;
}
.page-table .main.table #orbie-registration-app .registration-closed strong {
  font-weight: 800;
}
.page-table .main.table #orbie-registration-app .tables {
  max-width: 750px;
  margin: 0 auto;
  position: relative;
  z-index: 100;
  opacity: 0;
  transition: opacity 500ms;
}
.page-table .main.table #orbie-registration-app .tables.on {
  opacity: 1;
}
@media only screen and (max-width: 1000px) {
  .page-table .main.table #orbie-registration-app .tables {
    position: relative;
    transform: none;
    top: auto;
  }
}
.page-table .main.table #orbie-registration-app .tables .register-myself {
  display: block;
  float: right;
  position: relative;
  top: -0.125em;
  margin: 0 0 0 0;
}
.page-table .main.table #orbie-registration-app .tables .register-myself a {
  display: inline-block;
  background-color: #0096ce;
  color: #fff;
  padding: 1em 1.5em;
  font-weight: 800;
  border-radius: 40px;
  font-size: 0.5em;
  text-transform: uppercase;
}
.page-table .main.table #orbie-registration-app .tables .register-myself a:hover {
  background-color: #00ccff;
}
.page-table .main.table #orbie-registration-app .tables .table-nav {
  text-align: center;
}
.page-table .main.table #orbie-registration-app .tables .table-nav ul {
  border-radius: 50px;
  overflow: hidden;
  display: inline-block;
  border: solid 2px #0096ce;
  font-size: 0.875em;
  margin: 0 0 1em;
}
.page-table .main.table #orbie-registration-app .tables .table-nav ul li {
  display: inline-block;
}
.page-table .main.table #orbie-registration-app .tables .table-nav ul li a {
  display: inline-block;
  padding: 1em 2em;
  background-color: #fff;
  color: #777;
}
.page-table .main.table #orbie-registration-app .tables .table-nav ul li a.on {
  background-color: #0096ce;
  color: #fff;
}
.page-table .main.table #orbie-registration-app .tables .table {
  vertical-align: top;
}
.page-table .main.table #orbie-registration-app .tables .table h3 {
  font-weight: 800;
  color: #0096ce;
  font-size: 1.25em;
  margin: 1.5em 0 0.5em;
  display: inline-block;
}
.page-table .main.table #orbie-registration-app .tables .table h3 span {
  font-size: 0.5em;
  display: inline-block;
  margin-left: 1em;
  background-color: #0096ce;
  color: #fff;
  padding: 0.675em 1em 0.5em;
  border-radius: 25px;
  position: relative;
  top: -3px;
}
.page-table .main.table #orbie-registration-app .tables .table h3 span.virtual {
  background-color: #3d5dd7;
}
.page-table .main.table #orbie-registration-app .tables .table .unlimited-notice p {
  margin: 0.25em 2.5em 1.5em 0;
  line-height: 1.75em;
  font-size: 0.875em;
}
.page-table .main.table #orbie-registration-app .tables .table .seats {
  display: grid;
  grid-template-columns: 1fr;
}
@media only screen and (max-width: 1000px) {
  .page-table .main.table #orbie-registration-app .tables .table .seats {
    grid-template-columns: 1fr;
  }
}
.page-table .main.table #orbie-registration-app .tables .table .seat, .page-table .main.table #orbie-registration-app .tables .table .unlimited-link {
  background-color: #fff;
  border-radius: 10px;
  margin: 0.5em 1em 0.5em 0;
  text-align: left;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  position: relative;
  cursor: pointer;
  transform: scale(1);
  transition: transform 150ms;
}
.page-table .main.table #orbie-registration-app .tables .table .unlimited-link .details {
  display: grid;
  grid-template-columns: 60% 40%;
}
@media only screen and (max-width: 1000px) {
  .page-table .main.table #orbie-registration-app .tables .table .unlimited-link .details {
    display: block;
  }
}
.page-table .main.table #orbie-registration-app .tables .table .unlimited-link .unlimited-url {
  font-size: 0.75em;
  padding: 2.25em;
}
@media only screen and (max-width: 1000px) {
  .page-table .main.table #orbie-registration-app .tables .table .unlimited-link .unlimited-url {
    padding: 2em 5% 0;
  }
}
@media only screen and (max-width: 1000px) {
  .page-table .main.table #orbie-registration-app .tables .table .unlimited-link .unlimited-url a {
    width: 90%;
    border: solid 1px #ccc;
    border-radius: 4px;
    display: block;
    padding: 1em 5%;
    overflow: hidden;
  }
}
.page-table .main.table #orbie-registration-app .tables .table .unlimited-link .unlimited-actions {
  text-align: right;
  padding: 1.5em;
}
@media only screen and (max-width: 1000px) {
  .page-table .main.table #orbie-registration-app .tables .table .unlimited-link .unlimited-actions {
    text-align: center;
  }
}
.page-table .main.table #orbie-registration-app .tables .table .unlimited-link .unlimited-actions a {
  position: relative;
  background-color: #0096ce;
  color: #fff;
  padding: 0.75em 1.75em;
  border-radius: 25px;
  font-weight: 800;
  font-size: 0.75em;
  margin: 0 0 0 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
}
.page-table .main.table #orbie-registration-app .tables .table .unlimited-link .unlimited-actions a:hover {
  background-color: #00ccff;
}
.page-table .main.table #orbie-registration-app .tables .table .seat {
  outline: solid 2px #fff;
  transition: outline 250ms;
}
.page-table .main.table #orbie-registration-app .tables .table .seat .details {
  color: #ccc;
  display: block;
}
.page-table .main.table #orbie-registration-app .tables .table .seat .details .attendee-empty {
  color: #c8472a;
}
.page-table .main.table #orbie-registration-app .tables .table .seat .details.filled::after {
  content: "";
  background-color: #fff;
  border: solid 2px #00d16e;
  position: absolute;
  width: 25px;
  height: 25px;
  display: block;
  top: -5px;
  right: -10px;
  border-radius: 25px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
  background-image: url("https://cdn.orbie.org/icons/check.png");
  background-position: center center;
  background-size: 12px 9px;
  background-repeat: no-repeat;
}
.page-table .main.table #orbie-registration-app .tables .table .seat .details .seat-form {
  padding: 0 1.5em;
  max-height: 0;
  overflow: hidden;
  transition: max-height 600ms;
}
.page-table .main.table #orbie-registration-app .tables .table .seat .details .seat-form.on {
  max-height: 1500px;
}
.page-table .main.table #orbie-registration-app .tables .table .seat .details .seat-form p {
  font-size: 0.875em;
  margin: 2em 0 0;
  color: #555;
  background-color: rgb(155, 227.8155339806, 255);
  padding: 1em;
  border-radius: 6px;
}
.page-table .main.table #orbie-registration-app .tables .table .seat .details .seat-form-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 1em;
}
.page-table .main.table #orbie-registration-app .tables .table .seat .details .seat-form-section .form-control {
  margin: 2em 0 0;
}
.page-table .main.table #orbie-registration-app .tables .table .seat .details .seat-form-section .form-control label {
  display: block;
  color: #0096ce;
  font-size: 0.875em;
}
.page-table .main.table #orbie-registration-app .tables .table .seat .details .seat-form-section .form-control input {
  width: 100%;
  padding: 0.5em 0;
  border: none;
  border-bottom: solid 1px #ccc;
  font-family: "Gotham A", "Gotham B", sans-serif;
}
.page-table .main.table #orbie-registration-app .tables .table .seat .details .seat-form-section .form-control input:focus {
  border-bottom: solid 1px #00ccff;
}
.page-table .main.table #orbie-registration-app .tables .table .seat .details .seat-form-section .form-control select {
  width: 100%;
  padding: 0.5em 0;
  border: none;
  border-bottom: solid 1px #ccc;
  font-family: "Gotham A", "Gotham B", sans-serif;
}
.page-table .main.table #orbie-registration-app .tables .table .seat .details .orbie-button {
  display: block;
  background-color: #0096ce;
  background: #3d5dd7; /* Old browsers */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #3d5dd7 0%, #0096ce 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="$colorStart", endColorstr="$colorEnd",GradientType=1 ); /* IE6-9 */
  color: #fff;
  text-align: center;
  padding: 1.5em;
  border-radius: 50px;
  margin: 2em 0;
  transition: background-color 150ms;
  font-weight: 800;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
}
.page-table .main.table #orbie-registration-app .tables .table .seat .details .orbie-button:hover {
  background-color: #00ccff;
  background: rgb(82.141025641, 110.6538461538, 219.358974359); /* Old browsers */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, rgb(82.141025641, 110.6538461538, 219.358974359) 0%, rgb(0, 168.567961165, 231.5) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="$colorStart", endColorstr="$colorEnd",GradientType=1 ); /* IE6-9 */
}
.page-table .main.table #orbie-registration-app .tables .table .seat .details .seat-error {
  color: #c8472a;
  font-size: 0.875em;
  margin: 2em 0 0;
}
.page-table .main.table #orbie-registration-app .tables .table .seat .vip-seat {
  font-size: 0.5em;
  color: #fff;
  font-weight: 800;
  padding: 0.5em 1em;
  border-radius: 25px;
  background-color: #aa8324;
  margin: 0.5em 0 0 5px;
  position: relative;
  top: -0.25em;
  text-transform: uppercase;
}
.page-table .main.table #orbie-registration-app .tables .table .seat .is-presenter {
  position: absolute;
  top: 26px;
  right: 30px;
  font-size: 0.5em;
  color: #fff;
  display: inline-block;
  padding: 5px 12px;
  background-color: #3d5dd7;
  border-radius: 25px;
}
.page-table .main.table #orbie-registration-app .tables .table .seat .clear-seat {
  display: inline-block;
  font-size: 0.5em;
  padding: 0.5em 1em;
  border-radius: 3px;
  border: solid 1px #be3c3c;
  color: #be3c3c;
  position: absolute;
  right: 1em;
  background-color: #fff;
  opacity: 0;
  transition: opacity 250ms, background-color 250ms, color 250ms;
  top: 2.75em;
  font-weight: 800;
}
.page-table .main.table #orbie-registration-app .tables .table .seat:hover {
  outline: solid 2px #00ccff;
}
.page-table .main.table #orbie-registration-app .tables .table .seat:hover .clear-seat {
  opacity: 1;
}
.page-table .main.table #orbie-registration-app .tables .table .seat:hover .clear-seat:hover {
  background-color: #be3c3c;
  color: #fff;
}
.page-table .main.table #orbie-registration-app .tables .table .seat:hover .details {
  color: #0096ce;
}
.page-table .main.table #orbie-registration-app .tables .table .seat .attendee-name {
  padding: 1.5em;
  color: #555;
  font-size: 1.125em;
  font-weight: 800;
}
@media only screen and (max-width: 1000px) {
  .page-table .main.table #orbie-registration-app .tables .table .seat .attendee-name {
    font-size: 1em;
  }
}
.page-table .main.table #orbie-registration-app .tables .table .seat .seat-name {
  font-weight: 800;
  font-size: 1.125em;
}
.page-table .main.table #orbie-registration-app .preferences h3 {
  margin: 1.25em 0 0;
  font-size: 1.5em;
  font-weight: 800;
  color: #0096ce;
}
.page-table .main.table #orbie-registration-app .preferences label {
  display: block;
  margin: 1.25em 0;
}
.page-table .main.table #orbie-registration-app .preferences label div {
  margin: 0 0 0.25em;
}
.page-table .main.table #orbie-registration-app .preferences select {
  width: 100%;
  border: none;
  padding: 12px 6px;
  border-radius: 8px;
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 800;
  color: #555;
}
.page-table .main.table #orbie-registration-app .preferences .orbie-button {
  display: block;
  background-color: #0096ce;
  background: #3d5dd7; /* Old browsers */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #3d5dd7 0%, #0096ce 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="$colorStart", endColorstr="$colorEnd",GradientType=1 ); /* IE6-9 */
  color: #fff;
  text-align: center;
  padding: 1.5em;
  border-radius: 50px;
  margin: 2em 0;
  transition: background-color 150ms;
  font-weight: 800;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}
.page-table .main.table #orbie-registration-app .preferences .orbie-button:hover {
  background-color: #00ccff;
  background: rgb(82.141025641, 110.6538461538, 219.358974359); /* Old browsers */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, rgb(82.141025641, 110.6538461538, 219.358974359) 0%, rgb(0, 168.567961165, 231.5) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="$colorStart", endColorstr="$colorEnd",GradientType=1 ); /* IE6-9 */
}
.page-table .main.table #orbie-registration-app .unlock-code-input {
  position: absolute;
  bottom: 0;
  right: 0;
  margin: 10px;
  padding: 8px 12px;
  background-color: #ccc;
  font-size: 0.75em;
  border-radius: 0;
  cursor: pointer;
  font-weight: 400;
  border: none;
  width: 4em;
  background: transparent;
  border-bottom: solid 2px transparent;
  font-family: "Gotham A", "Gotham B", sans-serif;
  color: #555;
}
.page-table .main.table #orbie-registration-app .unlock-code-input:hover {
  border-bottom: solid 2px #ccc;
}
.page-table .main.table #orbie-registration-app .unlock-code-input:focus {
  border-bottom: solid 2px #0096ce;
}
.page-table .main.table .table-background {
  position: sticky;
  width: 100%;
  left: 0;
  top: 0;
  height: 100vh;
  background-size: cover;
  background-position: center center;
}
.page-table .main.table .table-background .container {
  position: absolute;
  z-index: 10;
  top: 50%;
  transform: translateY(-50%);
  width: calc(80% - 60px);
  margin: 0 10%;
}
.page-table .main.table .table-background .container h3 {
  color: #fff;
  font-size: 2.25em;
  font-weight: 800;
}
.page-table .main.table .table-background .container p {
  color: #fff;
  font-size: 1.125em;
  line-height: 1.5em;
  margin: 0.5em 0 1.5em;
}
.page-table .main.table .table-background .container a {
  color: rgb(102, 224.4, 255);
}
.page-table .main.table .table-background .container a:hover {
  color: rgb(25.5, 209.1, 255);
}
.page-table .main.table .table-background::after {
  content: "";
  position: absolute;
  width: 100%;
  right: 0;
  top: 0;
  height: 100%;
  background: #0096ce; /* Old browsers */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #0096ce 0%, #3d5dd7 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="$colorStart", endColorstr="$colorEnd",GradientType=0 ); /* IE6-9 */
  opacity: 0.85;
}
.page-table .la-line-scale,
.page-table .la-line-scale > div {
  position: relative;
  box-sizing: border-box;
}
.page-table .la-line-scale {
  display: block;
  font-size: 0;
  color: #0096ce;
}
.page-table .la-line-scale.la-dark {
  color: #333;
}
.page-table .la-line-scale > div {
  display: inline-block;
  float: none;
  background-color: currentColor;
  border: 0 solid currentColor;
}
.page-table .la-line-scale {
  width: 40px;
  height: 32px;
  margin: 0 auto;
}
.page-table .la-line-scale > div {
  width: 4px;
  height: 32px;
  margin: 2px;
  margin-top: 0;
  margin-bottom: 0;
  border-radius: 0;
  animation: line-scale 1.2s infinite ease;
}
.page-table .la-line-scale > div:nth-child(1) {
  animation-delay: -1.2s;
}
.page-table .la-line-scale > div:nth-child(2) {
  animation-delay: -1.1s;
}
.page-table .la-line-scale > div:nth-child(3) {
  animation-delay: -1s;
}
.page-table .la-line-scale > div:nth-child(4) {
  animation-delay: -0.9s;
}
.page-table .la-line-scale > div:nth-child(5) {
  animation-delay: -0.8s;
}
.page-table .la-line-scale.la-sm {
  width: 20px;
  height: 16px;
}
.page-table .la-line-scale.la-sm > div {
  width: 2px;
  height: 16px;
  margin: 1px;
  margin-top: 0;
  margin-bottom: 0;
}
.page-table .la-line-scale.la-2x {
  width: 80px;
  height: 64px;
}
.page-table .la-line-scale.la-2x > div {
  width: 8px;
  height: 64px;
  margin: 4px;
  margin-top: 0;
  margin-bottom: 0;
}
.page-table .la-line-scale.la-3x {
  width: 120px;
  height: 96px;
}
.page-table .la-line-scale.la-3x > div {
  width: 12px;
  height: 96px;
  margin: 6px;
  margin-top: 0;
  margin-bottom: 0;
}
@keyframes line-scale {
  0%, 40%, 100% {
    transform: scaleY(0.4);
  }
  20% {
    transform: scaleY(1);
  }
}

.page-winner figure.organization {
  display: flex;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  height: calc(2rem + 4vw);
  position: relative;
  align-items: flex-start;
  justify-content: center;
  opacity: 0;
  transition: opacity 400ms;
  max-width: 14em;
  max-height: 8em;
  z-index: 2;
}
@media screen and (min-width: 1000px) {
  .page-winner figure.organization {
    height: 4rem;
  }
}
.page-winner figure.organization.done {
  opacity: 1;
}
.page-winner figure.organization img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.page-winner figure.organization.landscape-ultrawide img {
  width: 95%;
}
.page-winner figure.organization.landscape-wide img {
  width: 70%;
}
.page-winner figure.organization.landscape img {
  width: 65%;
}
.page-winner figure.organization.landscape-narrow img {
  width: 60%;
}
.page-winner figure.organization.square {
  height: calc(3rem + 3vw);
}
.page-winner figure.organization.square img {
  width: 50%;
}
.page-winner figure.organization.portrait {
  height: calc(4rem + 3vw);
}
.page-winner figure.organization.portrait img {
  height: 65%;
}
.page-winner figure.organization.portrait-tall {
  height: calc(6rem + 3vw);
}
.page-winner figure.organization.portrait-tall img {
  height: 90%;
}
.page-winner #introduction {
  padding: 0 0 4rem 0;
}
.page-winner .winners {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: calc(1rem + 5vw);
  max-width: 1200px;
  margin: 2rem auto 4rem;
}
@media screen and (min-width: 1000px) {
  .page-winner .winners {
    gap: 2rem;
  }
}
.page-winner .winners .winner {
  display: grid;
  vertical-align: top;
  text-align: center;
  margin: 0;
  position: relative;
  padding: 60px 1rem 1rem;
  box-shadow: 0 0.8rem 2.6rem rgba(0, 0, 0, 0.05), 2px 2px 0 rgba(0, 0, 0, 0.1);
  border-radius: 1rem;
  overflow: hidden;
  width: calc(100% - 2rem);
  max-width: 300px;
}
@media only screen and (min-width: 600px) {
  .page-winner .winners .winner {
    width: calc(50% - 2.5rem - 5vw);
  }
}
@media only screen and (min-width: 1000px) {
  .page-winner .winners .winner {
    width: calc(25% - 4rem);
  }
}
.page-winner .winners .winner div.winner-category {
  display: flex;
  margin: 0;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: calc(100% - 2rem);
  height: 40px;
  padding: 0.5rem 1rem 70%;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to top right, #004E77, #00BCF2);
  /*
  &.leadership,
  &.lifetime-achievement {
      background: linear-gradient(
          to top right,
          $color-black,
          $color-dark-gray
      );
  }


  &.global {
      background: linear-gradient(
          to top right,
          shade($color-dark-blue,20%),
          $color-dark-blue
      );
  }

  &.large-enterprise {
      background: linear-gradient(
          to top right,
          shade($color-teal,70%),
          shade($color-teal,30%)
      );
  }

  &.enterprise {
      background: linear-gradient(
          to top right,
          shade($color-teal,20%),
          tint($color-teal,10%)
      );
  }

  &.large-corporate {
      background: linear-gradient(
          to top right,
          shade($color-light-blue,60%),
          shade($color-light-blue,20%)
      );
  }

  &.corporate {
      background: linear-gradient(
          to top right,
          shade($color-light-blue,20%),
          tint($color-light-blue,30%)
      );
  }

  &.healthcare {
      background: linear-gradient(
          to top right,
          shade($color-orange,30%),
          tint($color-orange,20%)
      );
  }
  */
}
.page-winner .winners .winner div.winner-category::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("https://cdn.orbie.org/assets/background-poly.png");
  mix-blend-mode: color-burn;
  background-size: 200px;
}
.page-winner .winners .winner div.winner-category::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 80%;
  left: 0;
  height: calc(40% + 4vw);
  width: 100%;
  background: #fff;
  transform: skewY(-10deg);
}
.page-winner .winners .winner div.winner-category h5 {
  text-transform: uppercase;
  font-size: 1em;
  line-height: 1.1em;
  color: #fff;
  margin: 0;
  position: relative;
  z-index: 2;
  text-shadow: 0 0.8rem 2.6rem rgba(0, 0, 0, 0.05), 2px 2px 0 rgba(0, 0, 0, 0.1);
}
.page-winner .winners .winner .winner-headshot {
  display: block;
  border-radius: 100%;
  border: solid 2px #fff;
  outline: solid 2px #ccc;
  width: 100%;
  height: 0;
  padding-top: 100%;
  aspect-ratio: 1/1;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0.8rem 2.6rem rgba(0, 0, 0, 0.05);
  z-index: 2;
  transform: scale(1);
  transition: outline 150ms, transform 300ms, box-shadow 300ms;
}
.page-winner .winners .winner .winner-headshot:hover {
  outline: solid 2px #0096ce;
  transform: scale(1.025);
  box-shadow: 0 0.5rem 2.25rem rgba(0, 0, 0, 0.15);
}
.page-winner .winners .winner .winner-headshot a {
  display: block;
  width: 100%;
  height: 100%;
}
.page-winner .winners .winner .winner-headshot a img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  transform: scale(1);
}
.page-winner .winners .winner h4.winner-name {
  color: rgb(53.2893700787, 63.25, 73.2106299213);
  font-weight: 600;
  font-size: 1.4em;
  position: relative;
  margin-bottom: 1em;
  margin: 1em 0;
  z-index: 2;
}
.page-winner section#orbie-circle {
  max-width: 1000px;
  position: relative;
  background-color: #000;
  z-index: 1;
  margin: 0 auto 6rem;
  padding: 6em 3%;
}
@media screen and (min-width: 1000px) {
  .page-winner section#orbie-circle {
    border-radius: 3rem;
    overflow: hidden;
    padding: 4rem;
  }
}
.page-winner section#orbie-circle h3.recent-winners {
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  margin-bottom: 1.2em;
  font-size: 1.2em;
  letter-spacing: 0.05em;
  font-weight: 400;
  margin-top: 0;
}
.page-winner section#orbie-circle .grid {
  display: grid;
  gap: 3rem;
  position: relative;
  z-index: 1;
  text-align: center;
}
.page-winner section#orbie-circle .grid h2 {
  margin-bottom: 0.2em;
  color: #fff;
}
.page-winner section#orbie-circle .grid p {
  color: #fff;
}
.page-winner section#orbie-circle .grid h2 + p {
  margin-top: 0;
}
@media screen and (min-width: 1400px) {
  .page-winner section#orbie-circle .grid {
    grid-template-columns: 2fr 4fr;
  }
}
.page-winner section#orbie-circle .grid .copy {
  text-align: center;
}
@media screen and (min-width: 1400px) {
  .page-winner section#orbie-circle .grid .copy {
    text-align: left;
  }
}
@media screen and (max-width: 600px) {
  .page-winner section#orbie-circle .grid .winner {
    display: none;
  }
  .page-winner section#orbie-circle .grid .winner:nth-child(n+1):nth-child(-n+4) {
    display: block;
  }
}
.page-winner section#orbie-circle .grid .members {
  display: grid;
  gap: 3em;
}
@media screen and (max-width: 600px) {
  .page-winner section#orbie-circle .grid .members {
    max-width: 80vw;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 600px) {
  .page-winner section#orbie-circle .grid .members {
    gap: 2rem;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1000px) {
  .page-winner section#orbie-circle .grid .members {
    gap: 2rem;
    grid-template-columns: repeat(3, 1fr);
  }
}
.page-winner section#orbie-circle .grid .members figure.headshot {
  border-radius: 100%;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-top: 100%;
  margin-bottom: 1rem;
  position: relative;
  background: radial-gradient(farthest-corner at 40px 40px, #cccccc 0%, rgb(76.5, 76.5, 76.5) 100%);
}
.page-winner section#orbie-circle .grid .members figure.headshot::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 6px;
  width: calc(100% - 12px);
  height: calc(100% - 12px);
  background-color: transparent;
  box-shadow: inset 0 0 0.85em rgba(0, 0, 0, 0.38);
  z-index: 2;
  border-radius: 100%;
}
.page-winner section#orbie-circle .grid .members figure.headshot img {
  position: absolute;
  top: 6px;
  left: 6px;
  width: calc(100% - 12px);
  height: calc(100% - 12px);
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  border-radius: 100%;
  overflow: hidden;
  box-shadow: 2px 2px 0.1em rgba(255, 255, 255, 0.4), -2px -2px 0.1em rgba(0, 0, 0, 0.4);
  z-index: 1;
}
.page-winner section#orbie-circle .grid .members h5.category {
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
  font-size: 0.6em;
  margin-bottom: 0.6em;
  height: auto;
  line-height: 1em;
  color: rgba(255, 255, 255, 0.7);
}
.page-winner section#orbie-circle .grid .members h4.name {
  margin-top: 0;
  margin-bottom: 0.3rem;
  line-height: 1.15em;
}
.page-winner section#orbie-circle .grid .members h6.organization {
  margin: 0;
  line-height: 1.2em;
  font-size: 0.7em;
  letter-spacing: 0.03em;
}
.page-winner section#orbie-circle .grid .members h5, .page-winner section#orbie-circle .grid .members h4, .page-winner section#orbie-circle .grid .members h6 {
  height: auto;
  width: auto;
}
.page-winner section#orbie-circle .grid .members h4 {
  color: #fff;
}
.page-winner section#orbie-circle .grid .members h6 {
  color: rgba(255, 255, 255, 0.7);
}
.page-winner section#orbie-circle .background {
  background-size: cover;
  background-position: center top;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.3;
  z-index: 0;
}
.page-winner section#orbie-circle img.logo {
  display: inline-flex;
  margin: 0 0 2rem;
  max-width: 150px;
}
.page-winner section#orbie-circle a.orbie-cap {
  display: inline-grid;
  align-items: center;
  grid-template-columns: 80px 1fr;
  text-align: left;
  margin: 2rem auto 0;
  position: relative;
  right: -0.5em;
}
.page-winner section#orbie-circle a.orbie-cap figure {
  width: 80px;
  height: 80px;
  background-color: #fff;
  border-radius: 100%;
  overflow: hidden;
  position: relative;
  z-index: 2;
  background: radial-gradient(farthest-corner at 10px 10px, #cccccc 0%, rgb(76.5, 76.5, 76.5) 100%);
  border: 2px solid rgba(0, 188, 242, 0.4);
  transition: all 800ms;
}
.page-winner section#orbie-circle a.orbie-cap figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center center;
     object-position: center center;
  position: relative;
  left: -4%;
}
.page-winner section#orbie-circle a.orbie-cap div.text {
  display: inline-flex;
  background-color: #000;
  padding: 0.5rem 1rem 0.5rem 1.9rem;
  position: relative;
  left: -1.5em;
  font-weight: 700;
  font-size: 0.8em;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border: 2px solid rgba(0, 188, 242, 0.4);
  color: #fff;
  z-index: 1;
  transition: all 800ms;
  line-height: 1.4em;
}
.page-winner section#orbie-circle a.orbie-cap:hover figure {
  border-color: #00BCF2;
}
.page-winner section#orbie-circle a.orbie-cap:hover div.text {
  border-color: #00BCF2;
}
.page-winner section#national-orbie-awards {
  margin: 6rem auto 0;
  max-width: 1000px;
  background: #000;
  position: relative;
  padding-bottom: calc(4rem + 4vw);
}
@media screen and (min-width: 1000px) {
  .page-winner section#national-orbie-awards {
    border-radius: 3rem;
    overflow: hidden;
  }
}
.page-winner section#national-orbie-awards figure.photo {
  position: relative;
}
.page-winner section#national-orbie-awards figure.photo::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(4rem + 4vw);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), black);
}
.page-winner section#national-orbie-awards div.wrapper {
  color: #fff;
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.page-winner section#national-orbie-awards div.wrapper div.interior {
  padding: 3rem 4rem;
}
.page-winner section#national-orbie-awards div.wrapper h2, .page-winner section#national-orbie-awards div.wrapper p {
  color: #fff;
}
.page-winner section#national-orbie-awards div.wrapper p {
  max-width: 800px;
  margin: 0 auto 2em;
}
.page-winner .formstack-form .fieldset-content label {
  width: 100% !important;
}
.page-winner .formstack-form .fieldset-content input[type=checkbox] {
  margin: 0.5em 0.5em 0.5em 0;
}
.page-winner .formstack-form .fsPagination {
  margin: 0 !important;
}

body.page-cio div.main section#introduction div.grid,
body.page-ciso div.main section#introduction div.grid,
body.page-cmo div.main section#introduction div.grid {
  display: grid;
  gap: 3rem;
}
body.page-cio div.main section#introduction div.grid div.copy,
body.page-ciso div.main section#introduction div.grid div.copy,
body.page-cmo div.main section#introduction div.grid div.copy {
  display: grid;
}
@media screen and (min-width: 1000px) {
  body.page-cio div.main section#introduction div.grid div.copy,
  body.page-ciso div.main section#introduction div.grid div.copy,
  body.page-cmo div.main section#introduction div.grid div.copy {
    justify-content: end;
  }
}
@media screen and (min-width: 1000px) {
  body.page-cio div.main section#introduction div.grid,
  body.page-ciso div.main section#introduction div.grid,
  body.page-cmo div.main section#introduction div.grid {
    grid-template-columns: 2fr 3fr;
    align-items: center;
    justify-content: center;
  }
}
body.page-cio div.main section#nominate,
body.page-ciso div.main section#nominate,
body.page-cmo div.main section#nominate {
  margin: 6rem 0;
}
body.page-cio div.main section#nominate div.grid,
body.page-ciso div.main section#nominate div.grid,
body.page-cmo div.main section#nominate div.grid {
  display: grid;
  gap: 4rem;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 1000px) {
  body.page-cio div.main section#nominate div.grid,
  body.page-ciso div.main section#nominate div.grid,
  body.page-cmo div.main section#nominate div.grid {
    grid-template-columns: 1fr 1fr;
  }
}
body.page-cio div.main section#nominate div.button,
body.page-ciso div.main section#nominate div.button,
body.page-cmo div.main section#nominate div.button {
  margin: 2em 0;
}

body.page-about section#about div.grid {
  display: grid;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media screen and (min-width: 1000px) {
  body.page-about section#about div.grid:nth-child(odd) {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (min-width: 1000px) {
  body.page-about section#about div.grid:nth-child(even) {
    grid-template-columns: 1fr 1fr;
  }
  body.page-about section#about div.grid:nth-child(even) div.media {
    order: 1;
  }
  body.page-about section#about div.grid:nth-child(even) div.copy {
    order: 2;
  }
}
body.page-about section#about div.grid figure.photo {
  display: block;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 0.8rem 2.6rem rgba(0, 0, 0, 0.05), 2px 2px 0 rgba(0, 0, 0, 0.1);
}
body.page-about section#about div.grid figure.photo img {
  display: block;
  width: 100%;
}

/* Plugins */
/*! Flickity v2.3.0
https://flickity.metafizzy.co
---------------------------------------------- */
.flickity-enabled {
  position: relative;
}

.flickity-enabled:focus {
  outline: none;
}

.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%;
}

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* draggable */
.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: grab;
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: grabbing;
}

/* ---- flickity-button ---- */
.flickity-button {
  position: absolute;
  background: hsla(0, 0%, 100%, 0.75);
  border: none;
  color: #333;
}

.flickity-button:hover {
  background: white;
  cursor: pointer;
}

.flickity-button:focus {
  outline: none;
  box-shadow: 0 0 0 5px #19F;
}

.flickity-button:active {
  opacity: 0.6;
}

.flickity-button:disabled {
  opacity: 0.3;
  cursor: auto;
  /* prevent disabled button from capturing pointer up event. #716 */
  pointer-events: none;
}

.flickity-button-icon {
  fill: currentColor;
}

/* ---- previous/next buttons ---- */
.flickity-prev-next-button {
  top: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  /* vertically center */
  transform: translateY(-50%);
}

.flickity-prev-next-button.previous {
  left: 10px;
}

.flickity-prev-next-button.next {
  right: 10px;
}

/* right to left */
.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: 10px;
}

.flickity-rtl .flickity-prev-next-button.next {
  right: auto;
  left: 10px;
}

.flickity-prev-next-button .flickity-button-icon {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%;
}

/* ---- page dots ---- */
.flickity-page-dots {
  position: absolute;
  width: 100%;
  bottom: -25px;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 1;
}

.flickity-rtl .flickity-page-dots {
  direction: rtl;
}

.flickity-page-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 8px;
  background: #333;
  border-radius: 50%;
  opacity: 0.25;
  cursor: pointer;
}

.flickity-page-dots .dot.is-selected {
  opacity: 1;
}
