:root {
  --brand-accent-light: #ff0073;
  --brand-accent-dark: #305073;
}

/*!
// Contents
// ------------------------------------------------

 1. Mixins
 2. Helper classes & resets
 3. Loader
 4. Colours
 5. Typography
 6. Spacing
 7. Buttons
 8. Navigation
 9. Slider, Dividers
 10. Speakers & Topics
 11. Schedule
 12. Galleries
 13. Pricing & FAQ
 14. Subscribe
 15. Contact
 16. Forms
 17. Footers

// --------------------------------------------------*/

/*!
// 1. Useful Mixins
// --------------------------------------------------*/

.vertical-align {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.vertical-align-cancel {
  top: 0px;
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
}

.preserve-3d {
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.transition-100 {
  transition: all 0.1s ease-out;
  -webkit-transition: all 0.1s ease-out;
  -moz-transition: all 0.1s ease-out;
}

.transition-300 {
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
}

.transition-700 {
  transition: all 0.7s ease-out;
  -webkit-transition: all 0.7s ease-out;
  -moz-transition: all 0.7s ease-out;
}

.overlay:before {
  background-color: #333333;
  opacity: 0.5;
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  z-index: 1;
  top: 0px;
}

.overlay .container {
  position: relative;
  z-index: 2;
}

/*!
// 2. Helper Classes & Resets
// --------------------------------------------------*/

.go-right {
  right: 0px;
}

.go-left {
  left: 0px;
}

img {
  max-width: 100%;
}

.main-container {
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
}

.main-container,
.footer-container,
.nav-container,
nav {
  max-width: 1600px;
  margin: 0px auto;
}

.boxed-layout .main-container,
.boxed-layout .nav-container,
.boxed-layout nav,
.boxed-layout .footer-container {
  max-width: 1366px;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.no-loader .loader {
  display: none !important;
}

.row {
  margin-left: 0;
  margin-right: 0;
}

/*!
// 3. Loader
// --------------------------------------------------*/

.loader {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 99;
  background: #fff;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  opacity: 1;
}

.strip-holder {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 50%;
  margin-left: -50px;
  position: relative;
}

.strip-1,
.strip-2,
.strip-3 {
  width: 20px;
  height: 20px;
  background: var(--brand-accent-dark);
  position: relative;
  -webkit-animation: stripMove 2s ease infinite alternate;
  animation: stripMove 2s ease infinite alternate;
  -moz-animation: stripMove 2s ease infinite alternate;
}

.strip-2 {
  -webkit-animation-duration: 2.1s;
  animation-duration: 2.1s;
  background-color: #44bde8;
}

.strip-3 {
  -webkit-animation-duration: 2.2s;
  animation-duration: 2.2s;
  background-color: #ffb452;
}

@-webkit-keyframes stripMove {
  0% {
    transform: translate3d(0px, 0px, 0px);
    -webkit-transform: translate3d(0px, 0px, 0px);
    -moz-transform: translate3d(0px, 0px, 0px);
  }

  50% {
    transform: translate3d(0px, 0px, 0px);
    -webkit-transform: translate3d(0px, 0px, 0px);
    -moz-transform: translate3d(0px, 0px, 0px);
    transform: scale(4, 1);
    -webkit-transform: scale(4, 1);
    -moz-transform: scale(4, 1);
  }

  100% {
    transform: translate3d(-50px, 0px, 0px);
    -webkit-transform: translate3d(-50px, 0px, 0px);
    -moz-transform: translate3d(-50px, 0px, 0px);
  }
}

@-moz-keyframes stripMove {
  0% {
    transform: translate3d(-50px, 0px, 0px);
    -webkit-transform: translate3d(-50px, 0px, 0px);
    -moz-transform: translate3d(-50px, 0px, 0px);
  }

  50% {
    transform: translate3d(0px, 0px, 0px);
    -webkit-transform: translate3d(0px, 0px, 0px);
    -moz-transform: translate3d(0px, 0px, 0px);
    transform: scale(4, 1);
    -webkit-transform: scale(4, 1);
    -moz-transform: scale(4, 1);
  }

  100% {
    transform: translate3d(50px, 0px, 0px);
    -webkit-transform: translate3d(50px, 0px, 0px);
    -moz-transform: translate3d(50px, 0px, 0px);
  }
}

@keyframes stripMove {
  0% {
    transform: translate3d(-50px, 0px, 0px);
    -webkit-transform: translate3d(-50px, 0px, 0px);
    -moz-transform: translate3d(-50px, 0px, 0px);
  }

  50% {
    transform: translate3d(0px, 0px, 0px);
    -webkit-transform: translate3d(0px, 0px, 0px);
    -moz-transform: translate3d(0px, 0px, 0px);
    transform: scale(4, 1);
    -webkit-transform: scale(4, 1);
    -moz-transform: scale(4, 1);
  }

  100% {
    transform: translate3d(50px, 0px, 0px);
    -webkit-transform: translate3d(50px, 0px, 0px);
    -moz-transform: translate3d(50px, 0px, 0px);
  }
}

.main-container {
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
}

nav {
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
}

.show-content {
  opacity: 1 !important;
}

.hide-loader {
  opacity: 0 !important;
}

/*!
// 4. Colours
// --------------------------------------------------*/

.background-dark {
  background-color: #333333 !important;
}

.color-heading {
  color: #333333;
}

/*!
// 5. Typography
// --------------------------------------------------*/

.text-white {
  color: #fff;
}

body {
  font-family: 'Open Sans', "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
  color: #555555;
  font-size: 16px;
  background: #eee;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Open Sans', "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: normal;
  margin: 0px;
  color: #333333;
  line-height: 1.3em;
}

h1 {
  margin-top: 44px;
  font-size: 28px;
  margin-bottom: 1em;
}

h2 {
  margin-top: 24px;
  font-size: 24px;
  margin-bottom: 1em;
}

h3 {
  font-size: 20px;
  margin: 1.5em 0 0.5em 0;
}

.large-h1 {
  font-size: 42px;
  font-weight: 300;
}

p {
  margin-bottom: 1em;
}

/*p:last-child {
  margin-bottom: 0px;
}*/

p.lead {
  line-height: 30px;
  font-weight: 400;
}

span.lead {
  font-weight: 400;
}

.uppercase {
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  margin-right: -1px;
}

strong {
  font-weight: 600;
}

/* ul {
  list-style: none;
  margin: 0px;
  padding: 0px;
} */

@media all and (max-width: 767px) {
  h1 {
    font-size: 24px;
    margin-bottom: 36px;
  }

  h2 {
    font-size: 20px;
  }

  .large-h1 {
    font-size: 24px;
  }

  p {
    font-size: 13px;
  }

  p.lead {
    font-size: 15px;
    line-height: 26px;
  }
}

/*!
// Spacing Standards
// --------------------------------------------------*/

section {
  padding: 72px 0px;
  background: #fff;
}

section.hero {
  padding: 0;
}

section.blue {
  background: #e9e6cd;
}

.duplicatable-content {
  padding-bottom: 36px;
}

/*!
// 6. Buttons
// --------------------------------------------------*/

a:hover {
  text-decoration: none;
}

h1 a,
span a,
p a,
.text-link a {
  font-weight: 600;
  color: #fff;
  display: inline-block;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
}

a.highlight {
  padding-bottom: 4px;
  border-bottom: 3px solid #fff;
}

span a:hover {
  color: #fff;
}

p a,
.text-link a {
  /* color: #004470 !important; */
  border-color: #004470;
}

p.text-white a,
.text-link a {
  color: white !important;
  border-color: white;
}

p a,
.text-link a:hover {
  color: #333333;
}

p a.highlight {
  border-color: #004470;
}

.btn {
  min-width: 180px;
  border-radius: 25px;
  background: var(--brand-accent-dark);
  color: white;
  text-align: center;
  padding: 13px 15px 14px 15px;
  font-size: 15px;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  font-weight: 600;
  line-height: 1;
}

.btn:hover {
  color: white;
  background: #45667a;
}

.btn.home {
  background: var(--brand-accent-light);
}

.btn.home:hover {
  color: #fff;
  filter: brightness(1.5)
}

.btn-hollow {
  background: none;
  border: 2px solid #ff6b1e;
  color: #ff6b1e;
}

.btn-hollow:hover {
  background: #ffb452;
  border-color: #ffb452;
}

.btn-white {
  background: #fff;
  color: #44bde8;
}

.btn-white:hover {
  background: #fff;
  color: #00253d;
}

.btn-hollow.btn-white {
  background: none;
  border-color: #fff;
  color: #fff;
}

.btn-hollow.btn-white:hover {
  background: #fff;
  color: #004470;
}

.btn-lg {
  padding: 20px 0px 21px 0px;
  text-transform: uppercase;
  min-width: 230px;
  border-radius: 35px;
}

/*!
// Backgrounds & Parallax
// --------------------------------------------------*/

.background-image-holder {
  position: absolute;
  width: 100%;
  height: 130%;
  top: -10%;
  background-size: cover !important;
  background-position: 50% 50% !important;
}

.background-image-holder img {
  display: none;
}

.image-holder {
  position: relative;
  overflow: hidden;
}

/*!
// 7. Navigation
// --------------------------------------------------*/

nav .logo {
  max-height: 45px;
  max-width: 110px;
  position: absolute;
  top: -12px;
  opacity: 1;
}

.navbar-brand img {
  max-height: 30px;
  max-width: 30px;
}

nav .text-right {
  position: relative;
}

nav .container {
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
}

.overlay-nav {
  position: fixed;
  top: 0px;
  z-index: 10;
  width: 100%;
  padding-top: 24px;
  line-height: 1;
  background: none;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
}

.overlay-nav .logo-dark {
  opacity: 0;
}

.overlay-nav.sticky-nav .logo-light {
  opacity: 0;
}

.overlay-nav.sticky-nav .logo-dark {
  opacity: 1;
}

.bottom-border {
  position: absolute;
  bottom: 2px;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
}

.sidebar-menu .bottom-border {
  position: relative;
  bottom: 0px;
  background: rgba(255, 255, 255, 0.2);
  display: block !important;
}

.menu {
  display: inline-block;
  text-align: left;
  line-height: 1;
}

.menu li {
  float: left;
  margin-right: 32px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  position: relative;
  top: 4px;
  list-style-type: none;
}

.menu li:last-child {
  margin-right: 0px;
}

.menu li:nth-las-child(2) {
  margin-right: 12px;
}

.menu li a {
  color: #fff;
  display: inline-block;
  padding-bottom: 14px;
  margin-bottom: 10px;
  border-bottom: 2px solid rgba(0, 0, 0, 0);
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
}

.menu li a:hover {
  border-bottom: 2px solid #fff;
}

.nav-dropdown {
  position: absolute;
  z-index: -1;
  display: none;
  background: rgba(255, 255, 255, 0.9);
  min-width: 200px;
  overflow: hidden;
  margin-top: -2px;
  padding-left: 0;
}

.nav-dropdown li:first-child {
  margin-top: 12px;
}

.nav-dropdown li {
  list-style: none;
  opacity: 0;
  margin-right: 0px;
  float: none;
  margin-bottom: 18px;
}

.nav-dropdown li a {
  padding-bottom: 0px;
  padding-left: 24px;
  color: #333333;
}

.nav-dropdown li a:hover {
  border-color: rgba(0, 0, 0, 0);
}

.has-dropdown:hover .nav-dropdown {
  z-index: 10;
  /* max-height: 300px; */
  display: block;
}

.has-dropdown:hover .nav-dropdown li {
  opacity: 1;
}

.has-dropdown a {
  padding-left: 18px;
}

.has-dropdown:before {
  display: inline-block;
  font-family: 'Pe-icon-7-stroke';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e688";
  color: #fff;
  font-size: 24px;
  position: absolute;
  top: -6px;
}

.menu .social-link {
  top: 0px !important;
  margin-right: 18px !important;
}

.menu .social-link:nth-last-child(2) {
  margin-right: 18px;
}

.sticky-nav {
  background: var(--brand-accent-dark);
}

.sticky-nav .menu li a {
  color: #fff;
}

.sticky-nav .bottom-border {
  display: none;
}

.sticky-nav .menu li a:hover {
  border-color: rgba(0, 0, 0, 0);
}

.sticky-nav .sidebar-menu-toggle,
.sticky-nav .mobile-menu-toggle {
  color: #fff;
}

.sticky-nav .nav-dropdown {
  background: var(--brand-accent-dark);
}

.sticky-nav .has-dropdown:before {
  color: #fff;
}

.sidebar-menu-toggle,
.mobile-menu-toggle {
  position: absolute;
  color: #fff;
  font-size: 32px;
  right: 0px;
  top: -7px;
  cursor: pointer;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
}

.mobile-menu-toggle {
  display: none;
}

.sidebar-menu,
.instagram-sidebar {
  position: fixed;
  right: 0px;
  top: 0px;
  width: 300px;
  height: 100%;
  background: #333333;
  transform: translate3d(300px, 0px, 0px);
  -webkit-transform: translate3d(300px, 0px, 0px);
  -moz-transform: translate3d(300px, 0px, 0px);
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
}

.show-sidebar {
  transform: translate3d(0px, 0px, 0px);
  -webkit-transform: translate3d(0px, 0px, 0px);
  -moz-transform: translate3d(0px, 0px, 0px);
}

.reveal-sidebar {
  transform: translate3d(-300px, 0px, 0px);
  -webkit-transform: translate3d(-300px, 0px, 0px);
  -moz-transform: translate3d(-300px, 0px, 0px);
}

.sidebar-content {
  padding: 0px 24px;
  margin-top: 24px;
}

.widget {
  margin-bottom: 24px;
}

.widget .title {
  font-weight: 600;
  display: inline-block;
  margin-bottom: 12px;
}

.widget .menu li {
  float: none;
  margin-bottom: 12px;
}

.widget .menu li a {
  padding-bottom: 0px;
  color: #fff !important;
  font-size: 12px;
}

.widget .menu li a:hover {
  border-color: rgba(0, 0, 0, 0);
}

.widget .menu .social-link {
  display: none;
}

.widget .social-profiles li {
  margin-right: 24px;
}

.widget .social-profiles li a {
  color: #fff;
}

.instagram-toggle {
  cursor: pointer;
}

.instagram-toggle-init {
  pointer-events: none;
}

.instagram-sidebar li {
  width: 100%;
  height: 250px;
}

.instagram-sidebar {
  overflow-y: auto;
}

.sidebar-content .copy-text {
  position: absolute;
  bottom: 32px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}

.text-panel {
  background: #474747;
  padding: 18px;
}

.relative-nav {
  position: relative;
  padding-top: 28px;
  background: var(--brand-accent-dark);
}

.relative-nav .menu li a {
  color: #fff;
}

.relative-nav .has-dropdown:before {
  color: #fff;
}

.relative-nav .nav-dropdown {
  background: rgba(52, 86, 107, 0.8);
}

.relative-nav .has-dropdown li a {
  color: #fff;
}

.relative-nav .sidebar-menu-toggle {
  color: #fff;
}

.relative-nav .logo-light {
  opacity: 0 !important;
}

.relative-nav .logo-dark {
  opacity: 1 !important;
}

.relative-nav .logo {
  top: -12px !important;
}

.sidebar-menu .logo {
  max-width: 110px;
  position: relative;
  top: 21px !important;
  margin-bottom: 32px;
  left: 24px;
}

@media all and (max-width: 768px) {
  nav {
    max-height: 67px;
    overflow: hidden;
  }

  nav .menu li {
    float: none;
    margin-bottom: 24px;
  }

  nav .menu li a {
    padding-bottom: 0px;
  }

  nav .logo {
    max-width: 90px;
    top: -2px;
  }

  nav .logo-dark {
    opacity: 0 !important;
  }

  nav .logo-light {
    opacity: 1 !important;
  }

  nav .menu {
    width: 100%;
    display: block;
    margin-top: 67px;
    margin-right: 0px;
  }

  nav .social-link {
    float: left !important;
  }

  .sidebar-menu-toggle {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
    position: fixed;
    top: 17px;
    right: 24px;
    color: #fff !important;
  }

  .open-menu {
    background: var(--brand-accent-dark) !important;
    max-height: 800px !important;
  }

  .nav-dropdown {
    position: relative;
    display: none;
  }

  .has-dropdown:hover .nav-dropdown {
    display: block;
  }

  .has-dropdown:before {
    color: #333333;
  }
}

/*!
// 8. Sliders & Dividers & Headers
// --------------------------------------------------*/

.hero {
  background-image: url(/img/belfast-lough.jpg);
  background-size: cover;
  background-position: bottom;
}

.hero-shade {
  background-color: rgba(0, 0, 0, 0.6);
}

.hero .content {
  padding: 72px calc(max(10%, 2rem)) 4rem calc(max(10%, 2rem));
  color: white;
  text-align: center;
}

.hero .columns {
  display: flex;
  flex-wrap: wrap;
}

.hero .column {
  flex: 1 1 50%;
  align-self: center;
  text-align: center;
  padding-bottom: 4rem;
}

@media all and (max-width: 768px) {
  .hero .column {
    flex: 1 1 100%;
  }
}
  
.hero .logo {
  width: 90%;
  max-width: 450px;
}

.hero ul {
  margin: 0 0 1em 0;
  padding: 0;
}

ul.checkmarks {
  list-style: none;
}

ul.checkmarks li::before {
  content: "✓ ";
  color: var(--brand-accent-light);
  font-weight: bold;
}

.hero li {
  margin-bottom: 0.25em;
}

.hero-slider {
  padding: 0px;
  position: relative;
  overflow: hidden;
  background: #2b2b2b;
}

.hero-slider .slides {
  margin: 0;
  padding: 0;
}

.hero-slider .slides li {
  list-style: none;
  /* height: 850px; */
  position: relative;
  overflow: hidden;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.hero-slider .slides li:before {
  background-color: #333333;
  opacity: 0.4;
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  z-index: 1;
  top: 0px;
}

.hero-slider .container {
  position: relative;
  /* top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%); */
  z-index: 2;
}

.hero-slider h1 {
  margin-bottom: 42px;
}

.hero-slider .btn-hollow {
  color: #fff;
  border-color: #fff;
  margin-left: 16px;
}

.hero-slider .btn-hollow:hover {
  background: #fff;
  color: #004470;
}

@media all and (max-width: 767px) {
  .hero-slider .btn-hollow {
    display: none;
  }
}

.register-header form.register {
  padding-top: 0px;
  background: rgba(0, 0, 0, 0.4);
  padding: 24px;
}

.register-header form input {
  width: 100% !important;
}

.register-header form.register span {
  color: #fff;
}

.register-header .logo,
.hero-slide .logo {
  max-width: 150px;
  display: block;
  margin-bottom: 12px;
}

.register-header h1 {
  margin-bottom: 24px !important;
}

@media all and (max-width: 768px) {

  .register-header form.register .form-name,
  .register-header form.register .form-email {
    max-width: 100%;
    width: 100%;
  }
}

@media all and (min-width: 321px) and (max-width: 767px) and (orientation: landscape) {

  .register-header form.register .form-name,
  .register-header form.register .form-email {
    width: 50%;
  }
}

@media all and (max-width: 767px) {
  .hero-slide .logo {
    max-width: 100px;
  }

  .register-header .logo {
    display: none;
  }

  .register-header h1 {
    display: none;
  }

  .register-header form h1 {
    display: block;
  }

  .register-header span.lead {
    display: none;
  }

  .register-header input,
  .register-header .select-holder {
    max-width: 100% !important;
  }

  .hero-slider h1 {
    margin-bottom: 18px;
  }
}

.primary-overlay:before {
  background-color: #004470;
  opacity: 0.8;
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  z-index: 1;
  top: 0px;
  background-color: #004470 !important;
}

.strip-divider {
  padding: 216px 0px;
  position: relative;
  overflow: hidden;
}

.strip-divider .container {
  z-index: 2;
  position: relative;
}

.strip-divider h1 {
  margin: 0px;
  font-size: 36px;
  line-height: 48px;
}

.strip-divider a:hover {
  color: #fff !important;
}

@media all and (max-width: 767px) {
  .strip-divider {
    padding: 72px 0px;
  }
}

.countdown-divider {
  padding: 144px 0px;
}

.countdown-divider img,
.countdown-header img,
.video-header img {
  max-width: 300px;
  display: inline-block;
  margin-bottom: 12px;
}

.countdown-header h1 {
  margin-bottom: 0px;
}

.countdown-header:before {
  opacity: 0.8 !important;
}

.video-header:before {
  opacity: 0.85 !important;
  background: #36566b !important;
}

.video-header .uppercase,
.countdown-header .uppercase {
  display: block;
  font-weight: 600;
  margin-bottom: 24px;
}

@media all and (max-width: 768px) {

  .countdown-header img,
  .countdown-divider img,
  .video-header img {
    max-width: 150px;
  }
}

.countdown {
  text-align: center;
  margin-top: 72px;
}

.countdown-row {
  color: #fff;
  font-size: 80px;
  font-weight: 300;
}

.countdown-section {
  width: 20%;
  display: inline-block;
}

.countdown-amount {
  display: inline-block;
  margin-bottom: 48px;
}

.countdown-period {
  display: block;
  font-size: 24px;
}

.section-header {
  position: relative;
  overflow: hidden;
  height: 450px;
}

.section-header h1 {
  font-size: 32px;
}

.section-header.overlay:before {
  opacity: 0.2;
}

.section-header i {
  font-size: 40px;
  color: #fff;
  margin: 0px 24px 12px 0px;
}

.section-header i:last-of-type {
  margin-right: 0px;
}

@media all and (max-width: 767px) {
  .countdown {
    margin-top: 48px;
  }

  .countdown-row {
    font-size: 36px;
  }

  .countdown-period {}
}

.video-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  z-index: 0;
}

.video-wrapper video {
  width: 100%;
}

@media all and (max-width: 1390px) {
  .video-wrapper video {
    width: 110%;
  }
}

@media all and (max-width: 1260px) {
  .video-wrapper video {
    width: 120%;
  }
}

@media all and (max-width: 1160px) {
  .video-wrapper video {
    width: 130%;
  }
}

@media all and (max-width: 1024px) {
  .video-wrapper {
    display: none;
  }
}

.call-to-action {
  padding: 144px 0px;
}

.call-to-action .uppercase {
  display: block;
  width: 100%;
  text-align: center;
  margin-bottom: 32px;
}

.call-to-action h1 {
  margin-bottom: 32px;
}

.call-to-action .btn {
  margin-bottom: 40px;
}

.call-to-action a i {
  display: inline-block;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  margin-right: 12px;
  font-size: 24px;
  line-height: 60px;
}

.call-to-action .social_facebook {
  background-color: #3b5998;
}

.call-to-action .social_twitter {
  background-color: #00aced;
}

.call-to-action a:last-of-type i {
  margin-right: 0px;
}

@media all and (max-width: 768px) {
  .call-to-action {
    padding: 72px 0px;
  }
}

/*!
// 9. Image with text
// --------------------------------------------------*/

.image-with-text {
  overflow: hidden;
  position: relative;
  height: 600px;
}

.image-with-text h1 {
  margin-bottom: 24px;
}

.side-image {
  padding: 0px;
  position: absolute;
  top: 0px;
  height: 100%;
}

@media all and (max-width: 767px) {
  .image-with-text {
    height: auto;
    padding: 72px 0px;
  }

  .image-with-text .vertical-align {
    top: 0px;
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
  }
}

/*!
// Promo Blocks
// --------------------------------------------------*/

.color-blocks {
  padding: 48px 0px;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.color-block {
  position: absolute;
  top: 0px;
  height: 100%;
  padding: 0px;
  color: #fff;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
}

.color-blocks h1,
.color-blocks h2,
.color-blocks h3,
.color-blocks h4,
.color-blocks h5,
.color-blocks h6 {
  color: #fff;
}

.color-blocks h1 {
  margin-bottom: 12px;
}

.color-blocks a {
  color: #fff;
  pointer-events: auto;
}

.color-blocks a:hover i {
  transform: rotateZ(-10deg);
}

.color-blocks i,
.contained-promo i {
  color: #004470;
  font-size: 70px;
  display: inline-block;
  border: 2px solid #fff;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  line-height: 117px;
  background: #fff;
  text-align: center;
  transition: all 0.1s ease-out;
  -webkit-transition: all 0.1s ease-out;
  -moz-transition: all 0.1s ease-out;
}

.block-left {
  background-color: var(--brand-accent-light);
}

.block-right {
  background-color: var(--brand-accent-dark);
  right: 0px;
}

@media all and (max-width: 768px) {
  .block-content {
    margin-bottom: 144px;
    overflow: hidden;
    display: block;
  }

  .block-content:last-of-type {
    margin-bottom: 0px;
  }

  .color-block {
    height: 50%;
    width: 100%;
  }

  .block-right {
    top: 50%;
  }
}

@media all and (max-width: 767px) {
  .block-content i {
    margin-bottom: 30px;
  }
}

/*!
// 10. Speakers & Topics
// --------------------------------------------------*/

.speakers-row {
  padding: 0px 15px;
}

.speaker-column {
  padding: 0px;
}

.speaker {
  position: relative;
  overflow: hidden;
}

.speaker,
.topic {
  margin-bottom: 24px;
}

.speaker .background-image {
  border-radius: 100%;
}

.speaker .hover-state {
  border-radius: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  opacity: 0;
  background: rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
}

.speaker .image-holder {
  width: 175px;
  height: 175px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 50%;
  margin-bottom: 12px;
}

.speaker span,
.speaker span a {
  color: #777777 !important;
  font-weight: 600;
}

.speaker-name {
  color: #333333;
}

.speaker .social-links {
  width: 100%;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  transform: translate3d(0px, -200px, 0px);
  -webkit-transform: translate3d(0px, -200px, 0px);
  -moz-transform: translate3d(0px, -200px, 0px);
}

.speaker .social-links a {
  color: #fff;
  font-size: 24px;
  display: inline-block;
  margin-left: 6px;
}

.speaker .social-links a:last-child {
  margin-right: 0px;
}

.speaker .image-holder:hover .hover-state {
  opacity: 1;
}

.speaker .image-holder:hover .hover-state .social-links {
  transform: translate3d(0px, 0px, 0px);
  -webkit-transform: translate3d(0px, 0px, 0px);
  -moz-transform: translate3d(0px, 0px, 0px);
}

.speaker-with-bio {
  overflow: hidden;
  margin-bottom: 2em;
}

.speaker-description h2 a {
  color: #333;
}

.speaker-description .sessionlink {
  display: inline-block;
  font-weight: 600;
}

.speaker-description h2 span {
  margin-right: 0.5em;
}

.speaker-description span a {
  border: none;
  color: #777777 !important;
  font-weight: 600;
}

.speaker-bio {
  border-top: 2px solid #eee;
  font-size: 12px;
  margin-top: 20px;
  padding-top: 20px;
}

.speaker-bio a {
  border: none;
  font-weight: normal;
}

.speaker-bio p {
  color: #888;
  font-size: 12px;
  line-height: 1.3;
}

.sessionlink i {
  margin-right: 0.5em;
}

.speakerNames a::after {
  content: ", ";
}

.speakerNames>*:last-child a::after {
  content: "";
}

.socialicon {
  border: 1px solid #333;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  margin-left: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}

@media all and (max-width: 767px) {
  .speaker-with-bio .speaker {
    width: 100%;
  }

  .speaker-with-bio .speaker-description {
    width: 100%;
    padding-left: 0px;
  }
}

.topics {
  position: relative;
  overflow: hidden;
}

.topics .container {
  position: relative;
  z-index: 2;
}

.topics.overlay .ruled-list li {
  border-color: rgba(255, 255, 255, 0.5);
}

.topics.overlay .topic i {
  color: #fff;
}

.topic h3 {
  margin-bottom: 18px;
}

.topic p.lead {
  margin-bottom: 32px;
}

.topic i {
  font-size: 60px;
  color: #004470;
  display: inline-block;
  margin-bottom: 32px;
}

@media all and (max-width: 767px) {
  .topic h3 {
    display: inline-block;
    position: relative;
    bottom: 18px;
    left: 12px;
  }

  .topic i {
    margin-bottom: 12px;
  }
}

.ruled-list li {
  border-top: 1px dotted rgba(0, 0, 0, 0.3);
  padding: 12px 0px;
}

@media all and (min-width: 321px) and (max-width: 767px) and (orientation: landscape) {
  .speakers-row .col-sm-6 {
    width: 50%;
    float: left !important;
  }
}

/*!
// 11. Schedule
// --------------------------------------------------*/

.inline-video {
  background: #f5f5f5;
}

.inline-video iframe {
  width: 100%;
  height: 300px;
  border: none;
}

.inline-video .btn {
  min-width: 150px;
  margin-top: 32px;
  margin-right: 16px;
}

@media all and (max-width: 768px) {
  .inline-video iframe {
    height: 350px;
    margin-top: 42px;
  }
}

@media all and (max-width: 767px) {
  .inline-video iframe {
    height: 200px;
    margin-top: 30px;
  }

  .inline-video .btn {
    margin-top: 18px;
  }
}

@media all and (min-width: 321px) and (max-width: 767px) and (orientation: landscape) {
  .inline-video iframe {
    height: 250px;
  }
}

.embedded-video-holder p {
  display: none;
}

.schedule-overview {
  border: 2px solid rgba(0, 0, 0, 0.2);
  margin-bottom: 36px;
}

.schedule-overview li {
  padding: 24px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
}

.schedule-overview li:first-child .top {
  display: none;
}

.schedule-overview li:last-child .bottom {
  display: none;
}

.schedule-title span {
  display: block;
}

.schedule-title .title {
  color: #333333;
}

.schedule-text {
  max-height: 0px;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  opacity: 0;
}

.schedule-overview li:hover {
  background-color: #f5f5f5;
}

.schedule-overview li:hover .schedule-text {
  max-height: 300px;
  opacity: 1;
  padding-top: 18px;
}

.schedule-overview li:hover .top,
.schedule-overview li:hover .bottom,
.schedule-overview li:hover .middle {
  border-color: rgba(0, 0, 0, 0.4);
}

.schedule-overview li:hover .middle {
  background: #333333;
}

.schedule-with-text .btn,
.contained-gallery .btn {
  margin-top: 24px;
  margin-right: 12px;
}

.schedule-with-text .schedule-overview li {
  padding-right: 48px;
}

@media all and (max-width: 1024px) {
  .schedule-overview li {
    padding-right: 48px;
  }
}

@media all and (max-width: 767px) {

  .schedule-with-text .btn,
  .contained-gallery .btn {
    margin-bottom: 32px;
  }
}

.marker-pin {
  position: absolute;
  right: 32px;
  top: 0px;
  height: 100%;
}

.marker-pin .top,
.marker-pin .bottom {
  height: 50%;
  width: 2px;
  border-left: 2px solid rgba(0, 0, 0, 0.2);
  position: absolute;
  z-index: 1;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
}

.marker-pin .top {
  top: 0px;
}

.marker-pin .bottom {
  bottom: 0px;
}

.marker-pin .middle {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  background: #fff;
  border-radius: 50%;
  position: absolute;
  right: -10px;
  top: 50%;
  margin-top: -9px;
  z-index: 2;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
}

/*!
// 12. Galleries
// --------------------------------------------------*/

.instagram,
.lightbox-gallery {
  position: relative;
  padding: 216px 0px;
}

.gallery-header .logo {
  max-width: 400px;
  display: block;
  margin: 0px auto;
  margin-bottom: 12px;
}

@media screen and (max-width: 768px) {
  .gallery-header .logo {
    max-width: 200px;
  }

  .gallery-header h1 {
    font-size: 24px !important;
    line-height: 32px !important;
  }
}

.instagram,
.lightbox-gallery {
  overflow: hidden;
  background: #44bde8 !important;
}

.instagram ul,
.lightbox-gallery ul {
  overflow: hidden;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
}

.instagram li,
.lightbox-gallery li {
  float: left;
  width: 20%;
  height: 50%;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  overflow: hidden;
  background-size: cover !important;
  opacity: 0.10;
}

.instagram li:hover,
.lightbox-gallery li:hover {
  opacity: 1 !important;
}

.instagram .container,
.lightbox-gallery .container {
  position: relative;
  z-index: 3;
}

.instagram i,
.lightbox-gallery i {
  font-size: 48px;
  display: inline-block;
  margin-bottom: 16px;
}

.instagram h1,
.lightbox-gallery h1 {
  font-size: 42px;
  line-height: 48px;
  font-weight: 300;
  margin-bottom: 16px;
}

@media all and (max-width: 1200px) {

  .instagram li:nth-child(n+9),
  .lightbox-gallery li:nth-child(n+9) {
    display: none;
  }

  .instagram li,
  .lightbox-gallery li {
    width: 25%;
  }
}

@media all and (max-width: 900px) {

  .instagram li:nth-child(n+7),
  .lightbox-gallery li:nth-child(n+7) {
    display: none;
  }

  .instagram li,
  .lightbox-gallery li {
    width: 33.333333%;
  }
}

@media all and (max-width: 767px) {

  .instagram,
  .lightbox-gallery {
    padding: 144px 0px;
  }

  .instagram li:nth-child(n+5),
  .lightbox-gallery li:nth-child(n+5) {
    display: none;
  }

  .instagram li,
  .lightbox-gallery li {
    width: 50%;
  }
}

.testimonials {
  position: relative;
  margin-top: 4rem;
}

.testimonial {
  position: absolute;
  width: 100%;
  color: white;
  opacity: 0;
  transition: opacity 0.5s;
}

.testimonialQuote {
  font-style: italic;
}

.contained-gallery .instagram,
.contained-gallery .lightbox-gallery {
  padding: 185px 0px;
}

.contained-gallery .instagram li:nth-child(n+9),
.contained-gallery .lightbox-gallery li:nth-child(n+9) {
  display: none;
}

.contained-gallery .instagram li,
.contained-gallery .lightbox-gallery li {
  width: 25%;
  opacity: 0.7;
}

@media all and (max-width: 1024px) {
  .contained-gallery .instagram li:nth-child(n+7) {
    display: none;
  }

  .contained-gallery .lightbox-gallery li:nth-child(n+7) {
    display: none;
  }

  .contained-gallery .instagram li,
  .contained-gallery .lightbox-gallery li {
    width: 33.33333%;
  }

  .contained-gallery .instagram,
  .contained-gallery .lightbox-gallery {
    padding: 200px 0px;
  }
}

@media all and (max-width: 768px) {

  .contained-gallery .instagram,
  .contained-gallery .lightbox-gallery {
    margin-bottom: 32px;
  }

  .contained-gallery .btn {
    margin-bottom: 0px;
  }

  .contained-gallery .instagram li:nth-child(n+5),
  .contained-gallery .lightbox-gallery li:nth-child(n+5) {
    display: block !important;
  }

  .contained-gallery .instagram li:nth-child(n+7),
  .contained-gallery .lightbox-gallery li:nth-child(n+7) {
    display: none !important;
  }

  .contained-gallery .instagram li,
  .contained-gallery .lightbox-gallery li {
    width: 33.33333% !important;
  }
}

/*!
// 13. Pricing
// --------------------------------------------------*/

.pricing-option {
  overflow: hidden;
  background: #f5f5f5;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  position: relative;
  padding: 72px 0px;
  margin-bottom: 30px;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
}

.pricing-option .dot {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
}

.pricing-option:hover {
  background: #ededed;
}

@media all and (min-width: 321px) and (max-width: 767px) and (orientation: landscape) {
  .pricing-options .col-sm-6 {
    width: 50%;
    float: left;
  }
}

.dollar,
.price,
.type {
  font-weight: 600;
  color: #333333;
  font-size: 72px;
}

.dollar {
  font-size: 36px;
  position: relative;
  bottom: 22px;
}

.price {
  line-height: 1;
}

.type {
  display: block;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 12px;
}

.plan-title {
  display: block;
  font-weight: 600;
  margin-bottom: 12px;
  font-size: 18px;
  color: #333333;
}

.pricing-option ul li {
  color: #777777;
}

.pricing-option.emphasis {
  background: #004470;
  color: #fff;
}

.pricing-option.emphasis .type,
.pricing-option.emphasis .dollar,
.pricing-option.emphasis .price,
.pricing-option.emphasis .plan-title,
.pricing-option.emphasis ul li {
  color: #fff !important;
}

@media all and (max-width: 991px) {
  .type {
    margin-bottom: 12px;
  }

  .pricing-option {
    text-align: center !important;
  }
}

/*!
// Frequently Asked Questions
// --------------------------------------------------*/

.faq-item {
  margin-bottom: 36px;
}

p.question {
  font-weight: 600;
  color: #333333;
}

/*!
// Visitor Info
// --------------------------------------------------*/

.info-box {
  margin-bottom: 36px;
  position: relative;
  overflow: hidden;
}

.info-box img {
  display: block;
  margin-bottom: 12px;
}

.info-box h3 {
  margin-bottom: 12px;
}

.info-box .text-link {
  position: absolute;
  bottom: 12px;
  right: 0px;
}

.text-link a {
  display: inline-block;
  margin-left: 12px;
}

@media all and (min-width: 321px) and (max-width: 767px) and (orientation: landscape) {
  .visitor-info .col-sm-4 {
    width: 50%;
    float: left;
  }
}

/*!
// 14. Subscribe
// --------------------------------------------------*/

.subscribe-1 {
  position: relative;
  overflow: hidden;
  padding-top: 144px;
  padding-bottom: 36px;
}

.subscribe-1:before {
  background-color: #333333;
  opacity: 0.4;
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  z-index: 1;
  top: 0px;
}

.subscribe-1 .container {
  position: relative;
  z-index: 2;
}

.subscribe-1 .email-subscribe {
  margin-bottom: 216px;
}

.subscribe-1 footer {
  border-top: 2px solid rgba(255, 255, 255, 0.3);
  padding-top: 36px;
}

.subscribe-1 .twitter-feed {
  margin-bottom: 72px;
}

.subscribe-1 h1 {
  margin-bottom: 30px;
}

.email-subscribe span {
  display: block;
  margin-top: 12px;
}

.twitter-feed i {
  font-size: 48px;
  display: inline-block;
  margin-bottom: 32px;
}

.twitter-feed span a {
  border-bottom: none;
}

.tweets-feed .user {
  display: none;
}

.tweets-feed .interact {
  display: none;
}

.tweets-feed .tweet {
  color: #fff;
  font-size: 30px;
  line-height: 36px;
  font-family: 'Open Sans', "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
}

.tweets-feed .tweet a {
  color: #fff !important;
  border-color: #fff !important;
}

.tweets-feed .timePosted {
  display: none;
}

@media all and (max-width: 767px) {
  .tweets-feed .tweet {
    font-size: 20px;
    line-height: 26px;
  }

  .subscribe-2 .form-email {
    margin-bottom: 24px;
  }
}

/*!
// 15. Contact
// --------------------------------------------------*/

.contact-tweets {
  background: #004470;
  color: #fff;
  position: relative;
  overflow: hidden;
  height: 600px;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.contact-tweets .social_twitter {
  font-size: 42px;
  margin-bottom: 32px;
  display: inline-block;
}

.contact-tweets .map-holder {
  position: absolute;
  height: 100%;
  padding: 0px;
  top: 0px;
  right: 0px;
}

.contact-tweets .timePosted {
  display: block !important;
}

.map-holder:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  opacity: 0;
}

.map-holder iframe {
  border: 0px;
  position: absolute;
  width: 100%;
  height: 100%;
}

.contact-tweets span a {
  border-bottom: 2px solid #fff;
  padding-bottom: 1px;
}

.contact-tweets form {
  padding-top: 0px !important;
}

.contact-tweets form .btn {
  background: #fff;
  color: #004470;
}

.contact-tweets form ::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.9);
}

.contact-tweets form :-moz-placeholder {
  color: rgba(255, 255, 255, 0.9);
}

.contact-tweets form ::-moz-placeholder {
  color: rgba(255, 255, 255, 0.9);
}

.contact-tweets form :-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.9);
}

.contact-tweets .icon {
  font-size: 60px;
  margin-bottom: 12px;
}

.contact-tweets .form-message {
  max-width: 95.5%;
  width: 95.5%;
}

.fullwidth-map {
  padding: 0px;
  position: relative;
  overflow: hidden;
}

.fullwidth-map .map-holder {
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.fullwidth-map.screen:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
}

/*!
// Sponsors
// --------------------------------------------------*/

.sponsors {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
}

.sponsor {
  flex: 0 0 15%;
  display: flex;
  flex-direction: row;
}

.sponsor a {
  display: flex;
  align-items: center;
  text-align: center;
  color: black;
  border: solid 1px transparent;
  margin: 1em;
  transition: opacity 0.2s ease-in-out;
  opacity: 1;
  width: 100%;
}

.sponsor a:hover {
  opacity: 0.75;
}

.sponsor img {
  flex: 0 0 auto;
  display: block;
  width: 80%;
  margin: auto;
  padding: 20px 0;
}

.sponsor span {
  flex: 0 0 1em;
  background: #eee;
  margin-top: 0.5em;
}

.diamond .sponsor {
  flex-basis: 50%;
  min-width: 350px;
}

.platinum .sponsor {
  flex-basis: 30%;
  min-width: 250px;
}

.gold .sponsor {
  flex-basis: 20%;
  min-width: 200px;
}

.silver .sponsor {
  flex-basis: 15%;
  min-width: 175px;
}

.supporter .sponsor {
  flex-basis: 10%;
  min-width: 150px;
}

.prizes {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
}

.prize {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin: 2em 0;
}

.prizesponsor {
  width: 140px;
}

.prizedetail {
  width: 15em;
  margin: 1em;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.prizeprize {
  width: 140px;
}

.prize a {
  transition: opacity 0.2s ease-in-out;
  opacity: 1;
  color: #428bca;
  font-weight: bold;
}

.prize a:hover {
  opacity: 0.75;
  color: #428bca;
}

@media all and (max-width: 660px) {
  .prize {
    flex-direction: column;
  }
}

/*
.diamond, .gold, .bronze, .platinum, .silver {
  height: 180px;
  vertical-align: middle;
  text-align: center;
  margin-top: 12px;
}

.diamond img, .gold img, .bronze img, .platinum img, .silver img {
  max-height: 150px;
  max-width: 150px;
}
*/

/*!
// 16. Forms
// --------------------------------------------------*/

form.register {
  overflow: hidden;
  padding-top: 24px;
  display: block;
}

form.register div {
  padding: 0px;
}

input[type="text"],
form.register .select-holder {
  margin-bottom: 32px;
  padding: 12px;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  max-width: 90%;
  color: #fff;
  padding-left: 24px;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
}

input[type="text"]:focus,
form.register .select-holder:focus,
input[type="text"]:hover,
form.register .select-holder:hover {
  outline: none;
  background: rgba(255, 255, 255, 0.2);
}

form.register select {
  width: 90%;
  margin: 0px;
  background: none;
  border: none;
  cursor: pointer;
}

form.register select:focus {
  outline: none;
}

form.register input[type="submit"] {
  padding-bottom: 12px;
  width: 90%;
  margin-bottom: 12px;
}

input[type="submit"] {
  font-weight: normal;
}

.email-subscribe {
  overflow: hidden;
}

.email-subscribe input {
  margin: 0px auto;
  min-width: 100%;
  max-width: 100%;
}

.email-subscribe input[type="text"] {
  background: rgba(255, 255, 255, 0.3);
}

.email-subscribe input[type="text"]:hover,
.email-subscribe input[type="text"]:focus {
  background: rgba(255, 255, 255, 0.4);
}

.email-subscribe ::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.9);
}

