/*
 *  Remodal - v1.1.1
 *  Responsive, lightweight, fast, synchronized with CSS animations, fully customizable modal window plugin with declarative configuration and hash tracking.
 *  http://vodkabears.github.io/remodal/
 *
 *  Made by Ilya Makarov
 *  Under MIT License
 */

/* ==========================================================================
   Remodal's necessary styles
   ========================================================================== */

/* Hide scroll bar */

html.remodal-is-locked {
  overflow: hidden;

  -ms-touch-action: none;
  touch-action: none;
}

/* Anti FOUC */

.remodal,
[data-remodal-id] {
  display: none;
}

/* Necessary styles of the overlay */

.remodal-overlay {
  position: fixed;
  z-index: 9999;
  top: -5000px;
  right: -5000px;
  bottom: -5000px;
  left: -5000px;

  display: none;
}

/* Necessary styles of the wrapper */

.remodal-wrapper {
  position: fixed;
  z-index: 10000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;

  display: none;
  overflow: auto;

  text-align: center;

  -webkit-overflow-scrolling: touch;
}

.remodal-wrapper:after {
  display: inline-block;

  height: 100%;
  margin-left: -0.05em;

  content: "";
}

/* Fix iPad, iPhone glitches */

.remodal-overlay,
.remodal-wrapper {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Necessary styles of the modal dialog */

.remodal {
  position: relative;

  outline: none;

  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

.remodal-is-initialized {
  /* Disable Anti-FOUC */
  display: inline-block;
}
/*
 *  Remodal - v1.1.1
 *  Responsive, lightweight, fast, synchronized with CSS animations, fully customizable modal window plugin with declarative configuration and hash tracking.
 *  http://vodkabears.github.io/remodal/
 *
 *  Made by Ilya Makarov
 *  Under MIT License
 */

/* ==========================================================================
   Remodal's default mobile first theme
   ========================================================================== */

/* Default theme styles for the background */

.remodal-bg.remodal-is-opening,
.remodal-bg.remodal-is-opened {
  -webkit-filter: blur(3px);
  filter: blur(3px);
}

/* Default theme styles of the overlay */

.remodal-overlay {
  background: rgba(43, 46, 56, 0.9);
}

.remodal-overlay.remodal-is-opening,
.remodal-overlay.remodal-is-closing {
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.remodal-overlay.remodal-is-opening {
  -webkit-animation-name: remodal-overlay-opening-keyframes;
  animation-name: remodal-overlay-opening-keyframes;
}

.remodal-overlay.remodal-is-closing {
  -webkit-animation-name: remodal-overlay-closing-keyframes;
  animation-name: remodal-overlay-closing-keyframes;
}

/* Default theme styles of the wrapper */

.remodal-wrapper {
  padding: 10px 10px 0;
}

/* Default theme styles of the modal dialog */

.remodal {
  box-sizing: border-box;
  width: 100%;
  margin-bottom: 10px;
  padding: 35px;

  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);

  color: #2b2e38;
  background: #fff;
}

.remodal.remodal-is-opening,
.remodal.remodal-is-closing {
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.remodal.remodal-is-opening {
  -webkit-animation-name: remodal-opening-keyframes;
  animation-name: remodal-opening-keyframes;
}

.remodal.remodal-is-closing {
  -webkit-animation-name: remodal-closing-keyframes;
  animation-name: remodal-closing-keyframes;
}

/* Vertical align of the modal dialog */

.remodal,
.remodal-wrapper:after {
  vertical-align: middle;
}

/* Close button */

.remodal-close {
  position: absolute;
  top: 0;
  left: 0;

  display: block;
  overflow: visible;

  width: 35px;
  height: 35px;
  margin: 0;
  padding: 0;

  cursor: pointer;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
  text-decoration: none;

  color: #95979c;
  border: 0;
  outline: 0;
  background: transparent;
}

.remodal-close:hover,
.remodal-close:focus {
  color: #2b2e38;
}

.remodal-close:before {
  font-family: Arial, "Helvetica CY", "Nimbus Sans L", sans-serif !important;
  font-size: 25px;
  line-height: 35px;

  position: absolute;
  top: 0;
  left: 0;

  display: block;

  width: 35px;

  content: "\00d7";
  text-align: center;
}

/* Dialog buttons */

.remodal-confirm,
.remodal-cancel {
  font: inherit;

  display: inline-block;
  overflow: visible;

  min-width: 110px;
  margin: 0;
  padding: 12px 0;

  cursor: pointer;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;

  border: 0;
  outline: 0;
}

.remodal-confirm {
  color: #fff;
  background: #81c784;
}

.remodal-confirm:hover,
.remodal-confirm:focus {
  background: #66bb6a;
}

.remodal-cancel {
  color: #fff;
  background: #e57373;
}

.remodal-cancel:hover,
.remodal-cancel:focus {
  background: #ef5350;
}

/* Remove inner padding and border in Firefox 4+ for the button tag. */

.remodal-confirm::-moz-focus-inner,
.remodal-cancel::-moz-focus-inner,
.remodal-close::-moz-focus-inner {
  padding: 0;

  border: 0;
}

/* Keyframes
   ========================================================================== */

@-webkit-keyframes remodal-opening-keyframes {
  from {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);

    opacity: 0;
  }
  to {
    -webkit-transform: none;
    transform: none;

    opacity: 1;

    -webkit-filter: blur(0);
    filter: blur(0);
  }
}

@keyframes remodal-opening-keyframes {
  from {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);

    opacity: 0;
  }
  to {
    -webkit-transform: none;
    transform: none;

    opacity: 1;

    -webkit-filter: blur(0);
    filter: blur(0);
  }
}

@-webkit-keyframes remodal-closing-keyframes {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);

    opacity: 1;
  }
  to {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);

    opacity: 0;

    -webkit-filter: blur(0);
    filter: blur(0);
  }
}

@keyframes remodal-closing-keyframes {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);

    opacity: 1;
  }
  to {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);

    opacity: 0;

    -webkit-filter: blur(0);
    filter: blur(0);
  }
}

@-webkit-keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-webkit-keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

/* Media queries
   ========================================================================== */

@media only screen and (min-width: 641px) {
  .remodal {
    max-width: 700px;
  }
}

/* IE8
   ========================================================================== */

.lt-ie9 .remodal-overlay {
  background: #2b2e38;
}

.lt-ie9 .remodal {
  width: 700px;
}
body {
  margin: 0; }

* {
  font-family: "Space Grotesk", serif; }

.secondary-heading {
  font-family: "Montserrat", serif;
  text-transform: uppercase;
  margin: 0;
  font-size: 40px;
  font-weight: 900;
  line-height: 38px;
  text-align: left; }

.tertiary-heading {
  font-family: "Space Grotesk", serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 36px;
  text-align: left; }

.primary-heading {
  font-family: "Space Grotesk", serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  text-align: left; }

.copy-20 {
  font-family: "Space Grotesk", serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
  text-align: left; }

.title-40 {
  font-family: "Montserrat", serif;
  font-size: 40px;
  font-weight: 900;
  line-height: 38px;
  text-align: left; }

