/*
Theme Name: DIY Musician Con Theme Theme
Theme URI: https://www.cdbaby.com/
Author: CD Baby
Author URI: https://www.cdbaby.com/
Description: This is a theme for the DIY Musician Convention
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: diymusiciancon_theme
Tags:

DIY Musician Con Theme is based on Underscores http://underscores.me/, (C) 2012-2014 Automattic, Inc.

*/
/*
 * This file contains all mixins and functions. Ya, it's called
 * 'mixins' but I cheat a little and put functions in here too.
 */
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

@-webkit-keyframes open_height_toggle {
  0% {
    display: none;
    opacity: 0; }
  1% {
    display: block;
    opacity: 0;
    -webkit-transform: scaleY(0);
            transform: scaleY(0); }
  100% {
    opacity: 1;
    -webkit-transform: scaleY(1);
            transform: scaleY(1); } }

@keyframes open_height_toggle {
  0% {
    display: none;
    opacity: 0; }
  1% {
    display: block;
    opacity: 0;
    -webkit-transform: scaleY(0);
            transform: scaleY(0); }
  100% {
    opacity: 1;
    -webkit-transform: scaleY(1);
            transform: scaleY(1); } }

@-webkit-keyframes open_width_toggle {
  0% {
    display: none;
    opacity: 0; }
  1% {
    display: block;
    opacity: 0;
    -webkit-transform: scaleX(0);
            transform: scaleX(0); }
  100% {
    opacity: 1;
    -webkit-transform: scaleX(1);
            transform: scaleX(1); } }

@keyframes open_width_toggle {
  0% {
    display: none;
    opacity: 0; }
  1% {
    display: block;
    opacity: 0;
    -webkit-transform: scaleX(0);
            transform: scaleX(0); }
  100% {
    opacity: 1;
    -webkit-transform: scaleX(1);
            transform: scaleX(1); } }

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1.0 Reset
2.0 Typography
3.0 Elements
4.0 Forms
5.1 Links
6.0 Accessibility
7.0 Alignments
8.0 Clearings
10.0 Content
  10.3 Comments
12.0 Media
  12.1 Captions
--------------------------------------------------------------*/
/*--------------------------------------------------------------
1.0 Reset
--------------------------------------------------------------*/
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, 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 {
  border: 0;
  font-family: inherit;
  font-size: 100%;
  font-style: inherit;
  font-weight: inherit;
  margin: 0;
  outline: 0;
  padding: 0;
  vertical-align: baseline; }

html {
  font-size: 62.5%;
  /* Corrects text resizing oddly in IE6/7 when body font-size is set using em units http://clagnut.com/blog/348/#c790 */
  overflow-y: scroll;
  /* Keeps page centered in all browsers regardless of content height */
  -webkit-text-size-adjust: 100%;
  /* Prevents iOS text size adjust after orientation change, without disabling user zoom */
  -ms-text-size-adjust: 100%;
  /* www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/ */
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* Apply a natural box layout model to the document; see http://www.paulirish.com/2012/box-sizing-border-box-ftw/ */ }

*,
*:before,
*:after {
  /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
  -webkit-box-sizing: inherit;
          box-sizing: inherit; }

body {
  background: #fff;
  /* Fallback for when there is no custom background color defined. */ }

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section {
  display: block; }

ol,
ul {
  list-style: none; }

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

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

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

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

a:focus {
  outline: thin dotted; }

a:hover,
a:active {
  outline: 0; }

a img {
  border: 0; }

/*--------------------------------------------------------------
2.0 Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
textarea {
  color: #404040;
  font-family: sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.4; }

p {
  margin-bottom: 1em; }

b,
strong {
  font-family: AvenirLTStd-Heavy, sans-serif; }

dfn,
cite,
em,
i {
  font-style: italic; }

blockquote {
  margin: 0 1.5em; }

address {
  margin: 0 0 1.5em; }

pre {
  background: #eee;
  color: #05181f;
  font-family: "Courier 10 Pitch", Courier, monospace;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.6;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em; }

code,
kbd,
tt,
var {
  font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
  font-size: 15px;
  font-size: 1.5rem; }

abbr,
acronym {
  border-bottom: 1px dotted #666;
  cursor: help; }

mark,
ins {
  background: #fff9c0;
  text-decoration: none; }

sup,
sub {
  font-size: 75%;
  height: 0;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  bottom: 1ex; }

sub {
  top: .5ex; }

small {
  font-size: 75%; }

big {
  font-size: 125%; }

/*--------------------------------------------------------------
3.0 Elements
--------------------------------------------------------------*/
hr {
  background-color: #ccc;
  border: 0;
  height: 1px;
  margin-bottom: 1.5em; }

ul,
ol {
  margin: 0 0 1em 3em; }

ul {
  list-style: disc; }

ol {
  list-style: decimal; }

li > ul,
li > ol {
  margin-bottom: 0;
  margin-left: 1.5em; }

dt {
  font-weight: 600; }

dd {
  margin: 0 1.5em 1.5em; }

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

figure {
  margin: 0; }

table {
  margin: 0 0 1.5em;
  width: 100%; }

th {
  font-weight: bold; }

/*--------------------------------------------------------------
4.0 Forms
--------------------------------------------------------------*/
button,
input,
select,
textarea {
  font-size: 100%;
  /* Corrects font size not being inherited in all browsers */
  margin: 0;
  /* Addresses margins set differently in IE6/7, F3/4, S5, Chrome */
  vertical-align: baseline;
  /* Improves appearance and consistency in all browsers */ }

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  border: 1px solid;
  border-color: #ccc #ccc #bbb;
  border-radius: 3px;
  background: #e6e6e6;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 15px 17px rgba(255, 255, 255, 0.5), inset 0 -5px 12px rgba(0, 0, 0, 0.05);
          box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 15px 17px rgba(255, 255, 255, 0.5), inset 0 -5px 12px rgba(0, 0, 0, 0.05);
  color: rgba(0, 0, 0, 0.8);
  cursor: pointer;
  /* Improves usability and consistency of cursor style between image-type 'input' and others */
  -webkit-appearance: button;
  /* Corrects inability to style clickable 'input' types in iOS */
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1;
  padding: .6em 1em .4em;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8); }
  button:hover,
  input[type="button"]:hover,
  input[type="reset"]:hover,
  input[type="submit"]:hover {
    border-color: #ccc #bbb #aaa;
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), inset 0 15px 17px rgba(255, 255, 255, 0.8), inset 0 -5px 12px rgba(0, 0, 0, 0.02);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), inset 0 15px 17px rgba(255, 255, 255, 0.8), inset 0 -5px 12px rgba(0, 0, 0, 0.02); }
  button:focus, button:active,
  input[type="button"]:focus,
  input[type="button"]:active,
  input[type="reset"]:focus,
  input[type="reset"]:active,
  input[type="submit"]:focus,
  input[type="submit"]:active {
    border-color: #aaa #bbb #bbb;
    -webkit-box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.5), inset 0 2px 5px rgba(0, 0, 0, 0.15);
            box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.5), inset 0 2px 5px rgba(0, 0, 0, 0.15); }

input[type="checkbox"],
input[type="radio"] {
  padding: 0;
  /* Addresses excess padding in IE8/9 */ }

input[type="search"] {
  -webkit-appearance: textfield;
  /* Addresses appearance set to searchfield in S5, Chrome */
  -webkit-box-sizing: content-box;
          box-sizing: content-box; }

input[type="search"]::-webkit-search-decoration {
  /* Corrects inner padding displayed oddly in S5, Chrome on OSX */
  -webkit-appearance: none; }

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
textarea {
  color: #666;
  border: 1px solid #ccc;
  border-radius: 3px; }
  input[type="text"]:focus,
  input[type="email"]:focus,
  input[type="url"]:focus,
  input[type="password"]:focus,
  input[type="search"]:focus,
  textarea:focus {
    color: #111; }

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"] {
  padding: 3px; }

textarea {
  overflow: auto;
  /* Removes default vertical scrollbar in IE6/7/8/9 */
  padding-left: 3px;
  vertical-align: top;
  /* Improves readability and alignment in all browsers */
  width: 100%; }

/*--------------------------------------------------------------
5.1 Links
--------------------------------------------------------------*/
a {
  color: royalblue; }

a:visited {
  color: purple; }

a:hover,
a:focus,
a:active {
  color: midnightblue; }

/*--------------------------------------------------------------
6.0 Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important; }
  .screen-reader-text:focus {
    background-color: #eee;
    clip: auto !important;
    -webkit-clip-path: none;
            clip-path: none;
    color: #444;
    display: block;
    font-size: 1em;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
    /* Above WP toolbar. */ }

/*--------------------------------------------------------------
7.0 Alignments
--------------------------------------------------------------*/
.alignleft {
  display: inline;
  float: left;
  margin-right: 1.5em; }

.alignright {
  display: inline;
  float: right;
  margin-left: 1.5em; }

.aligncenter {
  clear: both;
  display: block;
  margin-right: auto;
  margin-left: auto; }

/*--------------------------------------------------------------
8.0 Clearings
--------------------------------------------------------------*/
.clear:after,
.comment-content:after {
  content: "";
  display: table;
  clear: both; }

/*--------------------------------------------------------------
10.3 Comments
--------------------------------------------------------------*/
.comment-content a {
  word-wrap: break-word; }

.bypostauthor {
  display: block; }

/*--------------------------------------------------------------
12.0 Media
--------------------------------------------------------------*/
.page_content img.wp-smiley,
.entry_content img.wp-smiley,
.comment-content img.wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0; }

/* Make sure embeds and iframes fit their containers */
embed,
iframe,
object {
  max-width: 100%; }

/*--------------------------------------------------------------
12.1 Captions
--------------------------------------------------------------*/
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%; }

.wp-caption img[class*="wp-image-"] {
  display: block;
  margin: 0 auto; }

.wp-caption-text {
  text-align: center; }

.wp-caption .wp-caption-text {
  margin: 0.8075em 0; }

body {
  background-color: #051b39;
  color: #ffeed4;
  font-size: 18px;
  font-family: AvenirLTStd-Medium, sans-serif;
  overflow: hidden; }

h1 {
  font-weight: 600;
  font-style: normal;
  letter-spacing: normal;
  line-height: 1.3;
  font-family: AvenirLTStd-Heavy, sans-serif;
  font-size: 4.8rem; }

h2 {
  font-family: AvenirLTStd-Heavy, sans-serif;
  font-weight: 600;
  font-style: normal;
  letter-spacing: normal;
  line-height: 1.3;
  font-size: 3.6rem; }

h3 {
  font-weight: 600;
  font-style: normal;
  letter-spacing: normal;
  line-height: 1.3;
  font-family: acumin-pro-wide, sans-serif;
  font-size: 3rem; }

h4 {
  font-weight: 600;
  font-style: normal;
  letter-spacing: normal;
  line-height: 1.3;
  font-family: acumin-pro-wide, sans-serif;
  font-size: 2.4rem; }

h5 {
  font-weight: 600;
  font-style: normal;
  letter-spacing: normal;
  line-height: 1.3;
  font-family: acumin-pro-wide, sans-serif;
  font-size: 2rem; }

h6 {
  font-weight: 600;
  font-style: normal;
  letter-spacing: normal;
  line-height: 1.3;
  font-family: acumin-pro-wide, sans-serif;
  font-size: 1.8rem; }