.email-subscribe :-moz-placeholder {
  color: rgba(255, 255, 255, 0.9);
}

.email-subscribe ::-moz-placeholder {
  color: rgba(255, 255, 255, 0.9);
}

.email-subscribe :-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.9);
}

.email-subscribe input[type="submit"] {
  min-height: 48px;
}

.subscribe-2 .email-subscribe input[type="text"] {
  background: rgba(0, 0, 0, 0.2);
}

.subscribe-2 i {
  color: #004470;
  font-size: 70px;
  display: inline-block;
  margin-right: 24px;
  margin-bottom: 18px;
}

.subscribe-2 i:last-of-type {
  margin-right: 0px;
}

input.error {
  color: #ff4532;
}

.mail-list-form {
  width: 0px;
  height: 0px;
  opacity: 0;
  overflow: hidden;
}

.form-success,
.form-error {
  display: none;
  width: 100%;
  padding: 6px 18px 8px 18px !important;
  margin-top: 12px;
  color: #fff;
  background-color: #55c950;
  border-radius: 20px;
}

.form-error {
  background-color: #d74b4b;
}

form .field-error {
  background: #d74b4b !important;
}

@media all and (max-width: 767px) {

  form.register input,
  form.register .select-holder {
    width: 100% !important;
    max-width: 100%;
  }

  .subscribe-1 .email-subscribe input[type="text"] {
    margin-bottom: 24px;
  }
}