.perex-s {
  font-family: "Space Grotesk", serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 36px;
  text-align: left; }

.purple-heading {
  color: #73426f; }

.black-heading {
  color: #000000; }

.white-heading {
  color: #ffffff; }

.remodal-wrapper.remodal-is-opened {
  padding: 0;
  bottom: unset; }

@media only screen and (min-width: 600px) {
  .remodal-wrapper.remodal-is-opened {
    min-height: 100vh;
    height: 100vh; } }

@media only screen and (max-width: 600px) {
  .secondary-heading {
    font-size: 24px;
    line-height: 21.6px; }
  .tertiary-heading {
    font-size: 20px;
    line-height: 24px; }
  .primary-heading {
    font-size: 18px;
    line-height: 21.6px; }
  .copy-20 {
    font-size: 18px;
    line-height: 21.6px; }
  .perex-s {
    font-size: 20px;
    line-height: 24px; } }

@font-face {
  font-family: 'Avenir Next';
  src: url("../fonts/AvenirNext-Heavy.ttf") format("ttf"), url("../fonts/AvenirNext-Heavy.woff2") format("woff2"), url("../fonts/AvenirNext-Heavy.woff") format("woff");
  font-weight: 900;
  font-style: normal; }

@font-face {
  font-family: 'Avenir Next';
  src: url("../fonts/AvenirNext-UltraLight.ttf") format("ttf"), url("../fonts/AvenirNext-UltraLight.woff2") format("woff2"), url("../fonts/AvenirNext-UltraLight.woff") format("woff");
  font-weight: 200;
  font-style: normal; }

@font-face {
  font-family: 'Avenir Next';
  src: url("../fonts/AvenirNext-Regular.ttf") format("ttf"), url("../fonts/AvenirNext-Regular.woff2") format("woff2"), url("../fonts/AvenirNext-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'Avenir Next';
  src: url("../fonts/AvenirNext-BoldItalic.ttf") format("ttf"), url("../fonts/AvenirNext-BoldItalic.woff2") format("woff2"), url("../fonts/AvenirNext-BoldItalic.woff") format("woff");
  font-weight: bold;
  font-style: italic; }

@font-face {
  font-family: 'Avenir Next';
  src: url("../fonts/AvenirNext-Italic.ttf") format("ttf"), url("../fonts/AvenirNext-Italic.woff2") format("woff2"), url("../fonts/AvenirNext-Italic.woff") format("woff");
  font-weight: normal;
  font-style: italic; }

@font-face {
  font-family: 'Avenir Next';
  src: url("../fonts/AvenirNext-HeavyItalic.ttf") format("ttf"), url("../fonts/AvenirNext-HeavyItalic.woff2") format("woff2"), url("../fonts/AvenirNext-HeavyItalic.woff") format("woff");
  font-weight: 900;
  font-style: italic; }

@font-face {
  font-family: 'Avenir Next';
  src: url("../fonts/AvenirNext-DemiBoldItalic.ttf") format("ttf"), url("../fonts/AvenirNext-DemiBoldItalic.woff2") format("woff2"), url("../fonts/AvenirNext-DemiBoldItalic.woff") format("woff");
  font-weight: 600;
  font-style: italic; }

@font-face {
  font-family: 'Avenir Next';
  src: url("../fonts/AvenirNext-Medium.ttf") format("ttf"), url("../fonts/AvenirNext-Medium.woff2") format("woff2"), url("../fonts/AvenirNext-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal; }

@font-face {
  font-family: 'Avenir Next';
  src: url("../fonts/AvenirNext-MediumItalic.ttf") format("ttf"), url("../fonts/AvenirNext-MediumItalic.woff2") format("woff2"), url("../fonts/AvenirNext-MediumItalic.woff") format("woff");
  font-weight: 500;
  font-style: italic; }

@font-face {
  font-family: 'Avenir Next';
  src: url("../fonts/AvenirNext-DemiBold.ttf") format("ttf"), url("../fonts/AvenirNext-DemiBold.woff2") format("woff2"), url("../fonts/AvenirNext-DemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal; }

@font-face {
  font-family: 'Avenir Next';
  src: url("../fonts/AvenirNext-Bold.ttf") format("ttf"), url("../fonts/AvenirNext-Bold.woff2") format("woff2"), url("../fonts/AvenirNext-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal; }

@font-face {
  font-family: 'Avenir Next';
  src: url("../fonts/AvenirNext-UltraLightItalic.ttf") format("ttf"), url("../fonts/AvenirNext-UltraLightItalic.woff2") format("woff2"), url("../fonts/AvenirNext-UltraLightItalic.woff") format("woff");
  font-weight: 200;
  font-style: italic; }

@font-face {
  font-family: 'Space Grotesk';
  src: url("../fonts/SpaceGrotesk-Medium.woff2") format("woff2"), url("../fonts/SpaceGrotesk-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: 'Space Grotesk';
  src: url("../fonts/SpaceGrotesk-Bold.woff2") format("woff2"), url("../fonts/SpaceGrotesk-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: 'Space Grotesk';
  src: url("../fonts/SpaceGrotesk-Light.woff2") format("woff2"), url("../fonts/SpaceGrotesk-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: 'Space Grotesk';
  src: url("../fonts/SpaceGrotesk-SemiBold.woff2") format("woff2"), url("../fonts/SpaceGrotesk-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: 'Space Grotesk';
  src: url("../fonts/SpaceGrotesk-Regular.woff2") format("woff2"), url("../fonts/SpaceGrotesk-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: 'Montserrat';
  src: url("../fonts/Montserrat-Medium.woff2") format("woff2"), url("../fonts/Montserrat-Medium.woff") format("woff"), url("../fonts/Montserrat-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: 'Montserrat';
  src: url("../fonts/Montserrat-Black.woff2") format("woff2"), url("../fonts/Montserrat-Black.woff") format("woff"), url("../fonts/Montserrat-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: 'Montserrat';
  src: url("../fonts/Montserrat-Light.woff2") format("woff2"), url("../fonts/Montserrat-Light.woff") format("woff"), url("../fonts/Montserrat-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: 'Montserrat';
  src: url("../fonts/Montserrat-ExtraLightItalic.woff2") format("woff2"), url("../fonts/Montserrat-ExtraLightItalic.woff") format("woff"), url("../fonts/Montserrat-ExtraLightItalic.ttf") format("truetype");
  font-weight: 200;
  font-style: italic;
  font-display: swap; }

@font-face {
  font-family: 'Montserrat';
  src: url("../fonts/Montserrat-ExtraBold.woff2") format("woff2"), url("../fonts/Montserrat-ExtraBold.woff") format("woff"), url("../fonts/Montserrat-ExtraBold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: 'Montserrat';
  src: url("../fonts/Montserrat-LightItalic.woff2") format("woff2"), url("../fonts/Montserrat-LightItalic.woff") format("woff"), url("../fonts/Montserrat-LightItalic.ttf") format("truetype");
  font-weight: 300;
  font-style: italic;
  font-display: swap; }

@font-face {
  font-family: 'Montserrat';
  src: url("../fonts/Montserrat-ExtraBoldItalic.woff2") format("woff2"), url("../fonts/Montserrat-ExtraBoldItalic.woff") format("woff"), url("../fonts/Montserrat-ExtraBoldItalic.ttf") format("truetype");
  font-weight: bold;
  font-style: italic;
  font-display: swap; }

@font-face {
  font-family: 'Montserrat';
  src: url("../fonts/Montserrat-BoldItalic.woff2") format("woff2"), url("../fonts/Montserrat-BoldItalic.woff") format("woff"), url("../fonts/Montserrat-BoldItalic.ttf") format("truetype");
  font-weight: bold;
  font-style: italic;
  font-display: swap; }

@font-face {
  font-family: 'Montserrat';
  src: url("../fonts/Montserrat-BlackItalic.woff2") format("woff2"), url("../fonts/Montserrat-BlackItalic.woff") format("woff"), url("../fonts/Montserrat-BlackItalic.ttf") format("truetype");
  font-weight: 900;
  font-style: italic;
  font-display: swap; }

@font-face {
  font-family: 'Montserrat';
  src: url("../fonts/Montserrat-ExtraLight.woff2") format("woff2"), url("../fonts/Montserrat-ExtraLight.woff") format("woff"), url("../fonts/Montserrat-ExtraLight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: 'Montserrat';
  src: url("../fonts/Montserrat-Italic.woff2") format("woff2"), url("../fonts/Montserrat-Italic.woff") format("woff"), url("../fonts/Montserrat-Italic.ttf") format("truetype");
  font-weight: normal;
  font-style: italic;
  font-display: swap; }

@font-face {
  font-family: 'Montserrat';
  src: url("../fonts/Montserrat-Bold.woff2") format("woff2"), url("../fonts/Montserrat-Bold.woff") format("woff"), url("../fonts/Montserrat-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: 'Montserrat';
  src: url("../fonts/Montserrat-SemiBold.woff2") format("woff2"), url("../fonts/Montserrat-SemiBold.woff") format("woff"), url("../fonts/Montserrat-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: 'Montserrat';
  src: url("../fonts/Montserrat-SemiBoldItalic.woff2") format("woff2"), url("../fonts/Montserrat-SemiBoldItalic.woff") format("woff"), url("../fonts/Montserrat-SemiBoldItalic.ttf") format("truetype");
  font-weight: 600;
  font-style: italic;
  font-display: swap; }

@font-face {
  font-family: 'Montserrat';
  src: url("../fonts/Montserrat-Regular.woff2") format("woff2"), url("../fonts/Montserrat-Regular.woff") format("woff"), url("../fonts/Montserrat-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: 'Montserrat';
  src: url("../fonts/Montserrat-ThinItalic.woff2") format("woff2"), url("../fonts/Montserrat-ThinItalic.woff") format("woff"), url("../fonts/Montserrat-ThinItalic.ttf") format("truetype");
  font-weight: 100;
  font-style: italic;
  font-display: swap; }

@font-face {
  font-family: 'Montserrat';
  src: url("../fonts/Montserrat-MediumItalic.woff2") format("woff2"), url("../fonts/Montserrat-MediumItalic.woff") format("woff"), url("../fonts/Montserrat-MediumItalic.ttf") format("truetype");
  font-weight: 500;
  font-style: italic;
  font-display: swap; }

@font-face {
  font-family: 'Montserrat';
  src: url("../fonts/Montserrat-Thin.woff2") format("woff2"), url("../fonts/Montserrat-Thin.woff") format("woff"), url("../fonts/Montserrat-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: 'Avenir Next';
  src: url("../fonts/AvenirNext-Heavy.ttf") format("ttf"), url("../fonts/AvenirNext-Heavy.woff2") format("woff2"), url("../fonts/AvenirNext-Heavy.woff") format("woff");
  font-weight: 900;
  font-style: normal; }

@font-face {
  font-family: 'Avenir Next';
  src: url("../fonts/AvenirNext-UltraLight.ttf") format("ttf"), url("../fonts/AvenirNext-UltraLight.woff2") format("woff2"), url("../fonts/AvenirNext-UltraLight.woff") format("woff");
  font-weight: 200;
  font-style: normal; }

@font-face {
  font-family: 'Avenir Next';
  src: url("../fonts/AvenirNext-Regular.ttf") format("ttf"), url("../fonts/AvenirNext-Regular.woff2") format("woff2"), url("../fonts/AvenirNext-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'Avenir Next';
  src: url("../fonts/AvenirNext-BoldItalic.ttf") format("ttf"), url("../fonts/AvenirNext-BoldItalic.woff2") format("woff2"), url("../fonts/AvenirNext-BoldItalic.woff") format("woff");
  font-weight: bold;
  font-style: italic; }

@font-face {
  font-family: 'Avenir Next';
  src: url("../fonts/AvenirNext-Italic.ttf") format("ttf"), url("../fonts/AvenirNext-Italic.woff2") format("woff2"), url("../fonts/AvenirNext-Italic.woff") format("woff");
  font-weight: normal;
  font-style: italic; }

@font-face {
  font-family: 'Avenir Next';
  src: url("../fonts/AvenirNext-HeavyItalic.ttf") format("ttf"), url("../fonts/AvenirNext-HeavyItalic.woff2") format("woff2"), url("../fonts/AvenirNext-HeavyItalic.woff") format("woff");
  font-weight: 900;
  font-style: italic; }

@font-face {
  font-family: 'Avenir Next';
  src: url("../fonts/AvenirNext-DemiBoldItalic.ttf") format("ttf"), url("../fonts/AvenirNext-DemiBoldItalic.woff2") format("woff2"), url("../fonts/AvenirNext-DemiBoldItalic.woff") format("woff");
  font-weight: 600;
  font-style: italic; }

@font-face {
  font-family: 'Avenir Next';
  src: url("../fonts/AvenirNext-Medium.ttf") format("ttf"), url("../fonts/AvenirNext-Medium.woff2") format("woff2"), url("../fonts/AvenirNext-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal; }

@font-face {
  font-family: 'Avenir Next';
  src: url("../fonts/AvenirNext-MediumItalic.ttf") format("ttf"), url("../fonts/AvenirNext-MediumItalic.woff2") format("woff2"), url("../fonts/AvenirNext-MediumItalic.woff") format("woff");
  font-weight: 500;
  font-style: italic; }

@font-face {
  font-family: 'Avenir Next';
  src: url("../fonts/AvenirNext-DemiBold.ttf") format("ttf"), url("../fonts/AvenirNext-DemiBold.woff2") format("woff2"), url("../fonts/AvenirNext-DemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal; }

@font-face {
  font-family: 'Avenir Next';
  src: url("../fonts/AvenirNext-Bold.ttf") format("ttf"), url("../fonts/AvenirNext-Bold.woff2") format("woff2"), url("../fonts/AvenirNext-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal; }

@font-face {
  font-family: 'Avenir Next';
  src: url("../fonts/AvenirNext-UltraLightItalic.ttf") format("ttf"), url("../fonts/AvenirNext-UltraLightItalic.woff2") format("woff2"), url("../fonts/AvenirNext-UltraLightItalic.woff") format("woff");
  font-weight: 200;
  font-style: italic; }

@font-face {
  font-family: 'Space Grotesk';
  src: url("../fonts/SpaceGrotesk-Medium.woff2") format("woff2"), url("../fonts/SpaceGrotesk-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: 'Space Grotesk';
  src: url("../fonts/SpaceGrotesk-Bold.woff2") format("woff2"), url("../fonts/SpaceGrotesk-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: 'Space Grotesk';
  src: url("../fonts/SpaceGrotesk-Light.woff2") format("woff2"), url("../fonts/SpaceGrotesk-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: 'Space Grotesk';
  src: url("../fonts/SpaceGrotesk-SemiBold.woff2") format("woff2"), url("../fonts/SpaceGrotesk-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: 'Space Grotesk';
  src: url("../fonts/SpaceGrotesk-Regular.woff2") format("woff2"), url("../fonts/SpaceGrotesk-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: 'Montserrat';
  src: url("../fonts/Montserrat-Medium.woff2") format("woff2"), url("../fonts/Montserrat-Medium.woff") format("woff"), url("../fonts/Montserrat-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: 'Montserrat';
  src: url("../fonts/Montserrat-Black.woff2") format("woff2"), url("../fonts/Montserrat-Black.woff") format("woff"), url("../fonts/Montserrat-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: 'Montserrat';
  src: url("../fonts/Montserrat-Light.woff2") format("woff2"), url("../fonts/Montserrat-Light.woff") format("woff"), url("../fonts/Montserrat-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: 'Montserrat';
  src: url("../fonts/Montserrat-ExtraLightItalic.woff2") format("woff2"), url("../fonts/Montserrat-ExtraLightItalic.woff") format("woff"), url("../fonts/Montserrat-ExtraLightItalic.ttf") format("truetype");
  font-weight: 200;
  font-style: italic;
  font-display: swap; }

@font-face {
  font-family: 'Montserrat';
  src: url("../fonts/Montserrat-ExtraBold.woff2") format("woff2"), url("../fonts/Montserrat-ExtraBold.woff") format("woff"), url("../fonts/Montserrat-ExtraBold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: 'Montserrat';
  src: url("../fonts/Montserrat-LightItalic.woff2") format("woff2"), url("../fonts/Montserrat-LightItalic.woff") format("woff"), url("../fonts/Montserrat-LightItalic.ttf") format("truetype");
  font-weight: 300;
  font-style: italic;
  font-display: swap; }

@font-face {
  font-family: 'Montserrat';
  src: url("../fonts/Montserrat-ExtraBoldItalic.woff2") format("woff2"), url("../fonts/Montserrat-ExtraBoldItalic.woff") format("woff"), url("../fonts/Montserrat-ExtraBoldItalic.ttf") format("truetype");
  font-weight: bold;
  font-style: italic;
  font-display: swap; }

@font-face {
  font-family: 'Montserrat';
  src: url("../fonts/Montserrat-BoldItalic.woff2") format("woff2"), url("../fonts/Montserrat-BoldItalic.woff") format("woff"), url("../fonts/Montserrat-BoldItalic.ttf") format("truetype");
  font-weight: bold;
  font-style: italic;
  font-display: swap; }

@font-face {
  font-family: 'Montserrat';
  src: url("../fonts/Montserrat-BlackItalic.woff2") format("woff2"), url("../fonts/Montserrat-BlackItalic.woff") format("woff"), url("../fonts/Montserrat-BlackItalic.ttf") format("truetype");
  font-weight: 900;
  font-style: italic;
  font-display: swap; }

@font-face {
  font-family: 'Montserrat';
  src: url("../fonts/Montserrat-ExtraLight.woff2") format("woff2"), url("../fonts/Montserrat-ExtraLight.woff") format("woff"), url("../fonts/Montserrat-ExtraLight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: 'Montserrat';
  src: url("../fonts/Montserrat-Italic.woff2") format("woff2"), url("../fonts/Montserrat-Italic.woff") format("woff"), url("../fonts/Montserrat-Italic.ttf") format("truetype");
  font-weight: normal;
  font-style: italic;
  font-display: swap; }

@font-face {
  font-family: 'Montserrat';
  src: url("../fonts/Montserrat-Bold.woff2") format("woff2"), url("../fonts/Montserrat-Bold.woff") format("woff"), url("../fonts/Montserrat-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: 'Montserrat';
  src: url("../fonts/Montserrat-SemiBold.woff2") format("woff2"), url("../fonts/Montserrat-SemiBold.woff") format("woff"), url("../fonts/Montserrat-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: 'Montserrat';
  src: url("../fonts/Montserrat-SemiBoldItalic.woff2") format("woff2"), url("../fonts/Montserrat-SemiBoldItalic.woff") format("woff"), url("../fonts/Montserrat-SemiBoldItalic.ttf") format("truetype");
  font-weight: 600;
  font-style: italic;
  font-display: swap; }

@font-face {
  font-family: 'Montserrat';
  src: url("../fonts/Montserrat-Regular.woff2") format("woff2"), url("../fonts/Montserrat-Regular.woff") format("woff"), url("../fonts/Montserrat-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: 'Montserrat';
  src: url("../fonts/Montserrat-ThinItalic.woff2") format("woff2"), url("../fonts/Montserrat-ThinItalic.woff") format("woff"), url("../fonts/Montserrat-ThinItalic.ttf") format("truetype");
  font-weight: 100;
  font-style: italic;
  font-display: swap; }

@font-face {
  font-family: 'Montserrat';
  src: url("../fonts/Montserrat-MediumItalic.woff2") format("woff2"), url("../fonts/Montserrat-MediumItalic.woff") format("woff"), url("../fonts/Montserrat-MediumItalic.ttf") format("truetype");
  font-weight: 500;
  font-style: italic;
  font-display: swap; }

@font-face {
  font-family: 'Montserrat';
  src: url("../fonts/Montserrat-Thin.woff2") format("woff2"), url("../fonts/Montserrat-Thin.woff") format("woff"), url("../fonts/Montserrat-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
  font-display: swap; }

.speaker-modal {
  width: auto;
  max-width: 100vw;
  border-radius: 8px;
  padding: 0;
  background-color: #FFFAF7;
  text-align: left;
  color: #000000;
  position: relative;
  overflow-y: auto;
  height: calc(100svh + 24px); }
  .speaker-modal .modal-close {
    position: absolute;
    align-self: flex-end;
    width: 24px;
    margin: 24px 16px;
    right: 0;
    z-index: 20;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer; }
  .speaker-modal .modal-content {
    display: grid;
    grid-template-columns: 100%;
    margin-top: 24px;
    flex: 1; }
    .speaker-modal .modal-content .speaker-container {
      position: relative;
      top: -24px;
      display: grid;
      grid-template-columns: 100%;
      background-color: #FFEFE5; }
      .speaker-modal .modal-content .speaker-container .speaker-photo {
        width: 100%; }
      .speaker-modal .modal-content .speaker-container .speaker-description {
        display: flex;
        flex-direction: column;
        gap: 24px;
        padding: 40px;
        color: #632B5E;
        text-align: left; }
        .speaker-modal .modal-content .speaker-container .speaker-description .speaker-company-container .speaker-company {
          max-height: 25px; }
        .speaker-modal .modal-content .speaker-container .speaker-description .speaker-name {
          font-family: "Montserrat", serif;
          font-size: 24px;
          font-weight: 800;
          line-height: 21.6px;
          text-align: left;
          margin: 0;
          text-transform: uppercase; }
        .speaker-modal .modal-content .speaker-container .speaker-description .speaker-about {
          font-family: "Space Grotesk", serif;
          font-size: 18px;
          font-weight: 400;
          line-height: 21.6px; }
          .speaker-modal .modal-content .speaker-container .speaker-description .speaker-about a {
            color: #FF5F00;
            font-weight: 700; }
        .speaker-modal .modal-content .speaker-container .speaker-description .socials {
          display: flex;
          flex-direction: row;
          align-items: flex-end;
          flex: 1; }
          .speaker-modal .modal-content .speaker-container .speaker-description .socials .social-icon {
            display: flex;
            margin: 0 10px; }
            .speaker-modal .modal-content .speaker-container .speaker-description .socials .social-icon:first-child {
              margin-left: 0; }
            .speaker-modal .modal-content .speaker-container .speaker-description .socials .social-icon:last-child {
              margin-right: 0; }
            .speaker-modal .modal-content .speaker-container .speaker-description .socials .social-icon .icon {
              height: 27px; }
        .speaker-modal .modal-content .speaker-container .speaker-description .multi-socials {
          display: flex;
          flex-direction: column;
          gap: 24px; }
          .speaker-modal .modal-content .speaker-container .speaker-description .multi-socials .speaker-socials {
            display: flex;
            flex-direction: column;
            gap: 12px; }
            .speaker-modal .modal-content .speaker-container .speaker-description .multi-socials .speaker-socials .speaker-socials-name {
              font-family: "Montserrat", serif;
              font-size: 13px;
              font-weight: 900;
              line-height: 11.7px;
              text-transform: uppercase; }
            .speaker-modal .modal-content .speaker-container .speaker-description .multi-socials .speaker-socials .icons {
              display: flex;
              flex-direction: row;
              align-items: flex-end;
              flex: 1; }
              .speaker-modal .modal-content .speaker-container .speaker-description .multi-socials .speaker-socials .icons .social-icon {
                display: flex;
                margin: 0 10px; }
                .speaker-modal .modal-content .speaker-container .speaker-description .multi-socials .speaker-socials .icons .social-icon:first-child {
                  margin-left: 0; }
                .speaker-modal .modal-content .speaker-container .speaker-description .multi-socials .speaker-socials .icons .social-icon:last-child {
                  margin-right: 0; }
                .speaker-modal .modal-content .speaker-container .speaker-description .multi-socials .speaker-socials .icons .social-icon .icon {
                  height: 24px; }
    .speaker-modal .modal-content .talk-container {
      display: flex;
      flex-direction: column;
      color: #632B5E;
      padding: 40px;
      font-family: "Space Grotesk", serif;
      text-align: left;
      gap: 32px; }
      .speaker-modal .modal-content .talk-container .top-line {
        display: flex;
        flex-direction: column;
        gap: 24px; }
        .speaker-modal .modal-content .talk-container .top-line .info-container {
          display: flex;
          flex-direction: row;
          gap: 16px;
          flex-wrap: wrap;
          align-items: baseline;
          font-weight: 600;
          font-size: 20px;
          line-height: 24px;
          font-family: "Space Grotesk", serif; }
      .speaker-modal .modal-content .talk-container .bottom-line {
        display: flex;
        flex-direction: row;
        align-items: center;
        margin-top: 40px;
        width: 100%;
        justify-content: center; }
        .speaker-modal .modal-content .talk-container .bottom-line .button-container {
          display: flex;
          gap: 16px;
          justify-content: center; }
        .speaker-modal .modal-content .talk-container .bottom-line .ticket-buttons {
          display: flex;
          justify-content: center;
          text-align: center;
          flex-direction: column;
          gap: 16px; }
          .speaker-modal .modal-content .talk-container .bottom-line .ticket-buttons .sold-out-btn {
            background-color: #FF9F66;
            border: none; }
        .speaker-modal .modal-content .talk-container .bottom-line .close-button {
          display: flex;
          position: absolute;
          right: 24px;
          align-items: center;
          max-width: 92px;
          flex-direction: row;
          gap: 15px;
          cursor: pointer; }
          .speaker-modal .modal-content .talk-container .bottom-line .close-button .button-text {
            font-family: "Montserrat", serif;
            text-transform: uppercase;
            font-weight: 800;
            font-size: 16px;
            line-height: 19.2px;
            color: #FF5F00; }
          .speaker-modal .modal-content .talk-container .bottom-line .close-button .icon {
            width: 14px; }
      .speaker-modal .modal-content .talk-container .talk-name {
        font-size: 30px;
        font-weight: 600;
        line-height: 36px;
        text-align: left; }
      .speaker-modal .modal-content .talk-container .talk-subtitle {
        font-size: 18px;
        font-weight: 400;
        line-height: 30px; }
      .speaker-modal .modal-content .talk-container .topics-container {
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        align-items: center;
        gap: 12px; }
        .speaker-modal .modal-content .talk-container .topics-container .topic-badge {
          border: 2px solid #632B5E;
          padding: 12px;
          font-family: "Montserrat", serif;
          font-size: 12px;
          font-weight: 900;
          line-height: 14.63px; }
      .speaker-modal .modal-content .talk-container .talk-ordered-list {
        list-style: none;
        padding: 0; }
        .speaker-modal .modal-content .talk-container .talk-ordered-list .list-item p {
          opacity: 0.6;
          font-size: 18px;
          font-weight: 400;
          line-height: 30px;
          margin: 4px 0; }
    .speaker-modal .modal-content .talk-announcement-container {
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center; }
      .speaker-modal .modal-content .talk-announcement-container .topics-container {
        margin-bottom: 16px; }
      .speaker-modal .modal-content .talk-announcement-container .title {
        margin-top: 0;
        font-size: 24px;
        font-weight: 700;
        letter-spacing: 2.5px; }
    .speaker-modal .modal-content .tip {
      display: none; }

@media only screen and (min-width: 600px) {
  .speaker-modal {
    min-height: unset;
    height: unset;
    margin-bottom: 0; }
    .speaker-modal .modal-close {
      right: 0;
      margin-top: 16px; }
    .speaker-modal .modal-content .speaker-container {
      grid-template-columns: 350px auto;
      max-height: 310px; }
      .speaker-modal .modal-content .speaker-container .speaker-photo {
        max-width: 310px;
        max-height: 310px; }
      .speaker-modal .modal-content .speaker-container .speaker-description .multi-socials {
        flex-direction: row;
        gap: 40px; }
    .speaker-modal .modal-content .talk-container {
      padding: 12px 24px 32px; }
      .speaker-modal .modal-content .talk-container .bottom-line .ticket-buttons {
        flex-direction: row; } }

@media only screen and (min-width: 768px) {
  .speaker-modal {
    max-width: 1055px;
    min-width: 1000px; }
    .speaker-modal .modal-content .speaker-container {
      max-height: 350px; }
      .speaker-modal .modal-content .speaker-container .speaker-photo {
        max-width: 350px;
        max-height: 350px; }
      .speaker-modal .modal-content .speaker-container .speaker-description {
        padding: 40px; }
    .speaker-modal .modal-content .talk-container .top-line .info-container .special-requirements {
      display: inline;
      white-space: normal;
      word-break: break-word;
      flex: 1;
      min-width: 0; } }

@media only screen and (min-width: 1024px) {
  .speaker-modal .modal-content .tip {
    max-width: 1000px;
    display: block;
    text-align: center;
    font-size: 13px;
    margin-top: 0; } }

.termsfeed-com---reset {
  background-color: unset; }

.termsfeed-com---palette-dark.termsfeed-com---nb {
  background-color: unset; }

.termsfeed-com---palette-dark .cc-nb-main-container {
  padding: 2rem;
  backdrop-filter: blur(10px);
  background-color: rgba(48, 22, 46, 0.95); }
  .termsfeed-com---palette-dark .cc-nb-main-container .cc-nb-buttons-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 600px; }
    .termsfeed-com---palette-dark .cc-nb-main-container .cc-nb-buttons-container .cc-nb-okagree {
      width: calc(50% - 4px);
      background: #FF5F00;
      color: white;
      font-size: 18px;
      box-shadow: 0 0 16px rgba(90, 169, 169, 0.3); }
    .termsfeed-com---palette-dark .cc-nb-main-container .cc-nb-buttons-container .cc-nb-reject {
      width: calc(50% - 4px);
      background-color: #f6f6f9;
      font-size: 18px; }
    .termsfeed-com---palette-dark .cc-nb-main-container .cc-nb-buttons-container .cc-nb-changep {
      background-color: unset;
      color: #f6f6f9;
      text-decoration: underline;
      width: 100%;
      font-size: 18px; }

.termsfeed-com---nb-simple {
  max-width: 100%;
  width: 100%; }

@media only screen and (min-width: 740px) {
  .termsfeed-com---palette-dark .cc-nb-main-container {
    padding: 2rem 4rem; } }

@media only screen and (min-width: 1440px) {
  .termsfeed-com---palette-dark .cc-nb-main-container {
    padding: 2rem 10rem; }
  .termsfeed-com---palette-dark .cc-nb-main-container .cc-nb-buttons-container {
    max-width: 800px; }
    .termsfeed-com---palette-dark .cc-nb-main-container .cc-nb-buttons-container .cc-nb-okagree, .termsfeed-com---palette-dark .cc-nb-main-container .cc-nb-buttons-container .cc-nb-reject, .termsfeed-com---palette-dark .cc-nb-main-container .cc-nb-buttons-container .cc-nb-changep {
      width: calc(33% - 4px); } }

.break-span-event {
  top: 0;
  left: 0;
  right: 0;
  position: absolute;
  z-index: 1000;
  background: #FFE0CC;
  padding: 16px;
  border-radius: 8px; }
  .break-span-event .mobile-only {
    display: none; }
  .break-span-event .hidden {
    display: inherit !important; }
  .break-span-event .hall {
    grid-column-start: inherit !important; }
  .break-span-event.coffee-break-event {
    top: -60px; }
  .break-span-event.lunch-event {
    top: -60px; }
  .break-span-event .break-span-event-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    justify-content: center;
    height: 100%; }
    .break-span-event .break-span-event-content .icon {
      width: 32px; }
    .break-span-event .break-span-event-content .event-title {
      font-family: "Montserrat", serif;
      font-size: 24px;
      font-weight: 900;
      line-height: 21.6px;
      text-transform: uppercase;
      color: #632B5E; }
    .break-span-event .break-span-event-content .event-time, .break-span-event .break-span-event-content .note {
      font-family: "Space Grotesk", serif;
      font-size: 18px;
      font-weight: 400;
      line-height: 21.6px;
      color: #632B5E; }

.multi-speaker-modal {
  border-radius: 8px;
  background-color: #FFFAF7;
  max-width: 1055px;
  padding: 40px;
  color: #632B5E;
  position: relative;
  overflow-y: auto;
  height: calc(100svh); }
  .multi-speaker-modal .content {
    display: flex;
    flex-direction: column;
    gap: 32px; }
  .multi-speaker-modal .header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px; }
    .multi-speaker-modal .header .title {
      font-weight: 800;
      font-size: 32px;
      line-height: 95%;
      font-family: 'Montserrat', sans-serif;
      text-transform: uppercase; }
    .multi-speaker-modal .header .topics {
      display: flex;
      flex-wrap: wrap;
      flex-direction: row;
      align-items: center;
      gap: 12px; }
      .multi-speaker-modal .header .topics .topic-badge {
        border: 2px solid #632B5E;
        padding: 12px;
        font-family: "Montserrat", serif;
        font-size: 12px;
        font-weight: 900;
        line-height: 14.63px; }
  .multi-speaker-modal .speakers .body {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
    padding-top: 32px;
    padding-bottom: 32px; }
    .multi-speaker-modal .speakers .body .content {
      max-width: 767px;
      display: flex;
      flex-direction: column;
      gap: 24px;
      text-align: left; }
      .multi-speaker-modal .speakers .body .content .title {
        font-weight: 600;
        font-size: 30px;
        line-height: 120%; }
      .multi-speaker-modal .speakers .body .content .speaker {
        font-weight: 600;
        font-size: 20px;
        line-height: 120%; }
    .multi-speaker-modal .speakers .body .btn-container {
      display: flex;
      flex-direction: column;
      align-items: center; }
  .multi-speaker-modal .close-btn-container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    width: 100%;
    height: 91px; }
    .multi-speaker-modal .close-btn-container .close-but {
      display: flex;
      position: absolute;
      right: 24px;
      align-items: center;
      max-width: 92px;
      flex-direction: row;
      gap: 15px;
      cursor: pointer; }
      .multi-speaker-modal .close-btn-container .close-but .button-text {
        font-family: "Montserrat", serif;
        text-transform: uppercase;
        font-weight: 800;
        font-size: 16px;
        line-height: 19.2px;
        color: #FF5F00; }
      .multi-speaker-modal .close-btn-container .close-but .icon {
        width: 14px; }

.basic-modal {
  width: auto;
  max-width: 313px;
  border-radius: 8px;
  background-color: #FFFAF7;
  text-align: left;
  position: relative;
  overflow-y: auto; }
  .basic-modal .content {
    display: flex;
    flex-direction: column;
    gap: 32px; }
    .basic-modal .content .btn-container {
      display: flex;
      align-items: center;
      justify-content: center; }
      .basic-modal .content .btn-container .primary-modal-close-btn {
        cursor: pointer;
        display: flex;
        align-items: center;
        max-width: 136px;
        justify-content: center;
        background-color: #FF5F00;
        text-decoration: none;
        text-transform: uppercase;
        font-family: "Montserrat", serif;
        padding: 20px;
        font-weight: 800;
        font-size: 16px;
        line-height: 19.2px;
        color: #FFFFFF; }
    .basic-modal .content .modal-text {
      font-size: 24px;
      font-weight: 800;
      font-family: 'Montserrat', sans-serif;
      text-transform: uppercase;
      line-height: 21.6px;
      color: #6F356A; }

.schedule-section {
  background-color: #FFEFE5;
  background-size: auto 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center; }

.schedule-container {
  width: 100vw;
  text-align: center;
  padding-top: 67px;
  margin: 0 16px; }
  .schedule-container .header {
    display: flex;
    flex-direction: column;
    gap: 111px; }
    .schedule-container .header .top-line {
      padding: 0;
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      align-items: center; }
      .schedule-container .header .top-line .logo {
        height: 54px; }
      .schedule-container .header .top-line .back-to-homepage-button {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 15px;
        text-decoration: none;
        text-transform: uppercase;
        font-family: "Montserrat", serif;
        font-size: 20px;
        font-weight: 900;
        line-height: 24.38px;
        color: #FF5F00; }
        .schedule-container .header .top-line .back-to-homepage-button .icon {
          height: 14px; }
        .schedule-container .header .top-line .back-to-homepage-button .button-text {
          text-decoration: none;
          font-family: "Montserrat", serif; }
    .schedule-container .header .bottom-line {
      margin: 0 0 32px;
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      align-items: center; }
      .schedule-container .header .bottom-line .secondary-heading {
        align-items: center;
        color: #632B5E; }
      .schedule-container .header .bottom-line .buttons-container {
        display: flex;
        flex-direction: row;
        gap: 0;
        font-family: "Montserrat", serif; }
        .schedule-container .header .bottom-line .buttons-container .day-tab-button {
          padding: 20px;
          text-transform: uppercase;
          text-decoration: none;
          font-family: "Montserrat", serif;
          font-size: 16px;
          font-weight: 900;
          line-height: 14.4px;
          text-align: center; }

.primary-button {
  color: #FFFAF7;
  font-family: "Montserrat", serif;
  background-color: #FF5F00;
  border: 2px solid #FF5F00; }

.button-text {
  font-family: "Montserrat", serif; }

.secondary-button {
  color: #FF5F00;
  border: 2px solid #FF5F00; }

.full-span-event {
  grid-column: span 3;
  background: #FFE0CC;
  text-align: center;
  padding: 16px;
  border-radius: 8px; }
  .full-span-event .full-span-event-content {
    margin-top: 135px;
    margin-bottom: 135px; }
    .full-span-event .full-span-event-content .event-title {
      font-family: "Montserrat", serif;
      font-size: 24px;
      font-weight: 900;
      line-height: 21.6px;
      text-transform: uppercase;
      color: #632B5E; }
    .full-span-event .full-span-event-content .event-time {
      font-family: "Space Grotesk", serif;
      font-size: 18px;
      font-weight: 400;
      line-height: 21.6px;
      color: #632B5E; }

.schedule {
  display: grid;
  padding-top: 24px;
  grid-template-columns: 1fr 1049px 1fr;
  grid-template-rows: auto;
  /* First row can have auto height or a specific value */
  grid-auto-rows: 220px;
  --gap: 2rem;
  --line-offset: calc(var(--gap) / 2);
  --line-thickness: 1px;
  --line-color: #632B5E;
  overflow: hidden;
  gap: var(--gap); }

@media only screen and (min-width: 1440px) {
  .schedule {
    grid-template-columns: 1fr 1289px 1fr; } }

.schedule > :nth-child(-n + X) {
  /* X is the number of items in the first row */
  height: auto;
  /* Or any other value */ }

.hall {
  display: flex;
  flex-direction: column;
  width: 100%;
  overflow: hidden; }

.hidden {
  display: none !important; }

.event-block {
  grid-row: span 1;
  /* Default, overridden dynamically */ }

.grid__item {
  position: relative; }

.time-label {
  font-family: "Space Grotesk", serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  text-align: left;
  color: #6F356A;
  grid-column: 1; }

.grid__item::before,
.grid__item::after {
  content: '';
  position: absolute;
  background-color: var(--line-color);
  z-index: 1; }

.grid__item.navigation::before,
.grid__item.navigation::after {
  margin-left: -0.2rem; }

.grid__item::after {
  inline-size: 100vw;
  block-size: var(--line-thickness);
  inset-inline-start: 0;
  inset-block-start: calc(var(--line-offset) * -1); }

.time-slot {
  display: contents; }

.halls {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 1rem;
  justify-items: center;
  max-width: 1200px; }

.time-label .nav-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
  height: 100%; }
  .time-label .nav-wrapper .nav-icon {
    height: 20px; }

.name-wrapper {
  display: flex;
  align-items: center; }
  .name-wrapper .hall-name {
    font-family: "Montserrat", serif;
    font-size: 20px;
    font-weight: 900;
    line-height: 18px;
    text-align: center;
    text-transform: uppercase;
    color: #632B5E; }

.event {
  position: relative;
  z-index: 1000 !important;
  max-width: 310px;
  border-radius: 8px;
  padding: 20px 16px;
  box-sizing: border-box;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between; }
  .event .info-container {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 12px; }
  .event .event-title {
    font-family: "Montserrat", serif;
    text-transform: uppercase;
    font-size: 24px;
    line-height: 21.6px;
    text-align: left;
    font-weight: 900;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis; }
  .event .subtext {
    font-family: "Space Grotesk", serif;
    font-size: 18px;
    line-height: 21.6px;
    text-align: left;
    font-weight: 400; }
  .event .btns-container {
    display: flex;
    flex-direction: row;
    gap: 12px;
    justify-content: flex-start;
    margin-top: 16px; }
    .event .btns-container .sold-out {
      background-color: #FF9F66;
      border: 2px solid #FF9F66;
      cursor: default; }
  .event .hall-2-badge {
    border: 2px solid #632B5E; }
  .event .topics {
    margin-top: 8px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px; }
    .event .topics .topic-badge {
      border: 2px solid #632B5E;
      padding: 12px;
      font-family: "Montserrat", serif;
      font-size: 12px;
      font-weight: 900;
      line-height: 14.63px; }
      .event .topics .topic-badge .hall-1-badge {
        border: 2px solid #FFFAF7 !important; }
      .event .topics .topic-badge .workshop-hall-badge {
        border: 2px solid #FFFAF7; }

.hall-1-badge {
  border: 2px solid #FFFAF7 !important; }

.workshop-hall-badge {
  border: 2px solid #FFFAF7; }

.venue-multievent {
  font-weight: 400;
  font-size: 18px;
  line-height: 120%; }

.multi-event-block {
  position: relative;
  z-index: 999 !important;
  grid-row: span 1;
  color: #632B5E;
  background-color: #FFFAF7;
  max-width: 310px;
  border-radius: 8px;
  padding: 20px 16px;
  box-sizing: border-box;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between; }
  .multi-event-block hr {
    border: none;
    border-top: 1px solid #632B5E;
    margin: 4px 0; }
  .multi-event-block .info-container {
    max-width: 278px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 16px; }
    .multi-event-block .info-container .subtalk {
      display: flex;
      flex-direction: column;
      gap: 12px; }
  .multi-event-block .event-title {
    font-family: "Montserrat", serif;
    text-transform: uppercase;
    font-size: 24px;
    line-height: 21.6px;
    text-align: left;
    font-weight: 900;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis; }
  .multi-event-block .subtext {
    font-family: "Space Grotesk", serif;
    font-size: 18px;
    line-height: 21.6px;
    text-align: left;
    font-weight: 400; }
  .multi-event-block .btns-container {
    display: flex;
    flex-direction: row;
    gap: 12px;
    justify-content: flex-start;
    margin-top: 16px; }
  .multi-event-block .topics {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px; }
    .multi-event-block .topics .topic-badge {
      border: 2px solid #632B5E;
      padding: 12px;
      font-family: "Montserrat", serif;
      font-size: 12px;
      font-weight: 900;
      line-height: 14.63px;
      text-transform: uppercase; }
  .multi-event-block .subtitle {
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 48px; }
  .multi-event-block .subspeaker {
    font-weight: 400;
    font-size: 16px;
    line-height: 19.2px; }

.event-title {
  font-family: "Montserrat", serif;
  text-transform: uppercase;
  font-size: 24px;
  line-height: 21.6px;
  text-align: center;
  font-weight: 900;
  margin-bottom: 2px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis; }

hr {
  border: none;
  border-top: 1px solid #632B5E;
  margin: 4px 0; }

.hall-1-divider {
  border: none;
  border-top: 1px solid #FFFAF7;
  margin: 4px 0; }

.time-location {
  display: flex;
  align-items: baseline;
  gap: 5px;
  flex-wrap: wrap; }

.primary-btn {
  background-color: #FF5F00;
  text-decoration: none;
  text-transform: uppercase;
  font-family: "Montserrat", serif;
  padding: 16px;
  border: 2px solid #FF5F00;
  font-weight: 900;
  font-size: 14px;
  line-height: 17.07px;
  color: #FFFFFF; }
  .primary-btn .inactive {
    pointer-events: none; }

.inactive {
  pointer-events: none; }

.secondary-btn {
  background-color: #FFFFFF;
  border: 2px solid #FF5F00;
  text-decoration: none;
  text-transform: uppercase;
  font-family: "Montserrat", serif;
  padding: 16px;
  font-weight: 900;
  font-size: 14px;
  line-height: 17.07px;
  color: #FF5F00; }

.workshop-hall {
  background: #6F356A;
  color: white; }

.hall-1 {
  background: #222222;
  color: #FFFAF7; }

.hall-2 {
  background: #C1C5C8;
  color: #632B5E; }

.hall-3 {
  background: #E0E622;
  color: #632B5E; }

.hall-4 {
  background: #B4CDED;
  color: #632B5E; }

.hall-5 {
  background: #FFFAF7;
  color: #632B5E; }

.workshop-supporting {
  background: #FFFAF7;
  color: #632B5E; }

.notice {
  padding-bottom: 100px;
  padding-top: 34px;
  color: #6F356A;
  font-family: "Space Grotesk", serif;
  font-size: 20px;
  line-height: 24px;
  font-weight: 600; }

@media (max-width: 768px) {
  .halls {
    grid-template-columns: 1fr; }
  .hall:first-child {
    display: grid; }
  .arrow-button {
    background-color: #FF5F00;
    color: #FFF;
    border: none;
    padding: 10px 15px;
    font-size: 18px;
    cursor: pointer;
    margin: 0 10px;
    border-radius: 5px; }
  .arrow-button:hover {
    background-color: #D94C00; } }

.coffee-break {
  background: #FFDAB9;
  text-align: center;
  grid-column: 2 / span 3; }

@media (max-width: 1200px) {
  .desktop-only {
    display: none; }
  .navigation .name-wrapper {
    margin-right: 1.5rem; }
  .navigation .icon-wrapper {
    display: flex; }
  .multi-speaker-modal .content .header .title {
    font-size: 24px; }
  .multi-speaker-modal .content .speakers .body {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start; }
    .multi-speaker-modal .content .speakers .body .content .title {
      font-size: 20px; }
    .multi-speaker-modal .content .speakers .body .content .time-venue {
      font-size: 20px; }
    .multi-speaker-modal .content .speakers .body .content .speaker {
      font-size: 16px; }
  .break-span-event {
    left: 0;
    top: 0; }
    .break-span-event.coffee-break-event {
      top: -60px; }
    .break-span-event.lunch-event {
      top: -60px; }
    .break-span-event .event-title {
      font-size: 20px; }
  .name-arrow-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%; }
  .name-wrapper {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center; }
  .icon-wrapper {
    flex-shrink: 0;
    margin-left: auto; }
  .schedule {
    padding-left: 12px;
    padding-right: 12px;
    display: grid;
    grid-template-columns: 40px 1fr;
    column-gap: 12px;
    overflow: hidden;
    position: relative; }
  .event {
    width: 100%;
    max-width: none; }
    .event .event-title {
      font-size: 20px;
      line-height: 18px;
      display: -webkit-box;
      -webkit-line-clamp: 4;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
      max-height: 72px; }
  .multi-event-block {
    width: 100%;
    max-width: none; }
  .time-label {
    font-size: 16px;
    line-height: 19.2px; }
  .halls {
    display: flex;
    overflow: hidden;
    width: 100%;
    position: relative; }
  .hall {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    flex-shrink: 0;
    transition: transform 0.3s ease-in-out; } }

@media only screen and (min-width: 1200px) {
  .schedule-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; }
    .schedule-container .header {
      width: 1054px; }
  .desktop-only {
    display: inline-block; }
  .mobile-only {
    display: none; }
  .hidden {
    display: inherit !important; }
  .nav-icon.mobile-only {
    display: none !important; }
  .hall {
    grid-column-start: inherit !important; }
  .name-arrow-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row; } }

@media only screen and (max-width: 768px) {
  .desktop-only {
    display: none; }
  .mobile-only {
    display: inline-block; }
  .schedule-container {
    padding-top: 0;
    margin: 0; }
  .schedule-container .header {
    padding: 28px 12px 20px 12px;
    gap: 48px; }
  .schedule-container .header .top-line .logo {
    max-height: 32px; }
  .schedule-container .header .bottom-line {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    margin: 0; }
    .schedule-container .header .bottom-line .buttons-container {
      width: 100%; }
      .schedule-container .header .bottom-line .buttons-container .primary-button, .schedule-container .header .bottom-line .buttons-container .secondary-button {
        flex-grow: 1;
        padding-top: 16px;
        padding-bottom: 16px; }
        .schedule-container .header .bottom-line .buttons-container .primary-button .button-text, .schedule-container .header .bottom-line .buttons-container .secondary-button .button-text {
          font-size: 14px;
          font-weight: 800;
          line-height: 12.6px; } }