a:link, a:visited {
  -webkit-transition: color ease 0.2s;
  -o-transition: color ease 0.2s;
  transition: color ease 0.2s;
  color: #f39706;
  text-decoration: none; }

a:hover, a:active {
  text-decoration: underline; }

.co-button,
button {
  background-color: #FB3213;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #ffeed4;
  display: inline-block;
  font-family: acumin-pro-wide, sans-serif;
  font-size: 2.3rem;
  font-weight: 600;
  letter-spacing: 1px;
  padding-top: 0.8em;
  padding-right: 1em;
  padding-bottom: 0.8em;
  padding-left: 1em;
  text-align: center;
  text-transform: uppercase;
  text-shadow: none;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transition-property: background-color, border;
  -o-transition-property: background-color, border;
  transition-property: background-color, border; }
  .co-button:hover, .co-button:active, .co-button:focus,
  button:hover,
  button:active,
  button:focus {
    background-color: #f39706;
    -webkit-box-shadow: none;
            box-shadow: none;
    border: none; }
    .co-button:hover:link, .co-button:hover:visited, .co-button:active:link, .co-button:active:visited, .co-button:focus:link, .co-button:focus:visited,
    button:hover:link,
    button:hover:visited,
    button:active:link,
    button:active:visited,
    button:focus:link,
    button:focus:visited {
      background-color: #f39706;
      color: #051b39;
      text-decoration: none; }
  .co-button:link, .co-button:visited,
  button:link,
  button:visited {
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    color: #ffeed4; }
  .co-button:focus,
  button:focus {
    -webkit-box-shadow: #01828f 0 0 0.5em;
            box-shadow: #01828f 0 0 0.5em;
    outline: none; }

.body_class__eu {
  background-color: #2d0320; }

.page-template-tpl-eu_home {
  background-color: #2d0320; }

/*
 * Layout
 *
 * This file contains all of the styles relate to layout.
 * All layout should be included in an additional class
 * on each element. Style and layout should be added
 * to elements with different classes.
 */
.co-row {
  margin-right: auto;
  margin-left: auto;
  max-width: 72.22222em;
  padding-right: 30px;
  padding-left: 30px;
  width: 100%; }
  .co-row:after {
    content: "";
    display: table;
    clear: both; }
  .co-row__margin {
    margin-top: 50px;
    margin-bottom: 50px; }
  .co-row__margin_above {
    margin-top: 50px; }
  .co-row__margin_below {
    margin-bottom: 50px; }
  .co-row__narrow {
    max-width: 800px;
    margin-right: auto;
    margin-left: auto; }

@media (min-width: 64em) {
  .l-large--two_thirds {
    width: 65.625%;
    float: left;
    margin-left: 3.125%; } }

@media (min-width: 64em) {
  .l-large--one_third {
    width: 31.25%;
    float: left;
    margin-left: 3.125%; } }

@media (min-width: 64em) {
  .l-large--12_12, .l-large--full {
    width: 100%;
    float: left;
    margin-left: 0;
    margin-right: 0; } }

@media (min-width: 64em) {
  .l-large--11_12 {
    width: 91.4414414414%;
    float: left;
    margin-left: 2.7027027027%; } }

@media (min-width: 64em) {
  .l-large--10_12 {
    width: 82.8828828829%;
    float: left;
    margin-left: 2.7027027027%; } }

@media (min-width: 64em) {
  .l-large--9_12 {
    width: 74.3243243243%;
    float: left;
    margin-left: 2.7027027027%; } }

@media (min-width: 64em) {
  .l-large--8_12 {
    width: 65.7657657658%;
    float: left;
    margin-left: 2.7027027027%; } }

@media (min-width: 64em) {
  .l-large--7_12 {
    width: 57.2072072072%;
    float: left;
    margin-left: 2.7027027027%; } }

@media (min-width: 64em) {
  .l-large--6_12, .l-large--half {
    width: 48.6486486486%;
    float: left;
    margin-left: 2.7027027027%; } }

@media (min-width: 64em) {
  .l-large--6_12_wide {
    width: 51.3513513514%;
    float: left;
    margin-left: 2.6315789474%; } }

@media (min-width: 64em) {
  .l-large--5_12 {
    width: 40.0900900901%;
    float: left;
    margin-left: 2.7027027027%; } }

@media (min-width: 64em) {
  .l-large--5_12_wide {
    width: 42.7927927928%;
    float: left;
    margin-left: 2.6315789474%; } }

@media (min-width: 64em) {
  .l-large--4_12 {
    width: 31.5315315315%;
    float: left;
    margin-left: 2.7027027027%; } }

@media (min-width: 64em) {
  .l-large--3_12 {
    width: 22.972972973%;
    float: left;
    margin-left: 2.7027027027%; } }

@media (min-width: 64em) {
  .l-large--2_12 {
    width: 14.4144144144%;
    float: left;
    margin-left: 2.7027027027%; } }

@media (min-width: 64em) {
  .l-large--1_12 {
    width: 5.8558558559%;
    float: left;
    margin-left: 2.7027027027%; } }

@media (min-width: 64em) {
  .l-large--5_9 {
    width: 53.9393939394%;
    float: left;
    margin-left: 3.6363636364%; } }

@media (min-width: 64em) {
  .l-large--4-5_9 {
    width: 48.1818181818%;
    float: left;
    margin-left: 3.6363636364%; } }

@media (min-width: 64em) {
  .l-large--4_9 {
    width: 42.4242424242%;
    float: left;
    margin-left: 3.6363636364%; } }

@media (min-width: 64em) {
  .l-large--3_9 {
    width: 30.9090909091%;
    float: left;
    margin-left: 3.6363636364%; } }

@media (min-width: 64em) {
  .l-large--2_8 {
    width: 21.9178082192%;
    float: left;
    margin-left: 4.1095890411%; } }

@media (min-width: 64em) {
  .l-large--6_8 {
    width: 73.9726027397%;
    float: left;
    margin-left: 4.1095890411%; } }

@media (min-width: 64em) {
  .l-large--4_8 {
    width: 47.9452054795%;
    float: left;
    margin-left: 4.1095890411%; } }

@media (min-width: 64em) {
  .l-large--3_6 {
    width: 47.2222222222%;
    float: left;
    margin-left: 5.5555555556%; } }

@media (min-width: 64em) {
  .l-large--2-5_5 {
    width: 46.6292134831%;
    float: left;
    margin-left: 6.7415730337%; } }

@media (min-width: 64em) {
  .l-large--rtl--9_12 {
    width: 74.3243243243%;
    float: right;
    margin-right: 2.7027027027%; } }

@media (min-width: 64em) {
  .l-large--rtl--8_12 {
    width: 65.7657657658%;
    float: right;
    margin-right: 2.7027027027%; } }

@media (min-width: 64em) {
  .l-large--rtl--7_12 {
    width: 57.2072072072%;
    float: right;
    margin-right: 2.7027027027%; } }

@media (min-width: 64em) {
  .l-large--rtl--6_12 {
    width: 48.6486486486%;
    float: right;
    margin-right: 2.7027027027%; } }

@media (min-width: 64em) {
  .l-large--rtl--6_12_wide {
    width: 51.3513513514%;
    float: right;
    margin-right: 2.6315789474%; } }

@media (min-width: 64em) {
  .l-large--rtl--5_12 {
    width: 40.0900900901%;
    float: right;
    margin-right: 2.7027027027%; } }

@media (min-width: 64em) {
  .l-large--rtl--5_12_wide {
    width: 42.7927927928%;
    float: right;
    margin-right: 2.6315789474%; } }

@media (min-width: 64em) {
  .l-large--rtl--4_12 {
    width: 31.5315315315%;
    float: right;
    margin-right: 2.7027027027%; } }

@media (min-width: 64em) {
  .l-large--rtl--3_12 {
    width: 22.972972973%;
    float: right;
    margin-right: 2.7027027027%; } }

@media (min-width: 64em) {
  .l-large--rtl--2_12 {
    width: 14.4144144144%;
    float: right;
    margin-right: 2.7027027027%; } }

@media (min-width: 64em) {
  .l-large--rtl--1_12 {
    width: 5.8558558559%;
    float: right;
    margin-right: 2.7027027027%; } }

@media (min-width: 64em) {
  .l-large--rtl--5_9 {
    width: 53.9393939394%;
    float: right;
    margin-right: 3.6363636364%; } }

@media (min-width: 64em) {
  .l-large__first {
    clear: left;
    margin-left: 0; }
  .l-large--rtl__first {
    clear: right;
    margin-right: 0; } }

@media (min-width: 64em) {
  .l-large--push_2_12 {
    margin-left: 17.1171171171%; } }

@media (min-width: 64em) {
  .l-large--push_4_12 {
    margin-left: 34.2342342342%; } }

@media (min-width: 64em) {
  .logged-in .l-large__logged_in--6_12 {
    width: 48.6486486486%;
    float: left;
    margin-left: 2.7027027027%; } }

@media (min-width: 37.5em) and (max-width: 64em) {
  .l-medium--8_8, .l-medium--full {
    width: 100%;
    float: left;
    margin-left: 0;
    margin-right: 0; }
  .l-medium--two_thirds {
    width: 64.8630136986%;
    float: left;
    margin-left: 4.1095890411%; }
  .l-medium--one_third {
    width: 30.5849315068%;
    float: left;
    margin-left: 4.1095890411%; }
  .l-medium--7_8 {
    width: 86.9863013699%;
    float: left;
    margin-left: 4.1095890411%; }
  .l-medium--6_8 {
    width: 73.9726027397%;
    float: left;
    margin-left: 4.1095890411%; }
  .l-medium--5_8 {
    width: 60.9589041096%;
    float: left;
    margin-left: 4.1095890411%; }
  .l-medium--half, .l-medium--4_8 {
    width: 47.9452054795%;
    float: left;
    margin-left: 4.1095890411%; }
  .l-medium--3_8 {
    width: 34.9315068493%;
    float: left;
    margin-left: 4.1095890411%; }
  .l-medium--2_8 {
    width: 21.9178082192%;
    float: left;
    margin-left: 4.1095890411%; }
  .l-medium--1_8 {
    width: 8.904109589%;
    float: left;
    margin-left: 4.1095890411%; }
  .l-medium--5_6 {
    width: 82.4074074074%;
    float: left;
    margin-left: 5.5555555556%; }
  .l-medium--4_6 {
    width: 64.8148148148%;
    float: left;
    margin-left: 5.5555555556%; }
  .l-medium--3_6 {
    width: 47.2222222222%;
    float: left;
    margin-left: 5.5555555556%; }
  .l-medium--2_6 {
    width: 29.6296296296%;
    float: left;
    margin-left: 5.5555555556%; }
  .l-medium--1_6 {
    width: 12.037037037%;
    float: left;
    margin-left: 5.5555555556%; }
  .l-medium--rtl {
    float: right; }
    .l-medium--rtl--6_8 {
      width: 73.9726027397%;
      float: right;
      margin-right: 4.1095890411%; }
    .l-medium--rtl--4_8 {
      width: 47.9452054795%;
      float: right;
      margin-right: 4.1095890411%; }
    .l-medium--rtl--5_8 {
      width: 60.9589041096%;
      float: right;
      margin-right: 4.1095890411%; }
    .l-medium--rtl--3_8 {
      width: 34.9315068493%;
      float: right;
      margin-right: 4.1095890411%; }
    .l-medium--rtl--2_8 {
      width: 21.9178082192%;
      float: right;
      margin-right: 4.1095890411%; }
  .l-medium__first {
    clear: left;
    margin-left: 0; }
  .l-medium--rtl__first {
    clear: right;
    margin-right: 0; }
  .l-medium--push_one_third {
    margin-left: 34.6945205479%; }
  .l-medium--push_one_sixth {
    margin-left: 17.347260274%; } }

@media (min-width: 0) and (max-width: 37.5em) {
  .l-small--full {
    width: 100%;
    float: left;
    margin-left: 0;
    margin-right: 0; }
  .l-small--4_5 {
    width: 78.6516853933%;
    float: left;
    margin-left: 6.7415730337%; }
  .l-small--3_5 {
    width: 57.3033707865%;
    float: left;
    margin-left: 6.7415730337%; }
  .l-small--2-5_5, .l-small--half {
    width: 46.6292134831%;
    float: left;
    margin-left: 6.7415730337%; }
  .l-small--2_5 {
    width: 35.9550561798%;
    float: left;
    margin-left: 6.7415730337%; }
  .l-small--1_5 {
    width: 35.9550561798%;
    float: left;
    margin-left: 6.7415730337%; }
  .l-small__first {
    clear: left;
    margin-left: 0; }
  .l-small--rtl__first {
    clear: right;
    margin-right: 0; } }

.co-button {
  background-color: #FB3213;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #ffeed4;
  display: inline-block;
  font-family: acumin-pro-wide, sans-serif;
  font-size: 2.3rem;
  font-weight: 600;
  letter-spacing: 1px;
  padding-top: 0.8em;
  padding-right: 1em;
  padding-bottom: 0.8em;
  padding-left: 1em;
  text-align: center;
  text-transform: uppercase;
  text-shadow: none;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transition-property: background-color, border;
  -o-transition-property: background-color, border;
  transition-property: background-color, border; }
  .co-button:hover, .co-button:active, .co-button:focus {
    background-color: #f39706;
    -webkit-box-shadow: none;
            box-shadow: none;
    border: none; }
    .co-button:hover:link, .co-button:hover:visited, .co-button:active:link, .co-button:active:visited, .co-button:focus:link, .co-button:focus:visited {
      background-color: #f39706;
      color: #051b39;
      text-decoration: none; }
  .co-button:link, .co-button:visited {
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    color: #ffeed4; }
  .co-button:focus {
    -webkit-box-shadow: #01828f 0 0 0.5em;
            box-shadow: #01828f 0 0 0.5em;
    outline: none; }
  .co-button__line {
    background-color: #FB3213;
    -webkit-box-shadow: none;
            box-shadow: none;
    color: #ffeed4;
    display: inline-block;
    font-family: acumin-pro-wide, sans-serif;
    font-size: 2.3rem;
    font-weight: 600;
    letter-spacing: 1px;
    padding-top: 0.8em;
    padding-right: 1em;
    padding-bottom: 0.8em;
    padding-left: 1em;
    text-align: center;
    text-transform: uppercase;
    text-shadow: none;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-transition-property: background-color, border;
    -o-transition-property: background-color, border;
    transition-property: background-color, border;
    background-color: transparent;
    border: 5px solid #FB3213;
    color: #FB3213; }
    .co-button__line:hover, .co-button__line:active, .co-button__line:focus {
      background-color: #f39706;
      -webkit-box-shadow: none;
              box-shadow: none;
      border: none; }
      .co-button__line:hover:link, .co-button__line:hover:visited, .co-button__line:active:link, .co-button__line:active:visited, .co-button__line:focus:link, .co-button__line:focus:visited {
        background-color: #f39706;
        color: #051b39;
        text-decoration: none; }
    .co-button__line:link, .co-button__line:visited {
      -webkit-transition: all 0.3s ease;
      -o-transition: all 0.3s ease;
      transition: all 0.3s ease;
      color: #ffeed4; }
    .co-button__line:focus {
      -webkit-box-shadow: #01828f 0 0 0.5em;
              box-shadow: #01828f 0 0 0.5em;
      outline: none; }
    .co-button__line:link, .co-button__line:visited {
      color: #FB3213; }
    .co-button__line:hover, .co-button__line:active, .co-button__line:focus {
      background-color: #f39706;
      border: 5px solid #f39706;
      -webkit-box-shadow: none;
              box-shadow: none; }
      .co-button__line:hover:link, .co-button__line:hover:visited, .co-button__line:active:link, .co-button__line:active:visited, .co-button__line:focus:link, .co-button__line:focus:visited {
        background-color: #f39706;
        border: 5px solid #f39706;
        color: #051b39;
        text-decoration: none; }

@media (min-width: 64em) {
  .co-hide--large_up {
    display: none; } }

.co-shape--left, .co-shape--right {
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  position: absolute;
  z-index: -1;
  -webkit-transition: -webkit-transform 0.2s ease-out !important;
  transition: -webkit-transform 0.2s ease-out !important;
  -o-transition: transform 0.2s ease-out !important;
  transition: transform 0.2s ease-out !important;
  transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out !important; }

.co-shape--left {
  background-image: url(images/testimonial_left_shape.png);
  top: 30px;
  left: -740px;
  width: 925px;
  height: 883px; }
  @media (min-width: 64em) {
    .co-shape--left {
      top: -550px;
      left: -520px; } }

.co-shape--right {
  background-image: url(images/testimonial_right_shape.png);
  bottom: 1780px;
  right: -520px;
  width: 742px;
  height: 750px; }
  .page-template-tpl-schedule .co-shape--right {
    top: 140px;
    bottom: 0; }
    @media (min-width: 64em) {
      .page-template-tpl-schedule .co-shape--right {
        top: 0; } }
  @media (min-width: 64em) {
    .co-shape--right {
      bottom: 650px;
      right: -400px; } }

.co-section_title--wrap {
  margin-top: 25px;
  margin-bottom: 25px;
  padding-top: 50px;
  padding-bottom: 50px; }

.co-section_title--title {
  font-weight: 600;
  font-style: normal;
  letter-spacing: normal;
  line-height: 1.3;
  font-family: AvenirLTStd-Heavy, sans-serif;
  font-size: 4.8rem;
  color: #ffeed4;
  font-size: 5rem;
  text-align: center; }
  @media (min-width: 37.5em) {
    .co-section_title--title {
      font-size: 8.5rem; } }

.co-title {
  font-weight: 600;
  font-style: normal;
  letter-spacing: normal;
  line-height: 1.3;
  font-family: acumin-pro-wide, sans-serif;
  font-size: 3rem;
  color: #f39706;
  font-size: 2.2rem;
  margin-bottom: 16.6666666667px;
  text-align: center;
  text-transform: uppercase; }
  @media (min-width: 64em) {
    .co-title {
      text-align: left; } }

.co-carousel {
  overflow: hidden;
  position: relative; }
  @media (min-width: 64em) {
    .co-carousel {
      margin-right: auto;
      margin-left: auto;
      max-width: 72.22222em;
      padding-right: 30px;
      padding-left: 30px;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: justify;
      -webkit-justify-content: space-between;
          -ms-flex-pack: justify;
              justify-content: space-between;
      margin-top: 100px; }
      .co-carousel:after {
        content: "";
        display: table;
        clear: both; } }
  @media (min-width: 64em) {
    .co-carousel--wrap {
      width: 55%;
      padding-right: 30px; } }
  .co-carousel--text_wrap {
    margin-top: 50px; }
    @media (min-width: 0) and (max-width: 63.937em) {
      .co-carousel--text_wrap {
        margin-right: auto;
        margin-left: auto;
        max-width: 72.22222em;
        padding-right: 30px;
        padding-left: 30px;
        max-width: 40em; }
        .co-carousel--text_wrap:after {
          content: "";
          display: table;
          clear: both; } }
    @media (min-width: 64em) {
      .co-carousel--text_wrap {
        width: 40%; } }

.co-hero {
  height: 410px;
  overflow: hidden;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between; }
  @media (min-width: 64em) {
    .co-hero {
      height: 420px; } }
  @media (min-width: 90em) {
    .co-hero {
      height: 550px; } }
  @media (min-width: 110em) {
    .co-hero {
      height: 700px; } }
  .co-hero--bg_image_picture, .co-hero--bg_image_img {
    left: 50%;
    max-width: none;
    min-height: 100%;
    position: absolute;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    z-index: -1;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover; }
  @media (min-width: 64em) {
    .page-template-tpl-eu_home .co-hero--main_logo {
      max-width: 460px; } }
  @media (min-width: 110em) {
    .page-template-tpl-eu_home .co-hero--main_logo {
      max-width: 100%; } }
  .co-hero--title_wrap {
    margin-right: auto;
    margin-left: auto;
    max-width: 72.22222em;
    padding-right: 30px;
    padding-left: 30px;
    color: #f39706;
    text-align: center;
    padding-top: 50px;
    padding-bottom: 50px; }
    .co-hero--title_wrap:after {
      content: "";
      display: table;
      clear: both; }
    @media (min-width: 64em) {
      .co-hero--title_wrap {
        margin-bottom: 0; } }
  .co-hero--cdbb {
    font-weight: 600;
    font-style: normal;
    letter-spacing: normal;
    line-height: 1.3;
    font-family: acumin-pro-wide, sans-serif;
    font-size: 2rem;
    text-transform: uppercase;
    font-size: 1.2rem; }
    @media (min-width: 37.5em) {
      .co-hero--cdbb {
        font-size: 2rem; } }
  .co-hero--title {
    font-weight: 600;
    font-style: normal;
    letter-spacing: normal;
    line-height: 1.3;
    font-family: AvenirLTStd-Heavy, sans-serif;
    font-size: 4.8rem;
    color: #ffeed4;
    font-size: 5rem;
    font-weight: 400;
    line-height: 1;
    margin-top: 25px;
    margin-bottom: 15.00150015px; }
    @media (min-width: 64em) {
      .co-hero--title {
        font-size: 6rem; } }
    @media (min-width: 90em) {
      .co-hero--title {
        font-size: 8.4rem; } }
  .co-hero--dates {
    font-size: 1.9rem; }
    @media (min-width: 37.5em) {
      .co-hero--dates {
        font-size: 2.4rem;
        margin-top: 25px;
        margin-bottom: 40px; } }
  .co-hero--sponsorship {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 25px; }
    .co-hero--sponsorship img {
      display: block; }
  .co-hero--sponsorship_text {
    color: #ffeed4;
    font-size: 1.5rem;
    margin-right: 10px; }
  @media (min-width: 90em) {
    .co-hero--cta {
      font-size: 2.8rem; } }
  @media (min-width: 64em) {
    .co-hero--carousel {
      padding-left: 25px;
      width: 55%; } }

.co-hotel {
  position: relative;
  margin-top: 50px;
  margin-bottom: 50px; }
  .co-hotel--main_title {
    font-weight: 600;
    font-style: normal;
    letter-spacing: normal;
    line-height: 1.3;
    font-family: AvenirLTStd-Heavy, sans-serif;
    font-size: 4.8rem;
    border-bottom: 1px solid #f39706;
    font-size: 8rem;
    letter-spacing: 2px;
    padding-bottom: 16.6666666667px; }
  @media (min-width: 64em) {
    .co-hotel--content {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
      -webkit-justify-content: space-between;
          -ms-flex-pack: justify;
              justify-content: space-between; } }
  .co-hotel--copy ol {
    margin-left: 20px; }
  @media (min-width: 64em) {
    .co-hotel--copy {
      -webkit-box-flex: 1;
      -webkit-flex: 1 0 450px;
          -ms-flex: 1 0 450px;
              flex: 1 0 450px;
      margin-right: 50px; } }
  .co-hotel--images {
    margin-top: 50px;
    text-align: center; }
  .co-hotel--title {
    margin-top: 50px; }
  .co-hotel--cta {
    margin-top: 25px; }
  .co-hotel--image {
    margin-bottom: 25px; }
    .co-hotel--image:last-child {
      margin-bottom: 0; }
  .co-hotel .co-shape--right {
    bottom: 0;
    top: 80px; }
    @media (min-width: 64em) {
      .co-hotel .co-shape--right {
        right: -240px; } }

.co-hotel_eu {
  margin-bottom: 75px;
  position: relative; }
  @media (min-width: 64em) {
    .co-hotel_eu {
      margin-right: auto;
      margin-left: auto;
      max-width: 72.22222em;
      padding-right: 30px;
      padding-left: 30px; }
      .co-hotel_eu:after {
        content: "";
        display: table;
        clear: both; } }
  @media (min-width: 0) and (max-width: 63.937em) {
    .co-hotel_eu--content {
      margin-right: auto;
      margin-left: auto;
      max-width: 72.22222em;
      padding-right: 30px;
      padding-left: 30px;
      max-width: 750px; }
      .co-hotel_eu--content:after {
        content: "";
        display: table;
        clear: both; } }
  @media (min-width: 64em) {
    .co-hotel_eu--content {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex; } }
  .co-hotel_eu--hotel_info {
    margin-bottom: 25px; }
    @media (min-width: 64em) {
      .co-hotel_eu--hotel_info {
        margin-right: auto;
        margin-bottom: 0;
        width: 359px; } }
  .co-hotel_eu--recommendations ul {
    margin-left: 15px; }
  @media (min-width: 64em) {
    .co-hotel_eu--recommendations {
      width: 639px; } }

.co-location {
  margin-bottom: 75px;
  position: relative; }
  @media (min-width: 64em) {
    .co-location {
      margin-right: auto;
      margin-left: auto;
      max-width: 72.22222em;
      padding-right: 30px;
      padding-left: 30px; }
      .co-location:after {
        content: "";
        display: table;
        clear: both; } }
  @media (min-width: 64em) {
    .co-location--carousel_content, .co-location--details_content {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex; } }
  .co-location--carousel_content {
    margin-bottom: 50px; }
  .co-location--carousel {
    margin-bottom: 25px; }
    @media (min-width: 64em) {
      .co-location--carousel {
        margin-right: auto;
        margin-bottom: 0;
        padding-right: 25px;
        width: 680px; } }
  @media (min-width: 0) and (max-width: 63.937em) {
    .co-location--info {
      margin-right: auto;
      margin-left: auto;
      max-width: 72.22222em;
      padding-right: 30px;
      padding-left: 30px;
      max-width: 750px; }
      .co-location--info:after {
        content: "";
        display: table;
        clear: both; } }
  @media (min-width: 64em) {
    .co-location--info {
      width: 435px; } }
  .co-location--map {
    margin-bottom: 25px; }
    @media (min-width: 64em) {
      .co-location--map {
        margin-bottom: 0;
        margin-left: auto;
        padding-left: 25px;
        -webkit-box-ordinal-group: 2;
        -webkit-order: 1;
            -ms-flex-order: 1;
                order: 1; } }
    @media (min-width: 0) and (max-width: 63.937em) {
      .co-location--map iframe {
        width: 100%; } }
  @media (min-width: 0) and (max-width: 63.937em) {
    .co-location--details {
      margin-right: auto;
      margin-left: auto;
      max-width: 72.22222em;
      padding-right: 30px;
      padding-left: 30px;
      max-width: 750px;
      text-align: center; }
      .co-location--details:after {
        content: "";
        display: table;
        clear: both; } }
  @media (min-width: 64em) {
    .co-location--details {
      text-align: right;
      width: 500px; }
      .co-location--details .co-title {
        text-align: right; } }

.co-speakers {
  margin-bottom: 75px;
  position: relative; }
  @media (min-width: 64em) {
    .co-speakers {
      margin-right: auto;
      margin-left: auto;
      max-width: 72.22222em;
      padding-right: 30px;
      padding-left: 30px; }
      .co-speakers:after {
        content: "";
        display: table;
        clear: both; } }
  .co-speakers--intro {
    margin-bottom: 50px; }
  .co-speakers--title {
    font-weight: 600;
    font-style: normal;
    letter-spacing: normal;
    line-height: 1.3;
    font-family: AvenirLTStd-Heavy, sans-serif;
    font-size: 4.8rem;
    border-bottom: 1px solid #f39706;
    letter-spacing: 2px;
    margin-top: 50px;
    margin-bottom: 50px;
    padding-bottom: 16.6666666667px; }
    @media (min-width: 37.5em) {
      .co-speakers--title {
        font-size: 5rem; } }
  .co-speakers--inner_wrap {
    margin-right: auto;
    margin-left: auto;
    max-width: 72.22222em;
    padding-right: 30px;
    padding-left: 30px; }
    .co-speakers--inner_wrap:after {
      content: "";
      display: table;
      clear: both; }
    @media (min-width: 37.5em) {
      .co-speakers--inner_wrap {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-column-gap: 2.77778em;
        grid-row-gap: 2.77778em; } }
  .co-speakers--speaker_block {
    text-align: center; }
    @media (min-width: 64em) {
      .co-speakers--speaker_block {
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
            -ms-flex-align: start;
                align-items: flex-start;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        text-align: left; } }
  .co-speakers--speaker_img {
    display: block;
    margin: 0 auto; }
    @media (min-width: 64em) {
      .co-speakers--speaker_img {
        margin-right: 15px;
        max-width: 200px; } }
  .co-speakers--speaker_name {
    font-weight: 600;
    font-style: normal;
    letter-spacing: normal;
    line-height: 1.3;
    font-family: acumin-pro-wide, sans-serif;
    font-size: 3rem;
    color: #f39706;
    display: block;
    font-size: 2.4rem;
    font-style: normal;
    text-transform: uppercase; }
  .co-speakers--speaker_title {
    color: #ababdf;
    display: block;
    margin-bottom: 10px; }
  .co-speakers--speaker_info {
    text-align: left; }
  .co-speakers--sessions_title {
    color: #f39706;
    display: block;
    text-transform: uppercase; }
  .co-speakers--speaker_sessions {
    border-top: 1px solid #ef6909;
    font-size: 1.6rem;
    padding-top: 16.6666666667px; }
    .co-speakers--speaker_sessions ul {
      margin-left: 1em; }

.co-sponsors {
  margin-bottom: 75px;
  position: relative; }
  @media (min-width: 64em) {
    .co-sponsors {
      margin-right: auto;
      margin-left: auto;
      max-width: 72.22222em;
      padding-right: 30px;
      padding-left: 30px; }
      .co-sponsors:after {
        content: "";
        display: table;
        clear: both; } }
  .co-sponsors--wrap {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between; }
    @media (min-width: 0) and (max-width: 63.937em) {
      .co-sponsors--wrap {
        margin-right: auto;
        margin-left: auto;
        max-width: 72.22222em;
        padding-right: 30px;
        padding-left: 30px; }
        .co-sponsors--wrap:after {
          content: "";
          display: table;
          clear: both; } }
  .co-sponsors--premium_wrap {
    text-align: center; }
  @media (min-width: 37.5em) and (max-width: 64em) {
    .co-sponsors--premium_img {
      max-width: 400px; } }
  @media (min-width: 64em) {
    .co-sponsors--premium_img {
      max-width: 500px; } }
  .co-sponsors--logo_url {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 45%;
        -ms-flex: 0 1 45%;
            flex: 0 1 45%;
    margin-bottom: 25px; }
    @media (min-width: 37.5em) {
      .co-sponsors--logo_url {
        -webkit-flex-basis: 15%;
            -ms-flex-preferred-size: 15%;
                flex-basis: 15%;
        margin-bottom: 16.6666666667px; } }
  @media (min-width: 0) and (max-width: 63.937em) {
    .co-sponsors--logo_img {
      display: block;
      margin: 0 auto; } }

.co-tabs--nav {
  display: none; }
  @media (min-width: 64em) {
    .co-tabs--nav {
      display: block; }
      .co-tabs--nav:after {
        content: "";
        display: table;
        clear: both; }
      .co-speakers .co-tabs--nav {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex; } }
  @media (min-width: 64em) {
    .co-tabs[data-curtab="0"] .co-tabs--nav:after {
      left: 14%; } }
  @media (min-width: 64em) {
    .co-tabs[data-curtab="1"] .co-tabs--nav:after {
      left: 38%; } }
  @media (min-width: 64em) {
    .co-tabs[data-curtab="2"] .co-tabs--nav:after {
      left: 62%; } }
  @media (min-width: 64em) {
    .co-tabs[data-curtab="3"] .co-tabs--nav:after {
      left: 86%; } }

.co-tabs--nav_toggle {
  background-color: #f39706;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-bottom: none;
  border-radius: 0;
  border-color: #f39706;
  border-width: 4px;
  color: #051b39;
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 600;
  -webkit-transition: background-color 0.2s ease, color 0.1s ease;
  -o-transition: background-color 0.2s ease, color 0.1s ease;
  transition: background-color 0.2s ease, color 0.1s ease;
  -webkit-font-smoothing: auto; }
  .co-tabs--nav_toggle:before, .co-tabs--nav_toggle:after {
    content: none; }
  @media (min-width: 64em) {
    .co-speakers .co-tabs--nav_toggle {
      width: 50%; } }
  .co-tabs__small .co-tabs--nav_toggle {
    background-color: #d1d1d1;
    border-top: 1px solid #d1d1d1;
    border-right: 1px solid #d1d1d1;
    display: block;
    float: left;
    font-size: 18px;
    font-size: 1.8rem;
    margin-left: 5px;
    padding-right: 0.7em;
    padding-left: 0.7em; }
    .co-tabs__small .co-tabs--nav_toggle:first-child {
      margin-left: 0; }
  .co-tabs--nav_toggle:hover, .co-tabs--nav_toggle:focus {
    background-color: #f39706;
    background-image: none;
    border-bottom: none;
    border-top: 4px solid #f39706;
    border-right: 4px solid #f39706;
    border-left: 4px solid #f39706;
    -webkit-box-shadow: none;
            box-shadow: none;
    color: #051b39; }
    .co-tabs__small .co-tabs--nav_toggle:hover, .co-tabs__small .co-tabs--nav_toggle:focus {
      background-color: #d1d1d1;
      border-top: 1px solid #d1d1d1;
      border-right: 1px solid #d1d1d1;
      border-color: #d1d1d1; }
  .co-tabs--nav_toggle.closed {
    background-color: #051b39;
    border-color: #f39706;
    border-width: 4px;
    color: #FB3213; }
    .co-tabs__small .co-tabs--nav_toggle.closed {
      background-color: #626366;
      border-top: 1px solid #626366;
      border-right: 1px solid #626366;
      color: #FFFFFF; }
    .co-speakers .co-tabs--nav_toggle.closed {
      background-color: rgba(5, 27, 57, 0.8); }
    .co-tabs--nav_toggle.closed:hover {
      background-color: #f39706;
      border-top: 4px solid #f39706;
      border-right: 4px solid #f39706;
      border-left: 4px solid #f39706;
      color: #051b39; }
      .co-tabs__small .co-tabs--nav_toggle.closed:hover {
        background-color: #d1d1d1;
        border-top: 1px solid #d1d1d1;
        border-right: 1px solid #d1d1d1;
        color: #626366; }
    .co-tabs__small .co-tabs--nav_toggle.closed:first-child {
      border-left: 1px solid #d1d1d1; }

.co-tab--content {
  opacity: 1;
  overflow: hidden;
  padding-top: 25px;
  padding-bottom: 25px;
  -webkit-transition: padding 0.2s ease, opacity 1s ease;
  -o-transition: padding 0.2s ease, opacity 1s ease;
  transition: padding 0.2s ease, opacity 1s ease; }
  .co-tab--content.closed {
    height: 0;
    opacity: 0;
    padding-top: 0;
    padding-bottom: 0;
    -webkit-transition: none;
    -o-transition: none;
    transition: none; }
  @media (min-width: 0) and (max-width: 37.5em) {
    .co-tab--content {
      font-size: 18px;
      font-size: 1.8rem;
      padding-left: 0;
      padding-right: 0; } }

.co-tab--toggle {
  background-color: #f39706;
  border-top: 1px solid #FB3213;
  border-right: none;
  border-bottom: none;
  border-left: none;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #051b39;
  position: relative;
  -webkit-transition: background-color 0.2s ease;
  -o-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
  text-align: left;
  width: 100%;
  -webkit-font-smoothing: auto; }
  .co-tab--toggle:before {
    content: none; }
  .co-tab--toggle:after {
    background-image: none;
    border-top-color: #051b39;
    height: 0;
    right: 30px;
    left: auto;
    opacity: 1;
    width: 0; }
  .co-tab--toggle:hover:before, .co-tab--toggle:hover:after {
    background-image: none; }
  .co-tab--toggle.closed {
    background-color: #051b39;
    border-bottom: 1px solid #FB3213;
    color: #FB3213; }
    .co-tab--toggle.closed:hover:after {
      border-top-color: #FB3213; }
    .co-tab--toggle.closed:focus {
      background-color: #051b39;
      color: #FB3213;
      -webkit-box-shadow: 0 0 10px #f39706;
              box-shadow: 0 0 10px #f39706; }
    .co-tab--toggle.closed:after {
      border-top-color: #FB3213;
      -webkit-transform: rotate(90deg) translateY(-50%) translateX(-50%);
          -ms-transform: rotate(90deg) translateY(-50%) translateX(-50%);
              transform: rotate(90deg) translateY(-50%) translateX(-50%); }
    .co-speakers .co-tab--toggle.closed {
      background-color: rgba(5, 27, 57, 0.8); }
  .co-tab--toggle:focus, .co-tab--toggle:hover {
    background-image: none;
    background-color: #f39706;
    -webkit-box-shadow: none;
            box-shadow: none;
    border-top: 1px solid #FB3213;
    border-right: none;
    border-left: none; }
  .co-tab--toggle:hover:after, .co-tab--toggle:active:after {
    border-top-color: #051b39; }
  .co-tab--toggle:after {
    content: "";
    border-top: 20px solid #FB3213;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
    position: absolute;
    right: 30px;
    -webkit-transform: translateY(-50%) translateX(50%);
        -ms-transform: translateY(-50%) translateX(50%);
            transform: translateY(-50%) translateX(50%);
    -webkit-transition: -webkit-transform 0.2s ease;
    transition: -webkit-transform 0.2s ease;
    -o-transition: transform 0.2s ease;
    transition: transform 0.2s ease;
    transition: transform 0.2s ease, -webkit-transform 0.2s ease;
    top: 50%; }
  @media (min-width: 64em) {
    .co-tab--toggle {
      display: none; } }

.co-tab--content_wrap {
  border-right: 4px solid #f39706;
  border-bottom: 4px solid #f39706;
  border-left: 4px solid #f39706; }
  .co-speakers .co-tab--content_wrap {
    background-color: rgba(5, 27, 57, 0.8); }
  @media (min-width: 64em) {
    .co-tab--content_wrap {
      border-top: 4px solid #f39706; } }
  .closed .co-tab--content_wrap {
    border: none; }

.co-tab--content:after {
  content: "";
  display: table;
  clear: both; }

@media (min-width: 0) and (max-width: 37.5em) {
  .co-tab--content.closed {
    border: none;
    display: none; } }

@media (min-width: 37.5em) and (max-width: 64em) {
  .co-tab--content.closed {
    border: none;
    display: none; } }

@media (min-width: 0) and (max-width: 37.5em) {
  .tab_cta {
    margin-bottom: 25px; } }

.tab_cta--img {
  display: block;
  margin-right: auto;
  margin-left: auto; }

.tab_cta--content {
  background-color: #626366;
  border-top: 1px solid #FFFFFF;
  color: #FFFFFF;
  padding-top: 25px;
  padding-right: 30px;
  padding-bottom: 25px;
  padding-left: 30px; }
  .tab_cta--content p {
    margin-bottom: 12.5px; }
  .tab_cta--content .co-button {
    border: 1px solid #FFFFFF;
    margin-top: 1em;
    margin-bottom: 1em;
    padding: 10px; }
  .tab_cta--content ul,
  .tab_cta--content ol {
    margin-left: 1em; }

.tab_cta--button_wrap {
  text-align: center; }

.tab_cta--button {
  background-color: #FB3213;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #ffeed4;
  display: inline-block;
  font-family: acumin-pro-wide, sans-serif;
  font-size: 2.3rem;
  font-weight: 600;
  letter-spacing: 1px;
  padding-top: 0.8em;
  padding-right: 1em;
  padding-bottom: 0.8em;
  padding-left: 1em;
  text-align: center;
  text-transform: uppercase;
  text-shadow: none;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transition-property: background-color, border;
  -o-transition-property: background-color, border;
  transition-property: background-color, border;
  margin-top: 25px; }
  .tab_cta--button:hover, .tab_cta--button:active, .tab_cta--button:focus {
    background-color: #f39706;
    -webkit-box-shadow: none;
            box-shadow: none;
    border: none; }
    .tab_cta--button:hover:link, .tab_cta--button:hover:visited, .tab_cta--button:active:link, .tab_cta--button:active:visited, .tab_cta--button:focus:link, .tab_cta--button:focus:visited {
      background-color: #f39706;
      color: #051b39;
      text-decoration: none; }
  .tab_cta--button:link, .tab_cta--button:visited {
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    color: #ffeed4; }
  .tab_cta--button:focus {
    -webkit-box-shadow: #01828f 0 0 0.5em;
            box-shadow: #01828f 0 0 0.5em;
    outline: none; }

.tab_buttons {
  float: left;
  width: 100%; }
  .tab_buttons--button {
    background-color: #FB3213;
    -webkit-box-shadow: none;
            box-shadow: none;
    color: #ffeed4;
    display: inline-block;
    font-family: acumin-pro-wide, sans-serif;
    font-size: 2.3rem;
    font-weight: 600;
    letter-spacing: 1px;
    padding-top: 0.8em;
    padding-right: 1em;
    padding-bottom: 0.8em;
    padding-left: 1em;
    text-align: center;
    text-transform: uppercase;
    text-shadow: none;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-transition-property: background-color, border;
    -o-transition-property: background-color, border;
    transition-property: background-color, border; }
    .tab_buttons--button:hover, .tab_buttons--button:active, .tab_buttons--button:focus {
      background-color: #f39706;
      -webkit-box-shadow: none;
              box-shadow: none;
      border: none; }
      .tab_buttons--button:hover:link, .tab_buttons--button:hover:visited, .tab_buttons--button:active:link, .tab_buttons--button:active:visited, .tab_buttons--button:focus:link, .tab_buttons--button:focus:visited {
        background-color: #f39706;
        color: #051b39;
        text-decoration: none; }
    .tab_buttons--button:link, .tab_buttons--button:visited {
      -webkit-transition: all 0.3s ease;
      -o-transition: all 0.3s ease;
      transition: all 0.3s ease;
      color: #ffeed4; }
    .tab_buttons--button:focus {
      -webkit-box-shadow: #01828f 0 0 0.5em;
              box-shadow: #01828f 0 0 0.5em;
      outline: none; }

.tab_disclosures {
  margin-top: 25px;
  float: left;
  font-size: 16px;
  font-size: 1.6rem;
  width: 100%; }

.co-testimonials {
  margin-top: 100px;
  margin-bottom: 75px;
  position: relative; }
  @media (min-width: 64em) {
    .co-testimonials {
      margin-right: auto;
      margin-left: auto;
      max-width: 72.22222em;
      padding-right: 30px;
      padding-left: 30px; }
      .co-testimonials:after {
        content: "";
        display: table;
        clear: both; } }
  .co-testimonials--title_wrap {
    background-image: url(images/mid-nav-word-bg.png);
    margin-top: 25px;
    margin-bottom: 25px;
    padding-top: 50px;
    padding-bottom: 50px; }
  .co-testimonials--title {
    font-weight: 600;
    font-style: normal;
    letter-spacing: normal;
    line-height: 1.3;
    font-family: AvenirLTStd-Heavy, sans-serif;
    font-size: 4.8rem;
    color: #FB3213;
    font-size: 5rem;
    text-align: center; }
    @media (min-width: 37.5em) {
      .co-testimonials--title {
        font-size: 8.5rem; } }
  .co-testimonials--wrap {
    margin-right: auto;
    margin-left: auto;
    max-width: 72.22222em;
    padding-right: 30px;
    padding-left: 30px; }
    .co-testimonials--wrap:after {
      content: "";
      display: table;
      clear: both; }
    @media (min-width: 37.5em) {
      .co-testimonials--wrap {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-gap: 5rem; } }
    @media (min-width: 64em) {
      .co-testimonials--wrap {
        grid-template-columns: 1fr 1fr 1fr;
        max-width: 100%;
        padding: 0; } }
  @media (min-width: 0) and (max-width: 37.5em) {
    .co-testimonials--quote_wrap {
      margin-bottom: 50px; }
      .co-testimonials--quote_wrap:last-child {
        margin-bottom: 0; } }
  .co-testimonials--quote {
    margin: 0;
    line-height: 1.6;
    padding-top: 25px; }
  @media (min-width: 0) and (max-width: 63.937em) {
    .co-testimonials--img {
      display: block;
      margin: 0 auto; } }
  .co-testimonials--attr {
    font-weight: 600;
    font-style: normal;
    letter-spacing: normal;
    line-height: 1.3;
    font-family: acumin-pro-wide, sans-serif;
    font-size: 3rem;
    display: block;
    color: #f39706;
    font-size: 1.7rem;
    font-style: normal;
    margin-top: 16.6666666667px;
    text-transform: uppercase; }

.co-tickets {
  /* generated by https://loading.io/ */ }
  .co-tickets--inner {
    margin-top: 50px;
    margin-bottom: 50px; }
  .co-tickets--content {
    position: relative;
    margin-bottom: 250px; }
    @media (min-width: 37.5em) {
      .co-tickets--content {
        margin-right: auto;
        margin-left: auto;
        max-width: 72.22222em;
        padding-right: 30px;
        padding-left: 30px; }
        .co-tickets--content:after {
          content: "";
          display: table;
          clear: both; } }

@-webkit-keyframes co-tickets--loader {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  50% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

@keyframes co-tickets--loader {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  50% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }
  .co-tickets--loader_wrap {
    width: 200px;
    height: 200px;
    position: absolute;
    top: 30px;
    left: 50%;
    -webkit-transform: translate(-50%);
        -ms-transform: translate(-50%);
            transform: translate(-50%);
    overflow: hidden;
    background: none; }
  .co-tickets--loader {
    -webkit-box-sizing: content-box;
            box-sizing: content-box;
    position: absolute;
    -webkit-animation: co-tickets--loader 1s linear infinite;
            animation: co-tickets--loader 1s linear infinite;
    width: 172px;
    height: 172px;
    top: 14px;
    left: 14px;
    border-radius: 50%;
    -webkit-box-shadow: 0 2.6px 0 0 #f39706;
            box-shadow: 0 2.6px 0 0 #f39706;
    -webkit-transform-origin: 86px 87.3px;
        -ms-transform-origin: 86px 87.3px;
            transform-origin: 86px 87.3px; }

.co-video {
  margin-top: 50px; }
  @media (min-width: 64em) {
    .co-video {
      margin-right: auto;
      margin-left: auto;
      max-width: 72.22222em;
      padding-right: 30px;
      padding-left: 30px;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-flex-wrap: wrap;
          -ms-flex-wrap: wrap;
              flex-wrap: wrap; }
      .co-video:after {
        content: "";
        display: table;
        clear: both; } }
  .co-video--text_wrap {
    margin-right: auto;
    margin-left: auto;
    max-width: 72.22222em;
    padding-right: 30px;
    padding-left: 30px;
    line-height: 1.6; }
    .co-video--text_wrap:after {
      content: "";
      display: table;
      clear: both; }
    @media (min-width: 64em) {
      .co-video--text_wrap {
        -webkit-box-ordinal-group: 3;
        -webkit-order: 2;
            -ms-flex-order: 2;
                order: 2;
        padding-top: 25px;
        padding-right: 0;
        padding-left: 20px;
        width: 40%; } }
  .co-video--why_attend {
    margin-right: auto;
    margin-left: auto;
    max-width: 72.22222em;
    padding-right: 30px;
    padding-left: 30px;
    text-align: center;
    overflow: hidden;
    display: block;
    margin-bottom: 50px; }
    .co-video--why_attend:after {
      content: "";
      display: table;
      clear: both; }
    @media (min-width: 64em) {
      .co-video--why_attend {
        -webkit-box-ordinal-group: 1;
        -webkit-order: 0;
            -ms-flex-order: 0;
                order: 0; } }
  .co-video--why_attend_title {
    color: #ababdf;
    font-weight: 400; }
  @media (min-width: 64em) {
    .co-video--video_wrap {
      padding-right: 30px;
      width: 100%; } }
  .co-video--responsive_iframe {
    position: relative;
    overflow: hidden;
    padding-top: 56.25%; }
  .co-video--video_iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0; }
  .co-video--title {
    font-weight: 600;
    font-style: normal;
    letter-spacing: normal;
    line-height: 1.3;
    font-family: acumin-pro-wide, sans-serif;
    font-size: 3rem;
    color: #f39706;
    font-size: 2.2rem;
    margin-bottom: 16.6666666667px;
    text-align: center;
    text-transform: uppercase; }
    @media (min-width: 64em) {
      .co-video--title {
        text-align: left; } }
  .co-video ul {
    margin-left: 15px; }

.owl-prev,
.owl-next {
  display: block;
  position: absolute;
  bottom: 10px; }
  .owl-prev:before,
  .owl-next:before {
    background-size: contain;
    background-repeat: no-repeat;
    content: " ";
    display: block;
    height: 41px;
    width: 19px; }

.owl-prev {
  left: 10px; }
  .owl-prev:before {
    -webkit-transition: background-image 0.3s ease-in-out;
    -o-transition: background-image 0.3s ease-in-out;
    transition: background-image 0.3s ease-in-out;
    background-image: url(images/arrow_left.png); }
  .owl-prev:hover:before {
    background-image: url(images/arrow_left_hover.png); }

.owl-next {
  right: 10px; }
  .owl-next:before {
    -webkit-transition: background-image 0.3s ease-in-out;
    -o-transition: background-image 0.3s ease-in-out;
    transition: background-image 0.3s ease-in-out;
    background-image: url(images/arrow_right.png); }
  .owl-next:hover:before {
    background-image: url(images/arrow_right_hover.png); }

.player .vp-video-wrapper .vp-preview {
  background-size: cover; }

.body_locked {
  position: fixed;
  width: 100%; }

/*==== FADE IN UP ===*/
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none; } }
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none; } }

.fadeInUp {
  -webkit-animation-name: fadeInUp;
          animation-name: fadeInUp; }

/*==== FADE OUT DOWN ===*/
@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
    -webkit-transform: none;
            transform: none; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0); } }
@keyframes fadeOutDown {
  from {
    opacity: 1;
    -webkit-transform: none;
            transform: none; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0); } }

.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
          animation-name: fadeOutDown; }

/*==== FADE IN ===*/
@-webkit-keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
@keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn; }

/*==== FADE OUT ===*/
@keyframes fadeOut {
  from {
    opacity: 1; }
  to {
    opacity: 0; } }

.fadeOut {
  -webkit-animation-name: fadeOut;
          animation-name: fadeOut; }

/* 
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
  animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both; }

.owl-carousel .owl-animated-in {
  z-index: 0; }

.owl-carousel .owl-animated-out {
  z-index: 1; }

.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut; }

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

/* 
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  -webkit-transition: height 500ms ease-in-out;
  -o-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out; }

/* 
 *  Core Owl Carousel CSS File
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1; }

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y; }

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0; }

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px); }

.owl-carousel .owl-controls .owl-nav .owl-prev,
.owl-carousel .owl-controls .owl-nav .owl-next,
.owl-carousel .owl-controls .owl-dot {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.owl-carousel.owl-loaded {
  display: block; }

.owl-carousel.owl-loading {
  opacity: 0;
  display: block; }

.owl-carousel.owl-hidden {
  opacity: 0; }

.owl-carousel .owl-refresh .owl-item {
  display: none; }

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
  -webkit-transform-style: preserve-3d; }

.owl-carousel.owl-text-select-on .owl-item {
  -webkit-user-select: auto;
  -moz-user-select: auto;
  -ms-user-select: auto;
  user-select: auto; }

.owl-carousel .owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab; }

.owl-carousel.owl-rtl {
  direction: rtl; }

.owl-carousel.owl-rtl .owl-item {
  float: right; }

/* No Js */
.no-js .owl-carousel {
  display: block; }

/* 
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  -webkit-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease; }

.owl-carousel .owl-item img {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d; }

/* 
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000; }

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -webkit-transition: scale 100ms ease;
  -o-transition: scale 100ms ease;
  transition: scale 100ms ease; }

.owl-carousel .owl-video-play-icon:hover {
  -webkit-transition: scale(1.3, 1.3);
  -o-transition: scale(1.3, 1.3);
  transition: scale(1.3, 1.3); }

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none; }

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease; }

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1; }

.site_header {
  display: block;
  height: 74px;
  position: relative;
  width: 100%; }
  @media (min-width: 64em) {
    .site_header {
      height: auto;
      padding-top: 25px;
      padding-bottom: 25px; } }
  @media (min-width: 64em) {
    .site_header--diy_logo, .site_header--right_logos {
      position: absolute; } }
  .page-template-tpl-eu_home .site_header--cdbb_logo {
    width: 120px; }
  .site_header--berklee_logo {
    margin-right: 25px; }
  .site_header--diy_logo {
    float: right;
    margin-top: 15.00150015px;
    margin-right: 15px;
    max-width: 240px; }
    @media (min-width: 37.5em) and (max-width: 64em) {
      .site_header--diy_logo {
        margin-right: 30px; } }
    @media (min-width: 64em) {
      .site_header--diy_logo {
        float: none;
        margin: 0;
        max-width: 220px;
        top: 50%;
        -webkit-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
                transform: translateY(-50%);
        right: auto;
        left: 30px; } }
    @media (min-width: 90em) {
      .site_header--diy_logo {
        max-width: 100%; } }
  .site_header--right_logos {
    display: none; }
    @media (min-width: 64em) {
      .site_header--right_logos {
        -webkit-box-align: center;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        margin-top: 4px;
        top: 50%;
        -webkit-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
                transform: translateY(-50%);
        right: 30px; } }
  @media (min-width: 64em) {
    .site_header--nav_wrap {
      max-width: 580px; } }
  @media (min-width: 90em) {
    .site_header--nav_wrap {
      max-width: 815px; } }

.top_banner {
  background-color: #f39706;
  padding-top: 8.3333333333px;
  padding-bottom: 8.3333333333px;
  text-align: center; }
  @media (min-width: 37.5em) {
    .top_banner {
      padding-top: 12.5px;
      padding-bottom: 12.5px; } }
  .top_banner--title {
    font-weight: 600;
    font-style: normal;
    letter-spacing: normal;
    line-height: 1.3;
    font-family: acumin-pro-wide, sans-serif;
    font-size: 3rem;
    font-size: 1.5rem;
    text-transform: uppercase;
    position: relative; }
    .top_banner--title:link, .top_banner--title:visited {
      color: #051b39;
      display: block; }
    @media (min-width: 37.5em) and (max-width: 64em) {
      .top_banner--title {
        font-size: 2rem; } }
    @media (min-width: 90em) {
      .top_banner--title {
        font-size: 2.4rem;
        bottom: 0; } }
  .top_banner--timer {
    background-color: #ababdf;
    color: #051b39;
    font-size: 1.5rem;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 8px; }
    @media (min-width: 37.5em) {
      .top_banner--timer {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
            -ms-flex-pack: center;
                justify-content: center;
        font-size: 1.8rem; } }
  .top_banner--timer_list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    list-style: none;
    margin: 0 auto;
    max-width: 300px; }
    @media (min-width: 37.5em) {
      .top_banner--timer_list {
        display: inline-block;
        margin: 0;
        margin-left: 20px;
        max-width: none;
        width: auto; } }
  .top_banner--timer_list_item {
    display: inline-block;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%; }
    @media (min-width: 37.5em) {
      .top_banner--timer_list_item {
        margin-left: 10px; } }
  .top_banner--timer_list_name {
    display: block; }
    @media (min-width: 37.5em) {
      .top_banner--timer_list_name {
        display: inline; } }
  .top_banner--timer_list_number {
    font-size: 2.8rem;
    font-weight: 700; }

.header_ribbon {
  background: #ffd168;
  display: block;
  font-size: 15px;
  padding: 15px 2px;
  position: relative;
  top: 66px;
  text-align: center; }
  @media (min-width: 37.5em) {
    .header_ribbon {
      top: 0; } }
  @media (min-width: 64em) {
    .header_ribbon {
      font-size: 22px; } }
  @media (min-width: 0) and (max-width: 37.5em) {
    .header_ribbon__schedule {
      display: none; } }

.main_nav {
  font-size: 1.6rem;
  overflow: hidden; }
  @media (min-width: 64em) {
    .main_nav {
      font-size: 1.4rem; } }
  @media (min-width: 90em) {
    .main_nav {
      font-size: 2rem; } }
  .main_nav--nav_wrap, .main_nav--mobile_footer {
    font-family: acumin-pro-wide, sans-serif;
    letter-spacing: 1px;
    list-style: none;
    margin: 0;
    text-align: center;
    text-transform: uppercase;
    width: 100%; }
    @media (min-width: 64em) {
      .main_nav--nav_wrap, .main_nav--mobile_footer {
        -webkit-box-align: center;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-wrap: wrap;
            -ms-flex-wrap: wrap;
                flex-wrap: wrap;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
            -ms-flex-pack: justify;
                justify-content: space-between; } }
  .main_nav--nav_wrap__eu {
    max-width: 420px;
    margin: 0 auto; }
    @media (min-width: 90em) {
      .main_nav--nav_wrap__eu {
        max-width: 600px; } }
  .main_nav .menu-item {
    margin-top: 25px; }
    @media (min-width: 64em) {
      .main_nav .menu-item:first-child {
        margin-top: 0; } }
    @media (min-width: 64em) {
      .main_nav .menu-item {
        margin-top: 0; } }
    .main_nav .menu-item__hashtag {
      margin-top: 16.6666666667px; }
    .main_nav .menu-item a:link,
    .main_nav .menu-item a:visited {
      color: #ffeed4; }
      .main_nav--mobile_footer .main_nav .menu-item a:link, .main_nav--mobile_footer
      .main_nav .menu-item a:visited {
        color: #f39706; }
      .main_nav .menu-item a:link:hover,
      .main_nav .menu-item a:visited:hover {
        color: #f39706;
        text-decoration: none; }
        .main_nav--mobile_footer .main_nav .menu-item a:link:hover, .main_nav--mobile_footer
        .main_nav .menu-item a:visited:hover {
          color: #ffeed4; }
    .main_nav .menu-item.lang-item a:link,
    .main_nav .menu-item.lang-item a:visited {
      color: #FB3213; }
      .main_nav .menu-item.lang-item a:link:hover,
      .main_nav .menu-item.lang-item a:visited:hover {
        color: #f39706; }
  @media (min-width: 64em) {
    .main_nav--mobile_button, .main_nav--mobile_footer {
      display: none; } }
  .main_nav--mobile_button a:link,
  .main_nav--mobile_button a:visited {
    background-color: #FB3213;
    -webkit-box-shadow: none;
            box-shadow: none;
    color: #ffeed4;
    display: inline-block;
    font-family: acumin-pro-wide, sans-serif;
    font-size: 2.3rem;
    font-weight: 600;
    letter-spacing: 1px;
    padding-top: 0.8em;
    padding-right: 1em;
    padding-bottom: 0.8em;
    padding-left: 1em;
    text-align: center;
    text-transform: uppercase;
    text-shadow: none;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-transition-property: background-color, border;
    -o-transition-property: background-color, border;
    transition-property: background-color, border;
    background-color: transparent;
    border: 5px solid #FB3213;
    color: #FB3213; }
    .main_nav--mobile_button a:link:hover, .main_nav--mobile_button a:link:active, .main_nav--mobile_button a:link:focus,
    .main_nav--mobile_button a:visited:hover,
    .main_nav--mobile_button a:visited:active,
    .main_nav--mobile_button a:visited:focus {
      background-color: #f39706;
      -webkit-box-shadow: none;
              box-shadow: none;
      border: none; }
      .main_nav--mobile_button a:link:hover:link, .main_nav--mobile_button a:link:hover:visited, .main_nav--mobile_button a:link:active:link, .main_nav--mobile_button a:link:active:visited, .main_nav--mobile_button a:link:focus:link, .main_nav--mobile_button a:link:focus:visited,
      .main_nav--mobile_button a:visited:hover:link,
      .main_nav--mobile_button a:visited:hover:visited,
      .main_nav--mobile_button a:visited:active:link,
      .main_nav--mobile_button a:visited:active:visited,
      .main_nav--mobile_button a:visited:focus:link,
      .main_nav--mobile_button a:visited:focus:visited {
        background-color: #f39706;
        color: #051b39;
        text-decoration: none; }
    .main_nav--mobile_button a:link:link, .main_nav--mobile_button a:link:visited,
    .main_nav--mobile_button a:visited:link,
    .main_nav--mobile_button a:visited:visited {
      -webkit-transition: all 0.3s ease;
      -o-transition: all 0.3s ease;
      transition: all 0.3s ease;
      color: #ffeed4; }
    .main_nav--mobile_button a:link:focus,
    .main_nav--mobile_button a:visited:focus {
      -webkit-box-shadow: #01828f 0 0 0.5em;
              box-shadow: #01828f 0 0 0.5em;
      outline: none; }
    .main_nav--mobile_button a:link:link, .main_nav--mobile_button a:link:visited,
    .main_nav--mobile_button a:visited:link,
    .main_nav--mobile_button a:visited:visited {
      color: #FB3213; }
    .main_nav--mobile_button a:link:hover, .main_nav--mobile_button a:link:active, .main_nav--mobile_button a:link:focus,
    .main_nav--mobile_button a:visited:hover,
    .main_nav--mobile_button a:visited:active,
    .main_nav--mobile_button a:visited:focus {
      background-color: #f39706;
      border: 5px solid #f39706;
      -webkit-box-shadow: none;
              box-shadow: none; }
      .main_nav--mobile_button a:link:hover:link, .main_nav--mobile_button a:link:hover:visited, .main_nav--mobile_button a:link:active:link, .main_nav--mobile_button a:link:active:visited, .main_nav--mobile_button a:link:focus:link, .main_nav--mobile_button a:link:focus:visited,
      .main_nav--mobile_button a:visited:hover:link,
      .main_nav--mobile_button a:visited:hover:visited,
      .main_nav--mobile_button a:visited:active:link,
      .main_nav--mobile_button a:visited:active:visited,
      .main_nav--mobile_button a:visited:focus:link,
      .main_nav--mobile_button a:visited:focus:visited {
        background-color: #f39706;
        border: 5px solid #f39706;
        color: #051b39;
        text-decoration: none; }
  .main_nav--desktop_only {
    display: none; }
    @media (min-width: 64em) {
      .main_nav--desktop_only {
        display: block; } }
  .main_nav--mobile_footer_social {
    display: inline-block;
    margin-top: 25px;
    margin-right: 15px;
    margin-left: 15px; }
    .main_nav--mobile_footer_social__hashtag {
      margin-top: 16.6666666667px; }
  .main_nav--logos {
    text-align: center;
    margin-top: 50px; }
    @media (min-width: 64em) {
      .main_nav--logos {
        display: none; } }
  .main_nav--cdbb_logo {
    display: block; }
  .main_nav--sponsorship_text {
    display: block;
    font-size: 1.5rem;
    margin-top: 25px;
    margin-bottom: 5px; }
  .main_nav--berklee_logo {
    display: block; }

@media (min-width: 0) and (max-width: 63.937em) {
  .mobile_menu_wrap {
    -webkit-animation: open_height_toggle 0.2s ease;
            animation: open_height_toggle 0.2s ease;
    display: block;
    -webkit-transform: scaleY(1);
        -ms-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: center 0;
        -ms-transform-origin: center 0;
            transform-origin: center 0;
    background-color: #051b39;
    -webkit-box-shadow: 0px 6px 11px 0px #FB3213;
            box-shadow: 0px 6px 11px 0px #FB3213;
    overflow-y: scroll;
    padding-bottom: 25px;
    position: absolute;
    top: 0;
    left: 0;
    margin-top: 74px;
    width: 100%;
    z-index: 52; }
    .mobile_menu_wrap.closed {
      display: none;
      -webkit-transform: scaleY(0);
          -ms-transform: scaleY(0);
              transform: scaleY(0); }
    .body_class__eu .mobile_menu_wrap,
    .page-template-tpl-eu_home .mobile_menu_wrap {
      background-color: #2d0320; } }

.nav_toggle {
  background-color: transparent;
  border: none;
  color: #f39706;
  min-width: auto;
  padding: 9px 15px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0; }
  @media (min-width: 37.5em) and (max-width: 64em) {
    .nav_toggle {
      padding-left: 30px; } }
  .nav_toggle:hover, .nav_toggle:focus {
    background-color: transparent;
    border: none;
    -webkit-box-shadow: none;
            box-shadow: none;
    color: #f39706;
    outline: none; }
  @media (min-width: 64em) {
    .nav_toggle {
      display: none; } }
  .nav_toggle--icon {
    border-top: 0px solid #f39706;
    display: inline-block;
    position: relative;
    -webkit-transition: border-color 0.2s ease, width 0.2s ease;
    -o-transition: border-color 0.2s ease, width 0.2s ease;
    transition: border-color 0.2s ease, width 0.2s ease;
    width: 35px; }
    .closed .nav_toggle--icon {
      border-top-width: 6px;
      top: -4px; }
    .nav_toggle--icon:before, .nav_toggle--icon:after {
      background-color: #f39706;
      content: "";
      height: 6px;
      left: 0;
      position: absolute;
      top: -10px;
      -webkit-transition: width 0.2s ease, -webkit-transform 0.2s ease;
      transition: width 0.2s ease, -webkit-transform 0.2s ease;
      -o-transition: transform 0.2s ease, width 0.2s ease;
      transition: transform 0.2s ease, width 0.2s ease;
      transition: transform 0.2s ease, width 0.2s ease, -webkit-transform 0.2s ease;
      width: 35px; }
      .closed .nav_toggle--icon:before, .closed .nav_toggle--icon:after {
        -webkit-transform: rotate(0);
            -ms-transform: rotate(0);
                transform: rotate(0);
        background-color: #f39706; }
    .nav_toggle--icon:before {
      -webkit-transform: rotate(45deg);
          -ms-transform: rotate(45deg);
              transform: rotate(45deg); }
      .closed .nav_toggle--icon:before {
        top: -17px; }
    .nav_toggle--icon:after {
      -webkit-transform: rotate(-45deg);
          -ms-transform: rotate(-45deg);
              transform: rotate(-45deg); }
      .closed .nav_toggle--icon:after {
        top: 5px; }

.site_footer {
  background-image: url(images/footer_bg.png);
  background-position: bottom;
  background-repeat: no-repeat;
  font-family: acumin-pro-wide, sans-serif;
  padding-bottom: 325px;
  text-transform: uppercase;
  text-align: center; }
  @media (min-width: 110em) {
    .site_footer {
      background-repeat: repeat-x; } }
  .site_footer--logo_wrap {
    margin-bottom: 60px; }
    @media (min-width: 64em) {
      .site_footer--logo_wrap {
        -webkit-box-align: center;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
            -ms-flex-pack: justify;
                justify-content: space-between; } }
  .site_footer--dates {
    color: #f39706;
    font-size: 2.6rem;
    margin-top: 25px;
    margin-bottom: 25px; }
    @media (min-width: 64em) {
      .site_footer--dates {
        font-size: 3.8rem;
        position: relative;
        top: 10px;
        margin: 0; } }
  .site_footer--cta {
    font-size: 3rem; }
    @media (min-width: 64em) {
      .site_footer--cta {
        font-size: 4rem; } }
  .site_footer--copyright, .site_footer--eu_link {
    font-family: AvenirLTStd-Medium, sans-serif;
    font-size: 1.6rem;
    text-transform: none; }
    .site_footer--copyright a:link,
    .site_footer--copyright a:visited, .site_footer--eu_link a:link,
    .site_footer--eu_link a:visited {
      color: #ffeed4; }
  .site_footer--eu_link {
    font-size: 2rem;
    margin-bottom: 50px; }
    .site_footer--eu_link a:link,
    .site_footer--eu_link a:visited {
      color: #f39706; }
  @media (min-width: 37.5em) {
    .site_footer--logos {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center;
      margin-bottom: 50px; } }
  .site_footer--logos * {
    display: block;
    margin-bottom: 16.6666666667px;
    margin-right: auto;
    margin-left: auto; }
    @media (min-width: 37.5em) {
      .site_footer--logos * {
        margin: 0 20px; } }

.footer_nav {
  letter-spacing: 1px;
  margin: 0;
  width: 100%; }
  @media (min-width: 37.5em) {
    .footer_nav {
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-flex-wrap: wrap;
          -ms-flex-wrap: wrap;
              flex-wrap: wrap;
      -webkit-box-pack: justify;
      -webkit-justify-content: space-between;
          -ms-flex-pack: justify;
              justify-content: space-between; } }
  .footer_nav--nav_items {
    list-style: none;
    margin-top: 60px;
    margin-bottom: 60px;
    margin-right: 0;
    margin-left: 0;
    width: 100%; }
    @media (min-width: 64em) {
      .footer_nav--nav_items {
        -webkit-box-align: center;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
            -ms-flex-pack: center;
                justify-content: center; } }
  .footer_nav--nav_item {
    display: inline-block;
    margin-right: 20px;
    margin-left: 20px; }
    @media (min-width: 64em) {
      .footer_nav--nav_item {
        margin-top: 0;
        margin-right: 30px;
        margin-left: 30px;
        -webkit-box-ordinal-group: 2;
        -webkit-order: 1;
            -ms-flex-order: 1;
                order: 1; } }
    .footer_nav--nav_item__hashtag {
      display: block;
      font-size: 2.8rem;
      margin-top: 50px; }
      .footer_nav--nav_item__hashtag a:link,
      .footer_nav--nav_item__hashtag a:visited {
        color: #ababdf; }
      @media (min-width: 64em) {
        .footer_nav--nav_item__hashtag {
          font-size: 3.8rem;
          margin-bottom: 10px;
          -webkit-box-ordinal-group: 1;
          -webkit-order: 0;
              -ms-flex-order: 0;
                  order: 0;
          margin-top: 0; } }

.co-past_year {
  margin-top: 50px;
  margin-bottom: 50px;
  overflow: hidden;
  position: relative; }
  .co-past_year--main_title {
    font-weight: 600;
    font-style: normal;
    letter-spacing: normal;
    line-height: 1.3;
    font-family: AvenirLTStd-Heavy, sans-serif;
    font-size: 4.8rem;
    border-bottom: 1px solid #f39706;
    letter-spacing: 2px;
    margin-bottom: 50px;
    padding-bottom: 16.6666666667px; }
  .co-past_year--content {
    margin-bottom: 50px; }
  .co-past_year--content_title {
    font-weight: 600;
    font-style: normal;
    letter-spacing: normal;
    line-height: 1.3;
    font-family: acumin-pro-wide, sans-serif;
    font-size: 3rem;
    text-align: center; }
  .co-past_year--content_text {
    margin-top: 50px; }
  .co-past_year--intro {
    margin-bottom: 75px; }
  .co-past_year--intro_title {
    text-align: center; }
  @media (min-width: 64em) {
    .co-past_year--video_recap_wrap {
      margin-right: auto;
      margin-left: auto;
      max-width: 72.22222em;
      padding-right: 30px;
      padding-left: 30px;
      max-width: 750px;
      margin-right: auto;
      margin-left: auto; }
      .co-past_year--video_recap_wrap:after {
        content: "";
        display: table;
        clear: both; } }
  .co-past_year--video_recap {
    margin-bottom: 50px; }
  .co-past_year--conf_logo_wrap {
    text-align: center;
    margin-bottom: 50px; }
  @media (min-width: 37.5em) {
    .co-past_year--conf_logo {
      max-width: 450px; } }
  @media (min-width: 64em) {
    .co-past_year--slider_wrap {
      margin-right: auto;
      margin-left: auto;
      max-width: 72.22222em;
      padding-right: 30px;
      padding-left: 30px;
      max-width: 900px; }
      .co-past_year--slider_wrap:after {
        content: "";
        display: table;
        clear: both; } }
  .co-past_year--session_recap_wrap {
    margin-top: 50px; }
    @media (min-width: 64em) {
      .co-past_year--session_recap_wrap {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
            -ms-flex-pack: justify;
                justify-content: space-between; } }
  .co-past_year--session_recap {
    margin-bottom: 50px; }
    @media (min-width: 64em) {
      .co-past_year--session_recap {
        -webkit-box-flex: 0;
        -webkit-flex: 0 1 48%;
            -ms-flex: 0 1 48%;
                flex: 0 1 48%;
        margin-bottom: 0; } }
    .co-past_year--session_recap__single_recap {
      -webkit-box-flex: 1;
      -webkit-flex: 1 0 100%;
          -ms-flex: 1 0 100%;
              flex: 1 0 100%;
      max-width: 750px;
      margin-right: auto;
      margin-left: auto; }
  .co-past_year--session_recap_title {
    font-weight: 600;
    font-style: normal;
    letter-spacing: normal;
    line-height: 1.3;
    font-family: acumin-pro-wide, sans-serif;
    font-size: 2rem;
    margin-bottom: 25px;
    text-align: center; }
  .co-past_year--session_recap_video {
    margin-bottom: 25px; }
  .co-past_year--conference_recap_links {
    margin-top: 50px;
    text-align: center; }
  .co-past_year--conference_recap_links_inner {
    border-top: 1px solid #f39706;
    padding-top: 25px; }
  .co-past_year--conference_recap_links_title {
    font-weight: 600;
    font-style: normal;
    letter-spacing: normal;
    line-height: 1.3;
    font-family: acumin-pro-wide, sans-serif;
    font-size: 2rem;
    margin-bottom: 25px;
    text-align: center; }
  .co-past_year--content_text {
    margin-top: 50px; }
  .co-past_year--past_link {
    display: inline-block;
    margin-right: 25px;
    margin-left: 25px; }
  .co-past_year .co-shape--right {
    top: 600px;
    bottom: 0; }
    @media (min-width: 64em) {
      .co-past_year .co-shape--right {
        top: 0;
        right: -240px; } }

.recap_nav {
  display: none;
  padding-top: 0;
  padding-bottom: 0; }
  @media (min-width: 37.5em) {
    .recap_nav {
      display: block; } }
  .recap_nav--container {
    padding-top: 25px;
    padding-bottom: 25px; }

.recap_section {
  padding-top: 50px;
  padding-bottom: 50px; }
  .recap_section__2018 {
    padding-top: 75px; }
    .recap_section__2018__last_row {
      padding-bottom: 125px; }

.recap_video {
  background-color: #051b39;
  padding-top: 25px;
  position: relative; }
  .recap_video:before {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    background-image: url("images/section_strokes/header.png");
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: 100%;
    bottom: -16px; }
    @media (min-width: 37.5em) {
      .recap_video:before {
        bottom: -70px; } }
    @media (min-width: 110em) {
      .recap_video:before {
        bottom: -110px; } }
  @media (min-width: 37.5em) {
    .recap_video {
      top: 0; } }
  .recap_video--logo_wrap {
    margin-bottom: 25px;
    text-align: center; }
  .recap_video--diyconlogo {
    width: 100%; }
    @media (min-width: 37.5em) {
      .recap_video--diyconlogo {
        max-width: 550px; } }
  .recap_video--video_wrap__footer {
    margin-top: 50px; }

.recap_hero_text,
.recap_highlight_text {
  color: #5677bb;
  font-size: 24px;
  line-height: 1.5;
  margin-top: 25px;
  margin-right: auto;
  margin-left: auto;
  max-width: 850px; }
  .recap_hero_text__white,
  .recap_highlight_text__white {
    color: #FFFFFF; }
  .recap_hero_text__darkBlue,
  .recap_highlight_text__darkBlue {
    color: #051b39; }
  .recap_hero_text--title,
  .recap_highlight_text--title {
    color: #051b39;
    text-align: center;
    font-size: 40px; }
    @media (min-width: 37.5em) {
      .recap_hero_text--title,
      .recap_highlight_text--title {
        font-size: 70px; } }
    @media (min-width: 90em) {
      .recap_hero_text--title,
      .recap_highlight_text--title {
        font-size: 80px; } }

.recap_hero_text {
  margin-top: 0;
  padding-top: 100px;
  padding-bottom: 100px; }
  @media (min-width: 37.5em) {
    .recap_hero_text {
      padding-top: 150px;
      padding-bottom: 150px; } }
  @media (min-width: 90em) {
    .recap_hero_text {
      padding-top: 200px;
      padding-bottom: 200px;
      max-width: 950px; } }

.recap_day_event {
  font-size: 22px;
  margin-bottom: 50px;
  text-align: left; }
  @media (min-width: 64em) {
    .recap_day_event {
      -webkit-box-flex: 0;
      -webkit-flex: 0 1 45%;
          -ms-flex: 0 1 45%;
              flex: 0 1 45%; } }
  .recap_day_event--wrap {
    margin-top: 50px;
    margin-bottom: 50px; }
    @media (min-width: 90em) {
      .recap_day_event--wrap {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
            -ms-flex-align: start;
                align-items: flex-start;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
            -ms-flex-pack: justify;
                justify-content: space-between;
        text-align: left; } }
  .recap_day_event--image {
    display: block;
    margin: 0 auto;
    max-width: 100%; }
    .recap_day_event__img_left .recap_day_event--image {
      -webkit-box-ordinal-group: 1;
      -webkit-order: 0;
          -ms-flex-order: 0;
              order: 0; }
    .recap_day_event__img_right .recap_day_event--image {
      -webkit-box-ordinal-group: 2;
      -webkit-order: 1;
          -ms-flex-order: 1;
              order: 1; }
  .recap_day_event--event_details {
    color: #FFFFFF;
    font-size: 24px;
    line-height: 1.5;
    margin-top: 50px; }
    @media (min-width: 90em) {
      .recap_day_event__img_left .recap_day_event--event_details {
        -webkit-box-ordinal-group: 2;
        -webkit-order: 1;
            -ms-flex-order: 1;
                order: 1;
        margin-left: 45px; } }
    @media (min-width: 90em) {
      .recap_day_event__img_right .recap_day_event--event_details {
        -webkit-box-ordinal-group: 1;
        -webkit-order: 0;
            -ms-flex-order: 0;
                order: 0;
        margin-right: 45px; } }
  .recap_day_event--event_details_title {
    font-size: 30px;
    margin-bottom: 25px; }
  @media (min-width: 90em) {
    .recap_day_event--event_details_attr {
      display: block; } }

.recap_slider {
  max-width: 950px;
  margin: 0 auto; }
  .recap_slider__evening {
    margin-bottom: 125px; }

.past_years {
  margin-top: 75px;
  margin-bottom: 50px;
  text-align: center; }
  .past_years h3 {
    border-top: 1px solid #051b39;
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 25px;
    padding-top: 75px; }
  .past_years .year_links {
    font-size: 22px; }
    .past_years .year_links a:link,
    .past_years .year_links a:visited {
      padding: 0 5px; }

/*--------------------------------------------------------------
6.0 Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important; }
  .screen-reader-text:focus {
    background-color: #eee;
    clip: auto !important;
    -webkit-clip-path: none;
            clip-path: none;
    color: #444;
    display: block;
    font-size: 1em;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
    /* Above WP toolbar. */ }
/*# sourceMappingURL=style.css.map */