@media all and (min-width: 321px) and (max-width: 767px) and (orientation: landscape) {
  form.register .col-sm-6 {
    width: 50%;
    float: left;
  }

  form.register input,
  form.register .select-holder {
    max-width: 95% !important;
  }

  form.register input[type="submit"] {
    max-width: 100% !important;
  }
}

/*!
// Utility Pages
// --------------------------------------------------*/

.error-page {
  background: #004470;
  padding: 0px;
}

.error-page h1 {
  font-size: 84px;
  line-height: 96px;
  margin-bottom: 0px;
  margin-bottom: 12px;
}

.error-page p {
  font-size: 24px;
  line-height: 32px;
}

.error-page i {
  color: #fff;
  font-size: 84px;
  display: inline-block;
  margin-right: 24px;
}

.error-page i:last-of-type {
  margin-right: 0px;
}

.error-page .btn {
  margin-right: 24px;
  margin-top: 12px;
}

@media all and (max-width: 767px) {
  .error-page i {
    display: none;
  }
}

/*!
// 17. Footers
// --------------------------------------------------*/

.footer .top-border {
  height: 2px;
  width: 100%;
  background: rgba(255, 255, 255, 0.3);
  margin-bottom: 32px;
}

.footer .menu {
  overflow: visible;
}

.footer .menu li {
  top: 0px;
}

.footer .menu li a {
  padding-bottom: 0px;
}

.footer .menu li .btn {
  min-width: 0px;
  padding: 10px 18px;
  font-size: 14px;
}

.footer .menu li a {
  diplay: inline-block;
  position: relative;
  border: none;
}

.footer .menu li a:hover {
  border: none;
}

.footer .back-to-top {
  padding-right: 42px;
}

.footer .menu li a i {
  font-size: 36px;
  position: absolute;
  right: 0px;
  top: -12px;
}

@media all and (max-width: 767px) {
  .footer .text-right {
    text-align: left !important;
  }

  .footer .menu {
    margin-top: 24px;
  }

  .footer .menu li {
    float: none;
    margin-bottom: 12px;
  }
}

footer.classic {
  padding: 72px 0px 36px 0px;
  background: #f5f5f5;
}

footer.classic .menu li {
  float: none;
  margin-bottom: 12px;
}

footer.classic .menu li a {
  color: #333333;
  padding-bottom: 0px;
  font-weight: 600;
}

footer.classic span.lead {
  display: inline-block;
  margin-bottom: 12px;
}

footer.short {
  background: var(--brand-accent-dark);
  color: #fff;
  padding: 72px 0px;
}

footer.short .character-copyright {
  font-size: 12px;
  line-height: 1.3;
  margin: 0px;
  padding: 0px;
}

footer.short .character-copyright a {
  color: #fff !important;
  font-size: 12px;
  line-height: 12px;
  border: none;
  margin: 0px;
  padding: 0px;
}

footer.short .top-border {
  height: 1px !important;
}

@media all and (max-width: 767px) {
  footer.classic div {
    margin-bottom: 18px;
  }
}

.contact-methods li {
  margin-bottom: 12px;
}

.contact-methods li:last-child {
  margin-bottom: 0px;
}

.contact-methods i {
  font-size: 36px;
  color: #333333;
}

.contact-methods span {
  display: inline-block;
  position: relative;
  bottom: 10px;
  left: 8px;
}

footer.classic .social-profiles {
  margin-top: 36px;
}

.social-profiles {
  display: inline-block;
  overflow: hidden;
}

.social-profiles li {
  float: left;
  margin-right: 36px;
}

.social-profiles li:last-child {
  margin-right: 0px;
}

.social-profiles li a {
  color: #333333;
  font-size: 20px;
}

body .colors {
  margin: 0;
}

body .colors div {
  height: 5px;
}

body .colors-container {
  height: 5px;
  margin-top: -24px;
  margin-bottom: 24px;
}

body .relative-nav .colors-container {
  margin-top: -28px !important;
}

body .colors .col-xs-2 {
  -webkit-animation-duration: 0.5s;
  -moz-animation-duration: 0.5s;
  -ms-animation-duration: 0.5s;
  -o-animation-duration: 0.5s;
  animation-duration: 0.5s;
  padding: 0;
  margin: 0;
}

body .colors .col-xs-2:nth-child(1n+0) {
  background: #40657c;
  -webkit-animation-delay: 0.1s;
  -moz-animation-delay: 0.1s;
  -ms-animation-delay: 0.1s;
  -o-animation-delay: 0.1s;
  animation-delay: 0.1s;
}

body .colors .col-xs-2:nth-child(2n+0) {
  background: #4cc4ec;
  -webkit-animation-delay: 0.2s;
  -moz-animation-delay: 0.2s;
  -ms-animation-delay: 0.2s;
  -o-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

body .colors .col-xs-2:nth-child(3n+0) {
  background: #edead7;
  -webkit-animation-delay: 0.3s;
  -moz-animation-delay: 0.3s;
  -ms-animation-delay: 0.3s;
  -o-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

body .colors .col-xs-2:nth-child(4n+0) {
  background: #b3ad9f;
  -webkit-animation-delay: 0.4s;
  -moz-animation-delay: 0.4s;
  -ms-animation-delay: 0.4s;
  -o-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

body .colors .col-xs-2:nth-child(5n+0) {
  background: #f9b575;
  -webkit-animation-delay: 0.5s;
  -moz-animation-delay: 0.5s;
  -ms-animation-delay: 0.5s;
  -o-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

body .colors .col-xs-2:nth-child(6n+0) {
  background: #f07332;
  -webkit-animation-delay: 0.6s;
  -moz-animation-delay: 0.6s;
  -ms-animation-delay: 0.6s;
  -o-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.hotel-address {
  font-size: 14px;
}

.hotel-code {
  color: #999;
  display: block;
  float: right;
  font-size: 11px;
  position: relative;
  top: -18px;
}

.hotel-link a {
  border-color: #ff6b1e !important;
  color: #ff6b1e !important;
}

.hotel-name {
  font-size: 18px;
}

.hotel-note {
  background: rgba(255, 40, 40, 0.8);
  color: #fff;
  height: 26px;
  padding: 6px 12px;
  font-size: 14px;
  font-weight: bold;
  position: relative;
  top: -46px;
  margin-bottom: -42px;
  width: 100%;
  float: left;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.8);
}

.hotel-price {
  background: rgba(40, 40, 40, 0.6);
  color: #fff;
  height: 26px;
  padding: 6px 12px;
  position: relative;
  bottom: -38px;
  margin-top: -42px;
  width: 160px;
  float: right;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.8);
}

.hotel-phone {
  color: #36566b;
  float: right;
  font-size: 15px;
}

/* Large Devices, Wide Screens */

@media only screen and (max-width: 1200px) {
  .hero-slider img.logo {}
}

/* Medium Devices, Desktops */

@media only screen and (max-width: 992px) {

  /*-- video section --*/
  .embedded-video-holder {
    margin-top: 30px;
  }

  .embedded-video-holder iframe {
    height: 230px;
  }
}

/* Small Devices, Tablets */

@media only screen and (max-width: 768px) {

  /*-- Hero section --*/
  .hero-slider img.logo {
    display: block;
    margin: 0 auto;
    max-width: 370px;
    text-align: center;
    width: 70%;
  }

  .hero-slider .container {
    /* top: 50%; */
  }

  .video-header .uppercase,
  .countdown-header .uppercase {
    margin-bottom: 24px;
    margin-top: 24px;
  }

  .hero-slider .slides li {
    /* height: 750px; */
  }

  /*-- color section --*/
  .block-content {
    margin-bottom: 0;
  }

  .color-block {
    height: 100%;
    width: 50%;
  }

  .block-right {
    right: 0;
    top: 0 !important;
  }

  .color-blocks a {
    float: left;
    width: 50%;
  }

  /*-- video section --*/
  .embedded-video-holder {
    margin-top: 30px;
  }

  .embedded-video-holder iframe {
    height: 370px;
  }

  /*-- hotel styles --*/
  .info-box img {
    display: block;
    margin-bottom: 12px;
    max-width: 100%;
    width: 100%;
  }

  .hotel-price {
    float: left;
    width: auto;
  }

  .visitor-info .col-sm-6 {
    float: left;
    width: 50%;
  }
}

/* Extra Small Devices, Phones */

@media only screen and (max-width: 480px) {

  /*-- Hero section --*/
  .hero-slider img.logo {
    display: block;
    margin: 0 auto;
    max-width: 70%;
    text-align: center;
  }

  .hero-slider .container {
    /* top: 50%; */
  }

  .video-header .uppercase,
  .countdown-header .uppercase {
    margin-bottom: 24px;
    margin-top: 24px;
  }

  .hero-slider .slides li {
    /* height: 1000px; */
  }

  /*-- color section --*/
  .block-content {
    display: block;
    margin-bottom: 144px;
    overflow: hidden;
  }

  .color-block {
    height: 50%;
    width: 100%;
  }

  .block-right {
    bottom: 0 !important;
    right: 0;
    top: auto !important;
  }

  .color-blocks a {
    float: none;
    width: 100%;
  }

  /*-- video section --*/
  .embedded-video-holder {
    margin-top: 30px;
  }

  .embedded-video-holder iframe {
    height: 250px;
  }

  /*-- hotel styles --*/
  .info-box img {
    display: block;
    margin-bottom: 12px;
    max-width: 100%;
    width: 100%;
  }

  .hotel-price {
    float: left;
    width: auto;
  }

  .visitor-info .col-sm-6 {
    float: none;
    width: 100%;
  }
}

/* Custom, iPhone Retina */

@media only screen and (max-width: 320px) {

  /*-- Hero section --*/
  .hero-slider img.logo {
    display: block;
    margin: 0 auto;
    max-width: 70%;
    text-align: center;
  }

  .hero-slider .container {
    /* top: 50%; */
  }

  .video-header .uppercase,
  .countdown-header .uppercase {
    margin-bottom: 24px;
    margin-top: 24px;
  }

  .hero-slider .slides li {
    /* height: 500px; */
  }

  /*-- color section --*/
  .block-content {
    display: block;
    margin-bottom: 144px;
    overflow: hidden;
  }

  .color-block {
    height: 50%;
    width: 100%;
  }

  .block-right {
    bottom: 0 !important;
    right: 0;
    top: auto !important;
  }

  .color-blocks a {
    float: none;
    width: 100%;
  }

  /*-- video section --*/
  .embedded-video-holder {
    margin-top: 30px;
  }

  .embedded-video-holder iframe {
    height: 250px;
  }

  /*-- hotel styles --*/
  .info-box img {
    display: block;
    margin-bottom: 12px;
    max-width: 100%;
    width: 100%;
  }

  .hotel-price {
    float: left;
    width: auto;
  }

  .visitor-info .col-sm-6 {
    float: none;
    width: 100%;
  }
}

.speakers,
section.homeIntro {
  background-color: #f5f5f5;
}

.main h2 {
  margin-bottom: 20px;
}

.main h4 {
  margin-top: 24px;
  margin-bottom: 12px;
}

.session-description h3 {
  margin: 0.25em 0 0.5em 0;
}

.session-description span a {
  border: none;
  color: #777777 !important;
  font-weight: 600;
}

.session-description ul {
  list-style: disc;
  padding-left: 1em;
  margin-bottom: 1em;
}

.flexcolumn {
  display: flex;
  flex-direction: column;
}

workshops {
  display: flex;
  flex-direction: column;
}

.workshops ul {
  list-style: disc;
  padding-left: 1em;
  margin-bottom: 1em;
}

.workshops ol {
  padding-left: 1em;
  margin-bottom: 1em;
}

.scrollSection {
  position: relative;
}

.scrollSection .flexcolumn {
  position: relative;
  height: 60vh;
  overflow-y: scroll;
}

.scrollSection:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  display: block;
  background-image: linear-gradient(to top, rgba(245, 245, 245, 1), rgba(245, 245, 245, 0.9) 72px, rgba(245, 245, 245, 0) calc(72px + 20vh), rgba(245, 245, 245, 0));
  pointer-events: none;
}

.randomorder {
  visibility: hidden;
}

h2 a,
h2 a:hover {
  color: inherit;
}

.hero h1 {
  color: white;
  font-size: 400%;
}
