/*
 *  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;
}
.container-width, .about-section .d-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px; }

.about-section {
  background-color: #FFFAF7;
  padding-top: 160px;
  padding-bottom: 160px;
  display: flex;
  justify-content: center; }
  .about-section .join-container {
    background-image: linear-gradient(135deg, #67abab 0%, #60e6cd 100%);
    padding: 64px 16px; }
    .about-section .join-container .join-info {
      font-size: 24px;
      width: 100%;
      text-align: center;
      margin: 0;
      color: white;
      font-weight: 500; }
  .about-section .d-container .voting-container {
    text-align: center;
    padding: 48px 0 0;
    margin: 0 16px; }
    .about-section .d-container .voting-container .talks-container {
      margin-top: 48px; }
      .about-section .d-container .voting-container .talks-container .talks-list {
        margin: 24px auto 12px auto;
        max-width: 1000px; }
        .about-section .d-container .voting-container .talks-container .talks-list .talk {
          text-align: left;
          background-color: white;
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
          padding: 16px;
          display: block;
          margin: 16px 0;
          text-decoration: none;
          color: black;
          position: relative; }
          .about-section .d-container .voting-container .talks-container .talks-list .talk .talk-name {
            font-size: 16px;
            font-weight: 600;
            margin: 0; }
          .about-section .d-container .voting-container .talks-container .talks-list .talk .name {
            font-size: 13px;
            margin: 0; }
          .about-section .d-container .voting-container .talks-container .talks-list .talk .description {
            font-size: 13px;
            opacity: 75%; }
          .about-section .d-container .voting-container .talks-container .talks-list .talk .tags {
            display: flex; }
            .about-section .d-container .voting-container .talks-container .talks-list .talk .tags .tag {
              color: white;
              font-size: 12px;
              font-weight: 700;
              width: fit-content;
              padding: 6px 10px;
              border-radius: 16px;
              margin: 0 6px 0 0; }
            .about-section .d-container .voting-container .talks-container .talks-list .talk .tags .light-purple {
              background-color: #be4c6c; }
            .about-section .d-container .voting-container .talks-container .talks-list .talk .tags .orange {
              background-color: #ffac3b; }
            .about-section .d-container .voting-container .talks-container .talks-list .talk .tags .light-green {
              background-color: #55ddc4; }
            .about-section .d-container .voting-container .talks-container .talks-list .talk .tags .dark-green {
              background-color: #3d9f9f; }
            .about-section .d-container .voting-container .talks-container .talks-list .talk .tags .purple {
              background-color: #73426f; }
          .about-section .d-container .voting-container .talks-container .talks-list .talk .more {
            position: absolute;
            right: 16px;
            bottom: 16px;
            cursor: pointer;
            margin: 0; }
          .about-section .d-container .voting-container .talks-container .talks-list .talk a {
            color: black;
            opacity: 60%; }
        .about-section .d-container .voting-container .talks-container .talks-list .hide {
          display: none; }
  .about-section .d-container .about-container {
    text-align: left;
    padding-bottom: 80px; }
    .about-section .d-container .about-container-text {
      color: #632B5E;
      margin-top: 56px;
      margin-bottom: 80px; }
    .about-section .d-container .about-container .code-of-conduct {
      color: #632B5E;
      font-family: 'Space Grotesk', serif;
      letter-spacing: 0.03px;
      margin: 0;
      font-size: 20px;
      font-weight: 400;
      line-height: 24px;
      text-align: left; }
      .about-section .d-container .about-container .code-of-conduct .link {
        font-family: 'Montserrat', serif;
        font-size: 20px;
        font-weight: 700;
        line-height: 24px;
        letter-spacing: 0.05em;
        text-align: center;
        text-decoration-line: underline;
        text-decoration-style: solid;
        text-underline-position: from-font;
        text-decoration-skip-ink: none;
        color: #FF5F00;
        text-transform: uppercase; }
    .about-section .d-container .about-container .virtual-world {
      font-size: 18px;
      font-weight: 400;
      letter-spacing: 0.03px;
      margin-top: 48px; }
    .about-section .d-container .about-container .virtual-world-images .image {
      margin: 10px 25px;
      padding: 0;
      width: calc(100% - 50px); }
  .about-section .d-container .why-attend-container {
    margin-top: 80px;
    padding: 0; }
    @media only screen and (min-width: 768px) {
      .about-section .d-container .why-attend-container {
        margin-top: 240px; } }
  .about-section .d-container .contact {
    margin: 0 64px;
    text-align: left;
    font-size: 22px;
    font-weight: 600;
    padding-top: 80px; }
    .about-section .d-container .contact .perex-text {
      all: unset;
      font-family: 'Space Grotesk', serif;
      font-size: 40px;
      font-weight: 600;
      line-height: 48px;
      text-align: left;
      text-underline-position: from-font;
      text-decoration-skip-ink: none;
      color: #6F356A; }
    .about-section .d-container .contact .contact-text {
      margin-top: 320px;
      margin-bottom: 24px;
      color: #6F356A;
      font-size: 30px;
      font-weight: 600;
      line-height: 36px; }
    .about-section .d-container .contact .contact-subtext {
      margin: 0;
      font-family: "Space Grotesk", serif;
      font-size: 20px;
      font-weight: 400;
      line-height: 24px;
      text-align: left;
      color: #6F356A; }
      .about-section .d-container .contact .contact-subtext .link {
        font-family: "Montserrat", serif;
        color: #FF5F00;
        text-transform: uppercase;
        font-size: 20px;
        font-weight: 700;
        line-height: 24px;
        letter-spacing: 0.05em;
        text-align: center; }

@media only screen and (min-width: 600px) {
  .about-section .d-container .voting-container {
    margin: 0 16px; }
    .about-section .d-container .voting-container .talks-container .talks-list {
      display: flex;
      flex-wrap: wrap; }
      .about-section .d-container .voting-container .talks-container .talks-list .talk {
        width: calc(50% - 44px);
        margin: 0 6px 12px; }
  .about-section .d-container .about-container {
    margin: 0 64px;
    padding-bottom: 80px; }
    .about-section .d-container .about-container-text {
      font-size: 24px;
      line-height: 38px; }
    .about-section .d-container .about-container .join-info {
      font-size: 26px; }
    .about-section .d-container .about-container .virtual-world,
    .about-section .d-container .about-container .code-of-conduct {
      font-size: 20px; } }

@media only screen and (max-width: 600px) {
  .about-section .d-container .contact {
    margin: 0; }
    .about-section .d-container .contact .perex-text {
      font-size: 24px;
      font-weight: 600;
      line-height: 28.8px; }
    .about-section .d-container .contact .contact-text {
      font-size: 24px;
      font-weight: 600;
      line-height: 28.8px; } }

@media only screen and (min-width: 768px) {
  .about-section .join-container .join-info {
    font-size: 28px; }
  .about-section .d-container .voting-container {
    padding: 64px 0 0; }
    .about-section .d-container .voting-container .about-container {
      padding-bottom: 80px; }
      .about-section .d-container .voting-container .about-container-text {
        font-size: 28px;
        line-height: 44px; }
      .about-section .d-container .voting-container .about-container .virtual-world, .about-section .d-container .voting-container .about-container .code-of-conduct {
        font-size: 28px; }
      .about-section .d-container .voting-container .about-container .virtual-world-images .image {
        margin: 12px 36px;
        width: calc(100% - 72px); } }

@media only screen and (min-width: 1024px) {
  .about-section .join-container .join-info {
    font-size: 34px; }
  .about-section .d-container {
    background-position-x: 200px; }
    .about-section .d-container .voting-container {
      margin-bottom: 32px; }
    .about-section .d-container .about-container {
      padding-bottom: 80px;
      margin: 0 64px; }
      .about-section .d-container .about-container-text {
        font-size: 28px;
        line-height: 48px; }
      .about-section .d-container .about-container .virtual-world-images .image {
        margin: 25px;
        padding: 0;
        width: calc(50% - 50px); } }

@media only screen and (min-width: 1200px) {
  .about-section .d-container {
    background-position-x: 400px;
    background-position-y: 0; } }

.topics-section .topics-group-heading {
  font-weight: 400;
  font-size: 24px;
  margin: 40px 0 0; }

.topics-section .images-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap; }
  .topics-section .images-container .topic {
    display: inline-flex;
    margin-top: 24px;
    width: 100%; }
    .topics-section .images-container .topic.hide-in-1-column {
      display: none; }
    .topics-section .images-container .topic .grey-circle {
      background-color: #f6f7f9;
      display: flex;
      justify-content: center;
      align-content: center;
      border-radius: 50%;
      height: 80px;
      width: 80px; }
    .topics-section .images-container .topic .topic-text {
      margin-left: 30px;
      font-size: 24px;
      font-weight: 600;
      letter-spacing: 0.04px; }
  .topics-section .images-container .hooverable-topic {
    position: relative; }
  .topics-section .images-container .hooverable-topic .tooltip-text {
    visibility: hidden;
    background-color: #f6f7f9;
    position: absolute;
    bottom: 85px;
    left: -12px;
    font-size: 18px;
    width: 225px;
    text-align: center;
    padding: 15px 20px 15px 20px;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.15);
    border: 1px rgba(175, 75, 108, 0.3) solid;
    border-radius: 35px;
    opacity: 0;
    transition: opacity 0.25s; }
  .topics-section .images-container .hooverable-topic:hover .tooltip-text {
    visibility: visible;
    opacity: 1; }

.topics-section .button-container .expand {
  display: flex;
  align-content: center;
  width: 160px;
  margin-top: 16px;
  border: none; }
  .topics-section .button-container .expand .show-more {
    margin-left: 16px; }

@media only screen and (min-width: 540px) {
  .topics-section .images-container .show-all {
    display: none; }
  .topics-section .images-container .topic {
    width: 50%; }
    .topics-section .images-container .topic.hide-in-1-column {
      display: inline-flex; }
    .topics-section .images-container .topic .gaming-tooltip {
      left: -200px; }
    .topics-section .images-container .topic .tooltip-text {
      width: 400px; }
  .topics-section .button-container .expand {
    display: none; } }

@media only screen and (min-width: 900px) {
  .topics-section .images-container .topic {
    width: 33.333%; }
    .topics-section .images-container .topic .tooltip-text {
      font-size: 20px; }
    .topics-section .images-container .topic .gaming-tooltip {
      left: 0px; }
    .topics-section .images-container .topic .devlife-topic,
    .topics-section .images-container .topic .security-tooltip {
      left: -170px; } }

@media only screen and (min-width: 1500px) {
  .topics-section .images-container .topic {
    margin-top: 60px;
    width: 20%; }
    .topics-section .images-container .topic .gaming-tooltip {
      left: -170px; } }

@media only screen and (min-width: 2560px) {
  .topics-section .images-container .topic {
    width: 20%; } }

.container-width, .about-section .d-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px; }

.why-attend-container-inner {
  margin: 0 64px;
  text-align: center; }
  .why-attend-container-inner .paragraphs-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0;
    margin-top: 56px;
    margin-bottom: -20px; }
    .why-attend-container-inner .paragraphs-container .paragraph-container {
      width: 100%;
      margin: 0 0 0; }
      .why-attend-container-inner .paragraphs-container .paragraph-container .icon-heading-container {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        width: 100%; }
      .why-attend-container-inner .paragraphs-container .paragraph-container .icon {
        margin-bottom: -20px;
        max-width: 65px;
        align-self: flex-start; }

@media only screen and (max-width: 600px) {
  .why-attend-container-inner {
    margin: 0; } }

@media only screen and (min-width: 768px) {
  .why-attend-container-inner .paragraphs-container {
    flex-direction: row;
    align-items: flex-start;
    gap: 32px; }
    .why-attend-container-inner .paragraphs-container .paragraph-container {
      flex: 1; } }

.header-section {
  display: flex;
  background: url("../images/background-photo-bw.jpg") center center no-repeat;
  background-size: auto 100%;
  min-height: 100vh;
  position: relative;
  overflow: hidden; }
  .header-section.menu-open {
    background: none; }
    .header-section.menu-open .gradient-container {
      background: none;
      background-color: #FFFAF7; }
    .header-section.menu-open .text-container,
    .header-section.menu-open .header-buttons-container {
      display: none; }
    .header-section.menu-open .top-line .logo {
      margin-bottom: 150px; }
  .header-section .gradient-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(128.21deg, rgba(84, 28, 78, 0.89) 25%, rgba(212, 81, 99, 0.89) 100%);
    flex: 1;
    position: relative;
    overflow: hidden;
    padding: 32px 16px; }
    .header-section .gradient-container .content-container {
      max-width: 1072px;
      display: flex;
      flex-direction: column;
      width: 100%;
      height: 100%;
      position: relative;
      justify-content: space-between; }
      .header-section .gradient-container .content-container .top-line {
        display: flex;
        flex-direction: column; }
        .header-section .gradient-container .content-container .top-line .logo {
          align-self: flex-start;
          height: 32px; }
        .header-section .gradient-container .content-container .top-line .menu-button {
          position: absolute;
          top: 0;
          right: 0;
          background: none;
          border: none;
          padding: 0;
          width: 32px;
          height: 18px;
          cursor: pointer; }
          .header-section .gradient-container .content-container .top-line .menu-button .menu-icon {
            width: 100%;
            height: 100%;
            object-fit: contain; }
        .header-section .gradient-container .content-container .top-line .menu {
          padding: 0;
          margin: 0;
          list-style: none;
          display: flex;
          flex-direction: column;
          gap: 40px; }
          .header-section .gradient-container .content-container .top-line .menu .menu-item {
            display: flex;
            margin: 0 0;
            height: 48px;
            align-items: center; }
            .header-section .gradient-container .content-container .top-line .menu .menu-item .green-button {
              padding-left: 32px;
              padding-right: 32px; }
            .header-section .gradient-container .content-container .top-line .menu .menu-item a.menu-link {
              font-family: "Montserrat", serif;
              color: #FF5F00;
              font-size: 20px;
              text-decoration: none;
              font-weight: 900;
              line-height: 24.38px;
              letter-spacing: 0.05em;
              text-transform: uppercase; }
      .header-section .gradient-container .content-container .text-container {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 27px; }
        .header-section .gradient-container .content-container .text-container .event-name {
          color: white;
          font-weight: 600;
          margin: 0; }
        .header-section .gradient-container .content-container .text-container .main-heading {
          margin: 0;
          font-size: 40px;
          line-height: 38px;
          font-weight: 900;
          text-transform: uppercase;
          color: #FFFAF7;
          font-family: "Montserrat", serif; }
          .header-section .gradient-container .content-container .text-container .main-heading .superscript {
            position: relative;
            font-size: 20px; }
        .header-section .gradient-container .content-container .text-container .date-heading {
          font-size: 30px;
          line-height: 36px;
          font-weight: 500;
          color: #FFFAF7;
          font-family: "Space Grotesk", serif; }
          .header-section .gradient-container .content-container .text-container .date-heading .superscript {
            position: relative;
            font-size: 14px;
            top: 2px; }
        .header-section .gradient-container .content-container .text-container .workshops-heading {
          color: #ffffff;
          font-size: 18px;
          font-weight: 500;
          text-transform: uppercase;
          margin: 4px 0 0 0;
          opacity: 0.75;
          letter-spacing: 2.5px; }
          .header-section .gradient-container .content-container .text-container .workshops-heading .superscript {
            position: relative;
            top: 2px;
            font-size: 12px; }
        .header-section .gradient-container .content-container .text-container .join-container {
          width: 220px;
          margin: 100px auto auto auto; }
          .header-section .gradient-container .content-container .text-container .join-container .live-heading {
            color: white;
            text-align: center;
            font-size: 15px;
            font-weight: 700;
            letter-spacing: 5px;
            text-transform: uppercase;
            margin-bottom: 16px; }
          .header-section .gradient-container .content-container .text-container .join-container .button-container .join-button {
            text-align: center;
            text-decoration: none;
            padding: 12px 24px 12px 24px; }
            .header-section .gradient-container .content-container .text-container .join-container .button-container .join-button .button-text {
              font-size: 18px; }
          .header-section .gradient-container .content-container .text-container .join-container .faq-container {
            padding-top: 16px;
            margin: auto;
            width: fit-content; }
            .header-section .gradient-container .content-container .text-container .join-container .faq-container .faq {
              font-size: 18px;
              color: white; }
      .header-section .gradient-container .content-container .header-buttons-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center; }
        .header-section .gradient-container .content-container .header-buttons-container .header-buttons-heading {
          color: #ffffff;
          font-size: 14px;
          margin: 12px 0; }
        .header-section .gradient-container .content-container .header-buttons-container .button-container {
          display: flex;
          flex-direction: row;
          gap: 16px;
          flex-wrap: wrap; }
        .header-section .gradient-container .content-container .header-buttons-container .button-container .call-for-papers {
          background-color: #FFFFFF;
          border: 2px solid #FF5F00;
          text-align: center;
          text-decoration: none;
          display: flex;
          padding: 14px;
          align-items: center;
          justify-content: center;
          flex-wrap: wrap;
          max-width: 178px; }
          .header-section .gradient-container .content-container .header-buttons-container .button-container .call-for-papers .papers-button-text {
            color: #FF5F00;
            text-transform: uppercase;
            font-family: "Montserrat", serif;
            font-size: 16px;
            font-weight: 900;
            line-height: 19.5px;
            text-align: center;
            letter-spacing: 0.05em; }
        .header-section .gradient-container .content-container .header-buttons-container .button-container .header-list-button {
          display: flex;
          padding: 14px;
          align-items: center;
          text-decoration: none;
          flex-wrap: wrap; }
          .header-section .gradient-container .content-container .header-buttons-container .button-container .header-list-button .button-text {
            color: #ffffff;
            text-transform: uppercase;
            font-family: "Montserrat", serif;
            font-size: 16px;
            font-weight: 900;
            line-height: 19.5px;
            letter-spacing: 0.05em;
            text-align: center; }
          .header-section .gradient-container .content-container .header-buttons-container .button-container .header-list-button .button-sub-text {
            font-size: 12px;
            letter-spacing: 1.5px; }
          .header-section .gradient-container .content-container .header-buttons-container .button-container .header-list-button .arrow-right {
            margin-left: 16px;
            height: 18px;
            width: 30px; }
      .header-section .gradient-container .content-container .sub-links-container {
        display: flex;
        flex-direction: column;
        justify-content: flex-end; }
        .header-section .gradient-container .content-container .sub-links-container .sub-links {
          flex-direction: row; }
          .header-section .gradient-container .content-container .sub-links-container .sub-links .sub-link {
            color: #ffffff;
            font-size: 20px;
            font-weight: 500;
            letter-spacing: 0.83px;
            text-decoration: underline;
            text-transform: uppercase; }

@media only screen and (min-width: 375px) {
  .header-section .gradient-container {
    padding: 32px; }
    .header-section .gradient-container .content-container .text-container .main-heading {
      font-size: 24px;
      line-height: 21.6px; }
    .header-section .gradient-container .content-container .text-container .date-heading {
      font-size: 20px;
      line-height: 24px; }
      .header-section .gradient-container .content-container .text-container .date-heading .superscript {
        font-size: 12px; }
    .header-section .gradient-container .content-container .text-container .workshops-heading {
      font-size: 20px; }
      .header-section .gradient-container .content-container .text-container .workshops-heading .superscript {
        top: 3px;
        font-size: 14px; }
    .header-section .gradient-container .content-container .text-container .header-buttons-container .header-list-heading {
      font-size: 16px; } }

@media (min-width: 425px) {
  .header-section .gradient-container .content-container .text-container .join-container {
    width: 260px; }
    .header-section .gradient-container .content-container .text-container .join-container .live-heading {
      font-size: 19px; }
    .header-section .gradient-container .content-container .text-container .join-container .button-container .join-button {
      padding: 18px 24px 14px 24px; }
      .header-section .gradient-container .content-container .text-container .join-container .button-container .join-button .button-text {
        font-size: 22px; } }

@media only screen and (max-width: 600px) {
  .header-section .gradient-container .content-container .text-container {
    gap: 40px; } }

@media only screen and (min-width: 600px) {
  .header-section .gradient-container {
    padding: 48px; }
    .header-section .gradient-container .orange-m {
      height: 500px; }
    .header-section .gradient-container .content-container .top-line .logo {
      height: 54px; }
    .header-section .gradient-container .content-container .top-line .menu-button {
      font-size: 24px;
      width: 180px;
      margin-top: 36px;
      padding: 16px 0; }
      .header-section .gradient-container .content-container .top-line .menu-button .menu-icon {
        margin: 0 0 0 16px;
        height: 30px; }
    .header-section .gradient-container .content-container .top-line .menu .menu-item a.menu-link {
      font-size: 24px; }
    .header-section .gradient-container .content-container .text-container .join-container {
      width: 340px; }
      .header-section .gradient-container .content-container .text-container .join-container .live-heading {
        font-size: 20px; }
      .header-section .gradient-container .content-container .text-container .join-container .button-container .join-button .button-text {
        font-size: 24px;
        padding: 32px 32px 14px 32px; }
    .header-section .gradient-container .content-container .text-container .event-name {
      font-size: 48px; }
    .header-section .gradient-container .content-container .text-container .main-heading {
      font-size: 32px;
      line-height: 30.4px; }
    .header-section .gradient-container .content-container .text-container .workshops-heading {
      font-size: 26px;
      margin-top: 12px; }
      .header-section .gradient-container .content-container .text-container .workshops-heading .superscript {
        top: 1px;
        font-size: 16px; }
    .header-section .gradient-container .content-container .text-container .header-buttons-container .header-buttons-heading {
      font-size: 20px; }
    .header-section .gradient-container .content-container .text-container .header-buttons-container .button-container .header-list-button .button-text {
      font-size: 20px; }
    .header-section .gradient-container .content-container .text-container .join-container .faq-container .faq {
      font-size: 20px; }
    .header-section .gradient-container .content-container .sub-links-container .sub-links .sub-link {
      font-size: 24px; } }

@media only screen and (max-width: 767px) {
  .content-container .text-container .main-heading .superscript {
    font-size: 10px;
    top: 6px; }
  .header-section .video {
    display: none; }
  .header-section .top-line .menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 0;
    margin: 0;
    list-style: none;
    gap: 40px; } }

@media only screen and (min-width: 768px) {
  .header-section {
    justify-content: center; }
    .header-section .video {
      position: absolute;
      top: 0;
      min-height: 100vh;
      align-self: center; }
    .header-section .gradient-container .content-container .text-container .join-container {
      margin-top: 50px; }
    .header-section .gradient-container .content-container .text-container .event-name {
      font-size: 54px; }
    .header-section .gradient-container .content-container .text-container .main-heading {
      font-size: 40px;
      line-height: 38px; }
    .header-section .gradient-container .content-container .text-container .date-heading {
      font-size: 28px;
      line-height: 33.6px; }
      .header-section .gradient-container .content-container .text-container .date-heading .superscript {
        position: relative;
        top: 4px;
        font-size: 22px; }
    .header-section .gradient-container .content-container .text-container .workshops-heading {
      font-size: 32px;
      margin-top: 12px; }
      .header-section .gradient-container .content-container .text-container .workshops-heading .superscript {
        top: 1px;
        font-size: 18px; }
    .header-section .gradient-container .content-container .text-container .header-buttons-container .header-list-heading {
      font-size: 24px; } }

@media only screen and (max-width: 1023px) {
  .header-section.disabled {
    background-color: #FFFAF7; }
  .header-section .gradient-container .content-container .header-buttons-container .button-container {
    flex-direction: column;
    align-items: center; }
  .header-section .gradient-container .content-container .top-line .menu.disabled {
    display: none; } }

@media only screen and (min-width: 1024px) {
  .header-section .gradient-container .content-container .text-container .header-buttons-container .button-container {
    display: flex;
    flex-direction: row; }
  .header-section .gradient-container {
    padding: 80px; }
    .header-section .gradient-container .purple-m {
      top: 0;
      right: -100px;
      min-height: 100vh; }
    .header-section .gradient-container .content-container .top-line {
      flex-direction: row;
      justify-content: space-between; }
      .header-section .gradient-container .content-container .top-line .logo {
        height: 48px; }
      .header-section .gradient-container .content-container .top-line .menu-button {
        display: none; }
      .header-section .gradient-container .content-container .top-line .menu {
        flex-direction: row; }
        .header-section .gradient-container .content-container .top-line .menu .menu-item {
          margin: 0 10px;
          height: 48px;
          align-items: center; }
          .header-section .gradient-container .content-container .top-line .menu .menu-item a.menu-link {
            opacity: 0.8;
            font-size: 20px; }
    .header-section .gradient-container .content-container .text-container .join-container {
      margin-top: 125px; }
    .header-section .gradient-container .content-container .text-container .main-heading {
      font-size: 50px;
      line-height: 47.5px; }
    .header-section .gradient-container .content-container .text-container .date-heading {
      font-size: 28px;
      line-height: 33.6px; }
      .header-section .gradient-container .content-container .text-container .date-heading .superscript {
        top: 3px;
        font-size: 18px; }
    .header-section .gradient-container .content-container .text-container .workshops-heading {
      font-size: 24px;
      margin-top: 8px; }
      .header-section .gradient-container .content-container .text-container .workshops-heading .superscript {
        position: relative;
        top: 2px;
        font-size: 12px; }
    .header-section .gradient-container .content-container .text-container .button-container .register-button {
      padding: 22px 16px 22px 32px; }
      .header-section .gradient-container .content-container .text-container .button-container .register-button .button-text {
        font-size: 20px; }
      .header-section .gradient-container .content-container .text-container .button-container .register-button .arrow-right {
        height: 20px; }
    .header-section .gradient-container .content-container .sub-links-container .sub-links .sub-link {
      font-size: 18px; } }

@media only screen and (orientation: landscape) and (min-width: 1200px) {
  .header-section {
    background-size: 100% auto; } }

@media only screen and (min-width: 1400px) {
  .header-section .gradient-container {
    padding: 80px 170px; }
    .header-section .gradient-container .content-container .main-heading {
      letter-spacing: 3.79px; }
    .header-section .gradient-container .content-container .text-container .join-container {
      width: 460px;
      margin-top: 100px; }
      .header-section .gradient-container .content-container .text-container .join-container .live-heading {
        font-size: 26px;
        margin-bottom: 24px; }
      .header-section .gradient-container .content-container .text-container .join-container .button-container .join-button {
        padding: 32px 48px 24px 48px; }
        .header-section .gradient-container .content-container .text-container .join-container .button-container .join-button .button-text {
          font-size: 32px; }
      .header-section .gradient-container .content-container .text-container .join-container .faq-container {
        margin-top: 12px; }
        .header-section .gradient-container .content-container .text-container .join-container .faq-container .faq {
          font-size: 24px; } }

.prague-cogress-centre-section {
  background-image: url("../images/congress-centre.jpg");
  background-size: auto 100%;
  background-repeat: no-repeat;
  display: flex;
  position: relative;
  overflow: hidden; }
  .prague-cogress-centre-section ::after {
    content: "";
    background-image: linear-gradient(135deg, #67abab 0%, #60e6cd 100%);
    opacity: 0.5;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute;
    z-index: -1; }
  .prague-cogress-centre-section .green-d {
    position: absolute;
    top: 0;
    left: 0; }
  .prague-cogress-centre-section .green-a {
    position: absolute;
    bottom: 0;
    right: 0; }
  .prague-cogress-centre-section .content-container {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 20;
    flex: 1;
    justify-content: center;
    padding: 48px 16px; }
    .prague-cogress-centre-section .content-container .main-heading {
      color: #ffffff;
      font-weight: 600;
      letter-spacing: 1.67px;
      font-size: 32px;
      margin: 0; }
    .prague-cogress-centre-section .content-container .date-heading {
      color: #ffffff;
      text-transform: uppercase;
      font-size: 18px;
      font-weight: 400;
      letter-spacing: 0.84px;
      margin: 8px; }
  .prague-cogress-centre-section .white-button.open-map {
    text-transform: uppercase;
    color: #6f356a;
    margin-top: 16px; }

@media only screen and (min-width: 600px) {
  .prague-cogress-centre-section .content-container {
    padding: 96px; }
    .prague-cogress-centre-section .content-container .main-heading {
      font-size: 40px; }
    .prague-cogress-centre-section .content-container .date-heading {
      font-size: 20px; } }

@media only screen and (min-width: 1024px) {
  .prague-cogress-centre-section .content-container {
    padding: 96px 170px; } }

@media only screen and (orientation: landscape) and (min-width: 1440px) {
  .prague-cogress-centre-section {
    background-size: 100% auto; } }

.footer-container {
  background: linear-gradient(180deg, #632B5E -0.09%, #222222 100%);
  text-align: center;
  padding: 160px 32px; }
  .footer-container .top-line, .footer-container .bottom-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1060px;
    margin: 0 auto; }
  .footer-container .top-line .logo {
    height: 51px;
    display: flex;
    align-items: center; }
  .footer-container .top-line .menu {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-direction: row;
    gap: 40px; }
    .footer-container .top-line .menu .menu-item {
      display: flex;
      margin: 0;
      height: 48px;
      align-items: center; }
      .footer-container .top-line .menu .menu-item .green-button {
        padding-left: 32px;
        padding-right: 32px; }
      .footer-container .top-line .menu .menu-item a.menu-link {
        font-family: "Montserrat", serif;
        color: #FF5F00;
        font-size: 20px;
        text-decoration: none;
        font-weight: 900;
        text-transform: uppercase;
        line-height: 24.38px;
        letter-spacing: 0.05em; }
  .footer-container .bottom-line {
    align-items: flex-end; }
    .footer-container .bottom-line .link {
      font-family: "Montserrat", serif;
      color: #FF5F00;
      font-size: 16px;
      text-decoration: none;
      font-weight: 900;
      text-transform: uppercase;
      line-height: 1;
      letter-spacing: 0.05em; }
    .footer-container .bottom-line .bottom-left {
      display: flex;
      flex-direction: row;
      gap: 40px; }
    .footer-container .bottom-line .bottom-right {
      display: flex;
      flex-direction: column;
      gap: 16px;
      align-items: flex-end; }
      .footer-container .bottom-line .bottom-right .powered-by-logo {
        height: 22.94px; }
      .footer-container .bottom-line .bottom-right .company-details {
        font-weight: 400;
        font-size: 16px;
        line-height: 1.2;
        color: #FFFAF7; }
  @media only screen and (max-width: 768px) {
    .footer-container .top-line, .footer-container .bottom-line {
      flex-direction: column;
      align-items: flex-start;
      text-align: center;
      gap: 80px; }
      .footer-container .top-line .bottom-left, .footer-container .bottom-line .bottom-left {
        flex-direction: column; }
      .footer-container .top-line .bottom-right, .footer-container .bottom-line .bottom-right {
        align-items: flex-start; }
    .footer-container .top-line .menu {
      flex-direction: column;
      align-items: flex-start;
      gap: 16px; }
    .footer-container .bottom-line {
      margin-top: 160px; } }
  @media only screen and (min-width: 768px) {
    .footer-container .top-line {
      margin-bottom: 160px; } }
  @media only screen and (max-width: 350px) {
    .footer-container .bottom-line .powered-by-logo {
      height: 12px; }
    .footer-container .bottom-line .link {
      font-size: 12px; } }

.container-width, .about-section .d-container {
  max-width: 1060px;
  margin: 0 140px; }

.partners-section {
  margin: 0 auto;
  text-align: center;
  max-width: 1060px; }
  .partners-section .black-heading {
    margin: 32px 0; }
  .partners-section .partners-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 64px;
    justify-content: space-between;
    margin-top: 64px; }
    .partners-section .partners-container .partners-type {
      display: flex;
      flex-direction: column;
      gap: 24px;
      justify-content: space-between; }
      .partners-section .partners-container .partners-type .partners-type-heading {
        font-family: "Space Grotesk", sans-serif;
        font-size: 20px;
        text-transform: none;
        font-weight: 400;
        line-height: 24px;
        color: #632B5E;
        text-align: left; }
      .partners-section .partners-container .partners-type .partners-logos {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        flex-wrap: wrap;
        gap: 80px; }
        .partners-section .partners-container .partners-type .partners-logos .partner {
          display: flex;
          align-items: center; }
          .partners-section .partners-container .partners-type .partners-logos .partner .partner-link {
            display: flex;
            flex: 1;
            justify-content: center; }
            .partners-section .partners-container .partners-type .partners-logos .partner .partner-link .partner-logo {
              max-height: 120px;
              max-width: 250px; }
            .partners-section .partners-container .partners-type .partners-logos .partner .partner-link .logo-tier-1 {
              max-height: 43px;
              max-width: 343px; }
            .partners-section .partners-container .partners-type .partners-logos .partner .partner-link .logo-overflow {
              max-height: none;
              height: 75px; }
            .partners-section .partners-container .partners-type .partners-logos .partner .partner-link .logo-tier-2 {
              max-height: 45px; }
            .partners-section .partners-container .partners-type .partners-logos .partner .partner-link .logo-tier-3 {
              max-height: 27px;
              max-width: 154px; }
            .partners-section .partners-container .partners-type .partners-logos .partner .partner-link .large {
              max-height: 60px; }
    .partners-section .partners-container .support-heading {
      text-align: left;
      font-weight: 600;
      font-size: 30px;
      line-height: 36px;
      color: #632B5E; }
  .partners-section .partner-text {
    margin-top: 160px;
    margin-bottom: 24px;
    text-align: left;
    color: #6F356A; }
  .partners-section .partner-subtext {
    margin: 0;
    font-family: "Space Grotesk", serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    color: #6F356A; }
    .partners-section .partner-subtext .link {
      font-family: "Montserrat", serif;
      color: #FF5F00;
      text-transform: uppercase;
      font-size: 20px;
      font-weight: 700;
      line-height: 24px;
      letter-spacing: 0.05em;
      text-align: center; }

@media only screen and (min-width: 1475px) {
  .partners-section {
    margin: 0 auto; } }

@media only screen and (min-width: 768px) {
  .partners-section {
    padding-bottom: 160px;
    padding-top: 160px; }
  .partners-section .partners-container .partners-type .partners-logos .partner .partner-logo {
    margin: 0 64px; } }

@media only screen and (max-width: 600px) {
  .partners-section .partners-container .support-heading {
    font-size: 20px;
    line-height: 24px; }
  .partners-section .partners-container .partners-type .partners-type-heading {
    font-size: 18px;
    line-height: 21.6px; }
  .partners-section .partners-container .partners-type .partners-logos {
    flex-direction: row;
    align-items: center;
    gap: 22px; }
  .partners-section .partners-container .partners-type .partners-logos .partner .partner-link {
    flex-direction: row; }
    .partners-section .partners-container .partners-type .partners-logos .partner .partner-link .logo-tier-1 {
      max-height: 28px;
      max-width: 226px; }
    .partners-section .partners-container .partners-type .partners-logos .partner .partner-link .logo-overflow {
      max-height: none;
      height: 46px; }
    .partners-section .partners-container .partners-type .partners-logos .partner .partner-link .logo-tier-3 {
      max-height: 20px;
      max-width: 113px; }
    .partners-section .partners-container .partners-type .partners-logos .partner .partner-link .logo-tier-2 {
      max-height: 35px; }
    .partners-section .partners-container .partners-type .partners-logos .partner .partner-link .large {
      max-height: 46px; }
  .partners-section .partner-subtext .link {
    font-size: 16px; } }

@media only screen and (max-width: 1130px) {
  .partners-section {
    padding: 160px 32px; }
  .partners-section .partner-subtext .link {
    font-size: 16px; } }

.top-talks.shadow-box {
  margin-top: 64px;
  margin-bottom: 48px; }
  .top-talks.shadow-box .top-talks-container {
    display: flex;
    margin-top: 32px; }
    .top-talks.shadow-box .top-talks-container .talk {
      position: relative;
      text-decoration: none;
      color: #ffffff; }
      .top-talks.shadow-box .top-talks-container .talk.talk-2, .top-talks.shadow-box .top-talks-container .talk.talk-3, .top-talks.shadow-box .top-talks-container .talk.talk-4, .top-talks.shadow-box .top-talks-container .talk.talk-5, .top-talks.shadow-box .top-talks-container .talk.talk-6 {
        display: none; }
      .top-talks.shadow-box .top-talks-container .talk .photo {
        width: 100%; }
      .top-talks.shadow-box .top-talks-container .talk .speaker-container {
        position: absolute;
        top: 0;
        bottom: 0;
        width: calc(100% - 16px);
        padding: 12px 8px;
        display: flex;
        flex-direction: column;
        justify-items: flex-end;
        justify-content: flex-end;
        align-items: flex-start; }
        .top-talks.shadow-box .top-talks-container .talk .speaker-container::before {
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          content: "";
          background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
          opacity: 0.6;
          z-index: 1;
          margin-bottom: 4px; }
        .top-talks.shadow-box .top-talks-container .talk .speaker-container .speaker-photo {
          z-index: 20;
          border-radius: 50%;
          height: 64px;
          width: 64px; }
        .top-talks.shadow-box .top-talks-container .talk .speaker-container .speaker-name {
          margin: 4px 0 0 0;
          font-size: 24px;
          font-weight: 600;
          z-index: 20; }
        .top-talks.shadow-box .top-talks-container .talk .speaker-container .talk-name {
          margin: 0 0 4px 0;
          font-size: 18px;
          font-weight: 400;
          z-index: 20; }

@media only screen and (min-width: 500px) {
  .top-talks.shadow-box .top-talks-container .talk .speaker-container {
    padding: 24px;
    width: calc(100% - 48px); } }

@media only screen and (min-width: 768px) {
  .top-talks.shadow-box .top-talks-container .talk.talk-1 {
    margin-right: 15px; }
  .top-talks.shadow-box .top-talks-container .talk.talk-2 {
    display: block;
    margin-left: 15px; }
  .top-talks.shadow-box .top-talks-container .talk .speaker-container {
    padding: 12px;
    width: calc(100% - 24px); } }

@media only screen and (min-width: 1024px) {
  .top-talks.shadow-box .top-talks-container .talk.talk-2 {
    margin-right: 15px; }
  .top-talks.shadow-box .top-talks-container .talk.talk-3 {
    display: block;
    margin-left: 15px; }
  .top-talks.shadow-box .arrows-container {
    margin-top: 48px;
    margin-bottom: 0; } }

@media only screen and (min-width: 1920px) {
  .top-talks.shadow-box .top-talks-container .talk.talk-3 {
    margin-right: 15px; }
  .top-talks.shadow-box .top-talks-container .talk.talk-4 {
    display: block;
    margin-left: 15px; } }

@media only screen and (min-width: 2560px) {
  .top-talks.shadow-box .top-talks-container .talk.talk-4 {
    margin-right: 15px; }
  .top-talks.shadow-box .top-talks-container .talk.talk-5 {
    display: block;
    margin-left: 15px; } }

.photos-section {
  text-align: center;
  padding-top: 160px;
  padding-bottom: 160px; }
  .photos-section .top-box h2.secondary-heading.purple-heading {
    margin-bottom: 24px; }
  .photos-section .top-box h2.copy-20.purple-heading {
    margin-bottom: -24px; }
  .photos-section .photos-body {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 24px 0 24px; }
    .photos-section .photos-body .photos-container {
      display: none;
      position: relative;
      overflow: hidden; }
      .photos-section .photos-body .photos-container.left {
        flex-direction: column; }
        .photos-section .photos-body .photos-container.left .row {
          display: flex;
          flex-direction: row;
          justify-content: flex-end; }
      .photos-section .photos-body .photos-container.right {
        flex-direction: row; }
        .photos-section .photos-body .photos-container.right .column {
          display: flex;
          flex-direction: column; }
    .photos-section .photos-body .video-container {
      width: 100%;
      padding: 0;
      height: 180px;
      border: none; }
      .photos-section .photos-body .video-container .photo {
        height: 180px; }
  .photos-section .photos-footer {
    margin: auto;
    display: block;
    font-size: 16px;
    padding: 18px 16px 18px 16px;
    width: 224px; }
    .photos-section .photos-footer img {
      display: none; }
    .photos-section .photos-footer .view-photos-button {
      display: flex;
      padding: 20px;
      gap: 15px;
      align-items: center;
      margin-top: 12px;
      text-decoration: none;
      flex-wrap: wrap; }
      .photos-section .photos-footer .view-photos-button .button-text {
        color: #ffffff;
        text-transform: uppercase;
        font-family: "Montserrat", serif;
        font-size: 16px;
        font-weight: 700;
        line-height: 19.2px;
        letter-spacing: 0.05em;
        text-align: center; }
      .photos-section .photos-footer .view-photos-button .button-sub-text {
        font-size: 12px;
        letter-spacing: 1.5px; }
      .photos-section .photos-footer .view-photos-button .arrow-right {
        margin-left: 16px;
        height: 18px;
        width: 30px; }

.past-conferences .gallery-container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  margin: 0;
  padding: 0;
  width: 100%;
  gap: 32px; }
  .past-conferences .gallery-container .web-link {
    display: block;
    max-width: 100%;
    margin: 6px 0;
    max-height: 160px;
    overflow: hidden;
    border-radius: 4px;
    position: relative;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15); }
    .past-conferences .gallery-container .web-link .web-link-button {
      display: block;
      position: absolute;
      bottom: 0;
      width: calc(100% - 32px);
      padding: 16px;
      font-family: "Montserrat", serif;
      font-size: 32px;
      font-weight: 900;
      line-height: 30.4px;
      text-align: left;
      text-underline-position: from-font;
      text-decoration-skip-ink: none; }
    .past-conferences .gallery-container .web-link img {
      width: 100%;
      height: auto; }

@media only screen and (min-width: 425px) {
  .photos-section .photos-body .video-container {
    height: 230px; }
    .photos-section .photos-body .video-container .photo {
      height: 230px; }
  .photos-section .photos-footer .purple-button {
    width: 260px;
    display: flex;
    padding: 18px 32px 18px 32px; }
    .photos-section .photos-footer .purple-button img {
      display: block; }
  .past-conferences .gallery-container .web-link {
    width: 350px;
    max-height: 175px; } }

@media only screen and (min-width: 500px) {
  .photos-section .photos-body .video-container {
    height: 280px; }
    .photos-section .photos-body .video-container .photo {
      height: 280px; }
  .past-conferences .gallery-container .web-link {
    margin-top: 16px; } }

@media only screen and (min-width: 600px) {
  .photos-section .photos-body {
    margin: 0 0 32px; }
    .photos-section .photos-body .photos-container {
      width: 30%; }
      .photos-section .photos-body .photos-container.left, .photos-section .photos-body .photos-container.right {
        display: flex; }
      .photos-section .photos-body .photos-container.left {
        margin-right: 10px; }
        .photos-section .photos-body .photos-container.left .row:first-child {
          margin-bottom: 10px; }
        .photos-section .photos-body .photos-container.left .row .photo:first-child {
          margin-right: 10px; }
      .photos-section .photos-body .photos-container.right {
        margin-left: 10px; }
        .photos-section .photos-body .photos-container.right .column {
          margin-right: 10px; }
          .photos-section .photos-body .photos-container.right .column .photo:first-child {
            margin-bottom: 10px; }
        .photos-section .photos-body .photos-container.right .photo.full-column {
          height: 200px; }
      .photos-section .photos-body .photos-container .photo {
        height: 95px; }
    .photos-section .photos-body .video-container {
      width: 60%;
      height: 200px;
      padding: 0;
      width: 356px; }
      .photos-section .photos-body .video-container .photo {
        height: 200px; }
  .past-conferences .gallery-container {
    flex-direction: row;
    display: flex;
    flex-wrap: unset; }
    .past-conferences .gallery-container .web-link {
      max-width: 500px;
      max-height: 350px;
      width: unset;
      min-width: calc(50% - 12px); } }

@media only screen and (max-width: 775px) {
  .past-conferences .gallery-container .web-link .web-link-button {
    font-size: 24px;
    line-height: 21.6px; } }

@media only screen and (min-width: 768px) {
  .photos-section {
    margin: 0; }
    .photos-section .photos-body {
      margin: 48px 0; }
      .photos-section .photos-body .photos-container.right .photo.full-column {
        height: 240px; }
      .photos-section .photos-body .photos-container .photo {
        height: 115px; }
      .photos-section .photos-body .video-container {
        height: 240px;
        width: 427px; }
        .photos-section .photos-body .video-container .photo {
          height: 240px; }
    .photos-section .photos-footer {
      width: fit-content;
      width: -moz-fit-content;
      margin: auto; }
      .photos-section .photos-footer .row {
        display: flex;
        width: fit-content;
        width: -moz-fit-content;
        margin: auto; }
        .photos-section .photos-footer .row .purple-button {
          margin: 0 12px 32px 12px; }
        .photos-section .photos-footer .row .view-last-y-photos {
          width: 224px; }
  .past-conferences .gallery-container .web-link .web-link-button {
    padding: 20px 16px; } }

@media only screen and (min-width: 1024px) {
  .photos-section .photos-body .photos-container.right .photo.full-column {
    height: 310px; }
  .photos-section .photos-body .photos-container .photo {
    height: 150px; }
  .photos-section .photos-body .video-container {
    height: 310px;
    width: 551px; }
    .photos-section .photos-body .video-container .photo {
      height: 310px; } }

@media only screen and (min-width: 1440px) {
  .photos-section .photos-body .photos-container.right .photo.full-column {
    height: 440px; }
  .photos-section .photos-body .photos-container .photo {
    height: 215px; }
  .photos-section .photos-body .video-container {
    height: 440px;
    width: 782px; }
    .photos-section .photos-body .video-container .photo {
      height: 440px; } }

@media only screen and (max-width: 1130px) {
  .photos-section .top-box {
    margin-left: 32px;
    margin-right: 32px; }
  .past-conferences {
    margin-left: 32px;
    margin-right: 32px; } }

@media only screen and (min-width: 1920px) {
  .photos-section .photos-body .photos-container.left {
    margin-right: 20px; }
    .photos-section .photos-body .photos-container.left .row:first-child {
      margin-bottom: 20px; }
    .photos-section .photos-body .photos-container.left .row .photo:first-child {
      margin-right: 20px; }
  .photos-section .photos-body .photos-container.right {
    margin-left: 20px; }
    .photos-section .photos-body .photos-container.right .column {
      margin-right: 20px; }
      .photos-section .photos-body .photos-container.right .column .photo:first-child {
        margin-bottom: 20px; }
    .photos-section .photos-body .photos-container.right .photo.full-column {
      height: 640px; }
  .photos-section .photos-body .photos-container .photo {
    height: 310px; }
  .photos-section .photos-body .video-container {
    height: 640px;
    width: 1138px; }
    .photos-section .photos-body .video-container .photo {
      height: 640px; } }

@media only screen and (min-width: 2560px) {
  .photos-section .photos-body .photos-container.left, .photos-section .photos-body .photos-container.right {
    width: 27.5%; } }

.endorsements-section.shadow-box h2.secondary-heading.purple-heading.heading {
  max-width: 1060px;
  margin: 0 auto;
  text-align: left; }

.endorsements-section.shadow-box .endorsements-container {
  display: grid;
  margin-top: 64px;
  grid-template-columns: 100%;
  grid-gap: 32px;
  margin-bottom: 80px; }
  .endorsements-section.shadow-box .endorsements-container .endorsement {
    display: flex;
    flex-direction: column;
    height: 323px;
    width: 100%; }
    .endorsements-section.shadow-box .endorsements-container .endorsement.endorsement-2, .endorsements-section.shadow-box .endorsements-container .endorsement.endorsement-3, .endorsements-section.shadow-box .endorsements-container .endorsement.endorsement-4 {
      display: none; }
    .endorsements-section.shadow-box .endorsements-container .endorsement-photo {
      height: 60px;
      width: 60px;
      border-radius: 50%; }
    .endorsements-section.shadow-box .endorsements-container .endorsement-name {
      font-family: "Space Grotesk", serif;
      font-size: 24px;
      font-weight: 700;
      line-height: 28.8px;
      text-align: left;
      margin: 26px 0 4px 0;
      color: #632B5E; }
    .endorsements-section.shadow-box .endorsements-container .endorsement-twitter-handle {
      font-family: "Space Grotesk", serif;
      font-size: 16px;
      font-weight: 400;
      line-height: 19.2px;
      text-align: left; }
    .endorsements-section.shadow-box .endorsements-container .endorsement-text {
      font-family: "Space Grotesk", serif;
      font-weight: 400;
      text-align: left;
      color: #632B5E;
      max-height: 120px;
      opacity: 0.8;
      font-size: 24px;
      line-height: 28.8px;
      overflow: hidden;
      display: -webkit-box;
      -webkit-line-clamp: 4;
      -webkit-box-orient: vertical;
      text-overflow: ellipsis; }
    .endorsements-section.shadow-box .endorsements-container .endorsement-link {
      font-family: "Montserrat", serif;
      color: #FF5F00;
      text-transform: uppercase;
      font-size: 20px;
      letter-spacing: 0.05em;
      font-weight: 900;
      line-height: 24.38px;
      text-decoration-line: underline;
      text-decoration-style: solid;
      margin-top: auto; }

@media only screen and (min-width: 600px) {
  .endorsements-section.shadow-box .endorsements-container {
    grid-template-columns: calc(50% - 16px) calc(50% - 16px); }
    .endorsements-section.shadow-box .endorsements-container .endorsement.endorsement-2 {
      display: flex; } }

@media only screen and (min-width: 1024px) {
  .endorsements-section.shadow-box {
    margin-bottom: 160px;
    margin-top: 160px; }
  .endorsements-section.shadow-box .endorsements-container {
    grid-template-columns: calc(33.3333% - 32px) calc(33.3333% - 32px) calc(33.3333% - 32px);
    grid-gap: 48px; }
    .endorsements-section.shadow-box .endorsements-container .endorsement.endorsement-3 {
      display: flex; } }

@media only screen and (min-width: 1440px) {
  .endorsements-section.shadow-box .endorsements-container {
    grid-template-columns: calc(25% - 60px) calc(25% - 60px) calc(25% - 60px) calc(25% - 60px);
    grid-gap: 80px; }
    .endorsements-section.shadow-box .endorsements-container .endorsement.endorsement-4 {
      display: flex; } }

.bottom-gray-section {
  background-color: #FFFAF7;
  padding: 0 0 48px;
  position: relative;
  overflow: hidden; }
  .bottom-gray-section .gray-d-left {
    position: absolute;
    top: -100px;
    left: -300px;
    z-index: 1; }
  .bottom-gray-section .gray-d-right {
    position: absolute;
    bottom: -1600px;
    right: -1000px;
    z-index: 1; }
  .bottom-gray-section .content-container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1060px;
    margin: 0 auto; }
  .bottom-gray-section .endorsements-section {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 0 32px;
    position: relative;
    box-sizing: border-box;
    overflow: hidden; }
  .bottom-gray-section .endorsements-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: calc(100% - 40px);
    box-sizing: border-box; }
  .bottom-gray-section .endorsement {
    width: calc(25% - 20px);
    margin: 10px;
    box-sizing: border-box;
    max-width: 100%; }
  .bottom-gray-section .photos-body {
    width: 100vw;
    margin-left: calc(-50vw + 50%); }

@media only screen and (min-width: 600px) {
  .bottom-gray-section {
    padding: 0; }
    .bottom-gray-section .gray-d-right {
      bottom: -1800px; } }

@media only screen and (min-width: 768px) {
  .bottom-gray-section {
    padding: 0; }
    .bottom-gray-section .gray-d-right {
      bottom: -1300px; } }

@media only screen and (min-width: 1024px) {
  .bottom-gray-section {
    padding: 0; } }

@media only screen and (min-width: 1920px) {
  .bottom-gray-section .gray-d-right {
    position: absolute;
    bottom: -900px;
    right: -900px;
    z-index: 1; } }

.tickets-section {
  overflow: hidden;
  background-color: #6F356A;
  padding: 160px 0 160px 0;
  text-align: center; }
  .tickets-section .content {
    max-width: 1060px;
    margin: 0 auto;
    width: 100%;
    text-align: left;
    position: relative;
    z-index: 20;
    display: flex;
    flex-direction: column; }
    .tickets-section .content .heading {
      text-align: left;
      font-family: "Montserrat", serif;
      font-weight: 900;
      font-size: 40px;
      line-height: 38px;
      text-transform: uppercase;
      color: #FFFAF7;
      padding-bottom: 24px; }
    .tickets-section .content .subheading {
      text-align: left;
      font-family: "Space Grotesk", serif;
      font-weight: 600;
      font-size: 30px;
      line-height: 36px;
      color: #FFFAF7;
      padding-bottom: 64px; }
    .tickets-section .content .buy-section .button-container {
      display: flex;
      flex-direction: row;
      justify-content: center;
      gap: 16px;
      align-items: center; }
      .tickets-section .content .buy-section .button-container .or-text {
        text-align: center;
        font-weight: 400;
        color: #FFFAF7;
        font-size: 20px;
        font-family: "Space Grotesk", sans-serif;
        line-height: 24px; }
    .tickets-section .content .buy-section .order-button {
      background-color: #FF5F00;
      text-align: center;
      text-decoration: none;
      padding: 20px;
      max-width: 215px; }
      .tickets-section .content .buy-section .order-button .button-text {
        text-decoration: none;
        font-family: "Montserrat", sans-serif;
        text-transform: uppercase;
        color: #FFFFFF;
        font-weight: 900;
        font-size: 16px;
        line-height: 19.5px;
        letter-spacing: 0.05em; }
    .tickets-section .content .buy-section .order-by-invoice {
      background-color: #FFFFFF;
      border: 2px solid #FF5F00;
      text-align: center;
      text-decoration: none;
      padding: 18px; }
      .tickets-section .content .buy-section .order-by-invoice .button-text {
        text-decoration: none;
        font-family: "Montserrat", sans-serif;
        text-transform: uppercase;
        color: #FF5F00;
        font-weight: 900;
        font-size: 16px;
        line-height: 19.5px;
        letter-spacing: 0.05em; }
    .tickets-section .content .buy-section .disabled {
      display: none; }
    .tickets-section .content .tickets-container {
      display: flex;
      flex-direction: column;
      align-items: stretch;
      gap: 16px;
      margin-bottom: 64px; }
      .tickets-section .content .tickets-container .ticket {
        padding: 32px 24px;
        display: flex;
        justify-content: space-between;
        align-items: stretch;
        border: 1px solid #ccc;
        border-radius: 8px;
        background-color: #fff;
        gap: 16px;
        max-height: 127px; }
        .tickets-section .content .tickets-container .ticket .left-section, .tickets-section .content .tickets-container .ticket .right-section {
          display: flex;
          flex-direction: column;
          justify-content: space-between; }
        .tickets-section .content .tickets-container .ticket .left-section {
          text-align: left;
          max-width: 680px; }
        .tickets-section .content .tickets-container .ticket .tight {
          max-width: 600px; }
        .tickets-section .content .tickets-container .ticket .right-section {
          text-align: right; }
        .tickets-section .content .tickets-container .ticket .ticket-heading {
          font-family: "Montserrat", serif;
          font-size: 24px;
          font-weight: 900;
          line-height: 21.6px;
          text-transform: uppercase;
          color: #6F356A; }
        .tickets-section .content .tickets-container .ticket .ticket-subsubheading {
          font-size: 16px;
          font-weight: 400;
          line-height: 19.2px;
          color: #6F356A; }
        .tickets-section .content .tickets-container .ticket .ticket-price {
          font-family: "Montserrat", serif;
          font-size: 40px;
          font-weight: 900;
          line-height: 38px;
          color: #6F356A; }
        .tickets-section .content .tickets-container .ticket .ticket-subtitle {
          font-size: 20px;
          font-weight: 400;
          line-height: 24px;
          color: #6F356A; }
    .tickets-section .content .ticket-terms {
      font-family: "Space Grotesk", serif;
      font-weight: 400;
      color: white;
      font-size: 20px;
      text-align: left; }
      .tickets-section .content .ticket-terms p {
        margin: 0; }
      .tickets-section .content .ticket-terms .link {
        font-family: "Montserrat", sans-serif;
        color: #FF5F00;
        font-weight: 900;
        text-decoration: underline;
        font-size: 20px;
        line-height: 24.38px;
        text-transform: uppercase; }
    .tickets-section .content .subtickets {
      color: #ffffff;
      font-size: 20px;
      font-weight: 400;
      letter-spacing: 0.83px;
      margin: 0; }
      .tickets-section .content .subtickets .bold {
        font-weight: 600; }
      .tickets-section .content .subtickets .link {
        color: #ffffff;
        font-weight: 500;
        text-decoration: underline; }
    .tickets-section .content .countdown {
      display: flex;
      flex-direction: column;
      align-items: center;
      color: #ffffff;
      margin: 24px 0; }
      .tickets-section .content .countdown .countdown-heading {
        font-size: 20px;
        font-weight: 500;
        letter-spacing: 5px;
        text-transform: uppercase; }
      .tickets-section .content .countdown .tiles-container {
        display: grid;
        grid-template-columns: 100px 100px;
        grid-gap: 20px; }
        .tickets-section .content .countdown .tiles-container .tile-container .tile {
          display: flex;
          height: 120px;
          border-radius: 4px;
          background-image: linear-gradient(to top, #55ccb9 0%, #5aabaa 51%, #55ccb9 100%);
          align-items: center;
          justify-content: center; }
          .tickets-section .content .countdown .tiles-container .tile-container .tile-text {
            height: 55px;
            font-size: 40px;
            font-weight: 700;
            text-transform: uppercase;
            margin: 0; }
        .tickets-section .content .countdown .tiles-container .tile-container .tile-heading {
          font-size: 15px;
          font-weight: 400;
          letter-spacing: 0.94px;
          text-transform: uppercase;
          margin-bottom: 0; }
    .tickets-section .content .tickets-text {
      text-align: left;
      color: #ffffff;
      font-size: 20px;
      font-weight: 400;
      letter-spacing: 0.83px;
      padding-top: 160px;
      padding-bottom: 16px; }
      .tickets-section .content .tickets-text .problem-text {
        margin-bottom: 24px; }
      .tickets-section .content .tickets-text .link {
        font-family: "Montserrat", sans-serif;
        color: #FF5F00;
        font-weight: 900;
        text-decoration: underline;
        font-size: 20px;
        line-height: 24.38px;
        text-transform: uppercase; }

@media only screen and (min-width: 601px) {
  .tickets-section .content .tickets-container .ticket .left-section {
    width: 680px;
    max-height: 63px; }
    .tickets-section .content .tickets-container .ticket .left-section .tight {
      max-width: 570px; } }

@media only screen and (max-width: 600px) {
  .tickets-section {
    padding-top: 120px;
    padding-bottom: 120px; }
    .tickets-section .content .heading {
      font-size: 24px;
      line-height: 21.6px; }
    .tickets-section .content .subheading {
      font-size: 20px;
      line-height: 24px; }
    .tickets-section .content .or-text {
      font-size: 20px;
      line-height: 24px; }
    .tickets-section .content .tickets-text .link {
      font-size: 20px;
      line-height: 24.38px; }
    .tickets-section .content .tickets-container .ticket {
      width: 313px;
      padding: 24px 16px;
      gap: 16px;
      flex-direction: column;
      justify-content: space-between;
      max-height: none;
      height: 200px; }
      .tickets-section .content .tickets-container .ticket .ticket-heading {
        font-size: 20px;
        line-height: 18px; }
      .tickets-section .content .tickets-container .ticket .ticket-subsubheading {
        font-size: 16px;
        line-height: 19.2px;
        width: 281px; }
      .tickets-section .content .tickets-container .ticket .ticket-subheading {
        font-size: 16px;
        line-height: 19.2px; }
      .tickets-section .content .tickets-container .ticket .ticket-price {
        font-size: 32px;
        line-height: 30.4px; }
      .tickets-section .content .tickets-container .ticket .ticket-subtitle {
        font-size: 18px;
        line-height: 21.6px; }
      .tickets-section .content .tickets-container .ticket .left-section, .tickets-section .content .tickets-container .ticket .right-section {
        max-width: 100%;
        text-align: left;
        flex: 1; }
      .tickets-section .content .tickets-container .ticket .left-section {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        max-height: 80px; }
      .tickets-section .content .tickets-container .ticket .right-section {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        max-height: 50px; }
    .tickets-section .content .tickets-container .tight-ticket {
      max-height: none;
      height: 220px; }
    .tickets-section .content .ticket-terms {
      font-size: 18px;
      font-weight: 400; }
      .tickets-section .content .ticket-terms .link {
        font-size: 20px;
        line-height: 24.38px; }
    .tickets-section .content .buy-section .button-container {
      flex-direction: column; }
    .tickets-section .content .buy-section .order-button, .tickets-section .content .buy-section .order-by-invoice {
      font-size: 16px; } }

@media (max-width: 1120px) {
  .tickets-section {
    padding-left: 32px;
    padding-right: 32px; }
  .ticket {
    width: 100%;
    box-sizing: border-box; } }

.talks-section {
  background-color: #f6f6f9;
  padding: 32px 16px; }
  .talks-section .talks-container {
    display: grid;
    grid-template-columns: 1fr;
    margin: 26px 0;
    grid-gap: 16px; }
    .talks-section .talks-container .talk {
      margin-bottom: 32px;
      width: 100%;
      max-width: 300px;
      min-height: 222px; }
      .talks-section .talks-container .talk-title {
        font-size: 24px;
        font-weight: 600;
        letter-spacing: 0.04px; }
      .talks-section .talks-container .talk-speaker {
        font-size: 18px;
        font-weight: 400;
        line-height: 30px; }
      .talks-section .talks-container .talk .topics-container {
        margin: 8px 0 12px; }
      .talks-section .talks-container .talk.talk-2, .talks-section .talks-container .talk.talk-3, .talks-section .talks-container .talk.talk-4 {
        display: none; }
  .talks-section .button-container {
    display: block; }
    .talks-section .button-container .view-schedule {
      display: block;
      margin: 32px 0 0 0;
      width: 175px; }

@media only screen and (min-width: 600px) {
  .talks-section {
    padding: 32px; }
    .talks-section .talks-container {
      grid-template-columns: 50% 50%; }
      .talks-section .talks-container .talk {
        max-width: unset; }
        .talks-section .talks-container .talk.talk-2 {
          display: block; } }

@media only screen and (min-width: 600px) {
  .talks-section {
    padding: 48px; } }

@media only screen and (min-width: 1024px) {
  .talks-section {
    padding: 64px; }
    .talks-section .talks-container {
      grid-gap: 24px;
      grid-template-columns: 33.33% 33.33% 33.33%; }
      .talks-section .talks-container .talk.talk-3 {
        display: block; } }

@media only screen and (min-width: 1440px) {
  .talks-section {
    padding: 64px 170px; }
    .talks-section .talks-container {
      grid-gap: 32px;
      grid-template-columns: 25% 25% 25% 25%; }
      .talks-section .talks-container .talk.talk-4 {
        display: block; } }

.keynote-section {
  background: #eeeef2;
  padding: 32px 16px;
  position: relative;
  overflow: hidden;
  margin: 0; }
  .keynote-section .gray-d-left {
    position: absolute;
    top: 0;
    left: -250px;
    bottom: 0; }
  .keynote-section .content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 20; }
    .keynote-section .content .announcement-text {
      color: #ffffff; }
    .keynote-section .content .keynote-container {
      display: grid;
      margin-top: 32px;
      grid-gap: 16px;
      justify-items: center; }
      .keynote-section .content .keynote-container .host {
        position: relative;
        width: 100%;
        max-width: 332px;
        max-height: 332px; }
        .keynote-section .content .keynote-container .host .photo {
          width: 100%;
          -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
          -webkit-transition: filter 0.5s ease;
          -moz-transition: filter 0.5s ease;
          -ms-transition: filter 0.5s ease;
          -o-transition: filter 0.5s ease;
          transition: filter 0.5s ease; }
        .keynote-section .content .keynote-container .host:hover .photo {
          -webkit-filter: none;
          filter: none; }
        .keynote-section .content .keynote-container .host .host-content {
          position: absolute;
          top: 0;
          bottom: 0;
          left: 0;
          right: 0;
          padding: 20px 16px;
          text-align: left;
          width: calc(100% - 32px);
          display: grid;
          align-content: flex-end; }
          .keynote-section .content .keynote-container .host .host-content::after {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            content: "";
            background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
            opacity: 0.6;
            z-index: 1;
            max-height: 340px; }
          .keynote-section .content .keynote-container .host .host-content .company-logo {
            z-index: 20;
            height: 25px; }
          .keynote-section .content .keynote-container .host .host-content .name {
            text-align: left;
            color: #ffffff;
            margin: 8px 0 0 0;
            font-size: 24px;
            font-weight: 400;
            letter-spacing: 0.04px;
            line-height: 24px;
            text-transform: uppercase;
            z-index: 20; }
        .keynote-section .content .keynote-container .host .button-container {
          position: absolute;
          top: 0;
          right: 0;
          z-index: 20;
          padding: 16px; }
    .keynote-section .content .button-container {
      margin-top: 24px; }
      .keynote-section .content .button-container .view-schedule {
        display: block;
        margin: 32px 0 0 0;
        width: 175px; }

@media only screen and (min-width: 425px) {
  .keynote-section .content .keynote-container {
    grid-gap: 32px; } }

@media only screen and (min-width: 600px) {
  .keynote-section {
    padding: 48px 32px; }
    .keynote-section .content .keynote-container {
      grid-template-columns: 1fr 1fr; } }

@media only screen and (max-width: 767px) {
  .keynote-section .content .keynote-container .host.hide {
    display: none; } }

@media only screen and (min-width: 768px) {
  .keynote-section {
    padding: 64px 32px; }
    .keynote-section .content .keynote-container {
      grid-template-columns: 1fr 1fr 1fr;
      max-width: 1060px; }
    .keynote-section .content .button-container .load-more {
      display: none; } }

@media only screen and (min-width: 1024px) {
  .keynote-section {
    padding: 96px; }
    .keynote-section .info-button {
      display: none; } }

.container-width, .about-section .d-container {
  max-width: 1200px;
  margin: 0 64px; }

.speakers-section {
  background-color: #FFEFE5;
  padding: 160px 16px;
  position: relative;
  overflow: hidden;
  margin: 0; }
  .speakers-section .top-box {
    text-align: left;
    display: flex;
    align-content: flex-start;
    justify-content: flex-start;
    width: 100%;
    max-width: 1060px;
    margin: 0 auto; }
  .speakers-section .content {
    max-width: 1200px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 20;
    margin: 0 auto; }
    .speakers-section .content .announcement-text {
      color: #ffffff; }
    .speakers-section .content .more-speakers-soon-text {
      color: #ffffff;
      font-size: 24px;
      font-weight: 400;
      letter-spacing: 0.83px;
      width: 70%; }
    .speakers-section .content .speakers-container {
      display: grid;
      margin-top: 64px;
      grid-gap: 16px;
      justify-items: center; }
      .speakers-section .content .speakers-container .speaker {
        position: relative;
        width: 100%;
        max-width: 332px;
        max-height: 332px; }
        .speakers-section .content .speakers-container .speaker .photo {
          width: 100%;
          -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
          -webkit-transition: filter 0.5s ease;
          -moz-transition: filter 0.5s ease;
          -ms-transition: filter 0.5s ease;
          -o-transition: filter 0.5s ease;
          transition: filter 0.5s ease; }
        .speakers-section .content .speakers-container .speaker:hover .photo {
          -webkit-filter: none;
          filter: none; }
        .speakers-section .content .speakers-container .speaker:hover .speaker-content .speaker-flag {
          opacity: 1; }
        .speakers-section .content .speakers-container .speaker .speaker-content {
          position: absolute;
          top: 0;
          bottom: 0;
          left: 0;
          right: 0;
          padding: 20px 16px;
          text-align: left;
          width: calc(100% - 32px);
          display: grid;
          align-content: flex-end;
          height: calc(100% - 46px); }
          .speakers-section .content .speakers-container .speaker .speaker-content::after {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            content: "";
            background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
            opacity: 0.6;
            z-index: 1;
            max-height: 340px; }
          .speakers-section .content .speakers-container .speaker .speaker-content .speaker-location {
            position: absolute;
            top: 16px;
            left: 12px;
            width: 36px;
            height: 24px;
            z-index: 999; }
            .speakers-section .content .speakers-container .speaker .speaker-content .speaker-location:hover .flag-tooltip {
              opacity: 1; }
            .speakers-section .content .speakers-container .speaker .speaker-content .speaker-location .flag-tooltip {
              position: absolute;
              top: 0;
              left: 45px;
              padding: 4px 12px 4px 12px;
              backdrop-filter: blur(10px);
              color: #ffffff;
              text-transform: uppercase;
              background-color: rgba(61, 61, 61, 0.4);
              opacity: 0;
              -webkit-transition: 0.5s ease;
              -moz-transition: 0.5s ease;
              -ms-transition: 0.5s ease;
              -o-transition: 0.5s ease;
              transition: 0.5s ease;
              font-weight: 500;
              margin: 0;
              font-size: 16px;
              max-width: 500px; }
          .speakers-section .content .speakers-container .speaker .speaker-content .company-logo {
            z-index: 20;
            height: 25px; }
          .speakers-section .content .speakers-container .speaker .speaker-content .small-logo {
            z-index: 20;
            height: 15px; }
          .speakers-section .content .speakers-container .speaker .speaker-content .speaker-flag {
            width: 35px;
            position: absolute;
            top: 4px;
            -webkit-box-shadow: 0 0 33px 0 rgba(0, 0, 0, 0.75);
            -moz-box-shadow: 0 0 33px 0 rgba(0, 0, 0, 0.75);
            box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.25);
            opacity: 0;
            -webkit-transition: 0.5s ease;
            -moz-transition: 0.5s ease;
            -ms-transition: 0.5s ease;
            -o-transition: 0.5s ease;
            transition: 0.5s ease; }
          .speakers-section .content .speakers-container .speaker .speaker-content .company-name {
            color: white;
            margin: 0;
            text-transform: uppercase;
            font-size: 16px;
            font-weight: 500;
            z-index: 20;
            opacity: 0.8; }
          .speakers-section .content .speakers-container .speaker .speaker-content .name {
            font-family: "Montserrat", serif;
            text-align: left;
            color: #ffffff;
            margin: 4px 0 0 0;
            font-size: 32px;
            font-weight: 900;
            letter-spacing: 0.04px;
            text-transform: uppercase;
            z-index: 20;
            line-height: 30.4px; }
        .speakers-section .content .speakers-container .speaker .button-container {
          position: absolute;
          top: 0;
          right: 0;
          z-index: 20;
          padding-right: 16px;
          margin-top: 16px; }
      .speakers-section .content .speakers-container .speaker.hide {
        display: none; }
    .speakers-section .content .button-container {
      margin-top: 160px; }
      .speakers-section .content .button-container .view-schedule-button {
        padding: 20px;
        display: flex;
        flex-direction: row;
        align-items: center;
        text-decoration: none; }
        .speakers-section .content .button-container .view-schedule-button .button-text {
          color: #ffffff;
          text-transform: uppercase;
          font-family: "Montserrat", serif;
          font-size: 16px;
          font-weight: 700;
          line-height: 16px;
          letter-spacing: 0.05em;
          text-align: center; }
        .speakers-section .content .button-container .view-schedule-button .button-sub-text {
          font-size: 12px;
          letter-spacing: 1.5px; }
        .speakers-section .content .button-container .view-schedule-button .arrow-right {
          height: 16px; }
    .speakers-section .content .button-container .load-more-button {
      all: unset;
      top: 555px;
      left: 851px;
      padding: 20px 0 0 0;
      gap: 15px;
      justify-content: center;
      text-transform: uppercase;
      font-size: 16px;
      background-color: #FF5F00; }
    .speakers-section .content .button-container .load-more {
      all: unset;
      display: block;
      margin-top: 12px;
      top: 555px;
      left: 851px;
      gap: 15px;
      justify-content: center;
      text-transform: uppercase;
      font-size: 16px;
      background-color: #FF5F00;
      padding: 20px; }
      .speakers-section .content .button-container .load-more .button-text {
        color: #ffffff;
        text-transform: uppercase;
        font-family: "Montserrat", serif;
        font-size: 16px;
        font-weight: 700;
        line-height: 19.2px;
        letter-spacing: 0.05em;
        text-align: center; }

@media only screen and (min-width: 358px) {
  .speakers-section .content .speakers-container .speaker .speaker-content {
    height: unset; } }

@media only screen and (min-width: 425px) {
  .speakers-section .content .speakers-container {
    grid-gap: 32px; } }

@media only screen and (max-width: 600px) {
  .speakers-section .top-box {
    text-align: center;
    display: flex;
    align-content: center;
    justify-content: center; } }

@media only screen and (min-width: 600px) {
  .speakers-section {
    padding: 160px 32px; }
    .speakers-section .content .speakers-container {
      grid-template-columns: 1fr 1fr; }
      .speakers-section .content .speakers-container .speaker .speaker-content {
        height: calc(100% - 46px); } }

@media only screen and (min-width: 768px) {
  .speakers-section {
    padding: 160px 32px; }
    .speakers-section .content .speakers-container {
      grid-template-columns: 1fr 1fr 1fr;
      max-width: 1060px; }
      .speakers-section .content .speakers-container .speaker.hide {
        display: block; }
    .speakers-section .content .button-container .load-more {
      display: none; } }

@media only screen and (min-width: 1024px) {
  .speakers-section {
    padding: 160px 32px; }
    .speakers-section .info-button {
      display: none; }
    .speakers-section .content .speakers-container .speaker .speaker-content .speaker-location {
      left: unset;
      right: 12px; }
      .speakers-section .content .speakers-container .speaker .speaker-content .speaker-location .flag-tooltip {
        left: unset;
        right: 45px; } }

@media only screen and (min-width: 1235px) {
  .speakers-section .content .speakers-container .speaker .speaker-content {
    height: unset; } }

@media only screen and (max-width: 1500px) {
  .speakers-section .top-box {
    text-align: center;
    margin: 0; } }

.hosts-section {
  background-color: #FFEFE5;
  /* Set background color */
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 20;
  padding: 64px 16px 36px 16px;
  overflow: hidden; }
  .hosts-section .gray-d {
    position: absolute;
    top: -100px;
    left: -300px;
    z-index: -1; }
  .hosts-section .announcement-text {
    color: #ffffff; }
  .hosts-section .hosts-container {
    display: grid;
    margin-top: 32px;
    grid-gap: 16px;
    justify-items: center; }
    .hosts-section .hosts-container .host {
      position: relative;
      width: 100%;
      max-width: 332px;
      max-height: 332px; }
      .hosts-section .hosts-container .host .photo {
        width: 100%;
        -webkit-filter: grayscale(100%);
        filter: grayscale(100%);
        -webkit-transition: filter 0.5s ease;
        -moz-transition: filter 0.5s ease;
        -ms-transition: filter 0.5s ease;
        -o-transition: filter 0.5s ease;
        transition: filter 0.5s ease; }
      .hosts-section .hosts-container .host:hover .photo {
        -webkit-filter: none;
        filter: none; }
      .hosts-section .hosts-container .host .host-content {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 20px 16px;
        text-align: left;
        width: calc(100% - 32px);
        display: grid;
        align-content: flex-end; }
        .hosts-section .hosts-container .host .host-content::after {
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          content: "";
          background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
          opacity: 0.6;
          z-index: 1;
          max-height: 340px; }
        .hosts-section .hosts-container .host .host-content .company-logo {
          z-index: 20;
          height: 25px; }
        .hosts-section .hosts-container .host .host-content .name {
          text-align: left;
          color: #ffffff;
          margin: 8px 0 0 0;
          font-size: 24px;
          font-weight: 400;
          letter-spacing: 0.04px;
          line-height: 24px;
          text-transform: uppercase;
          z-index: 20; }
      .hosts-section .hosts-container .host .button-container {
        position: absolute;
        top: 0;
        right: 0;
        z-index: 20;
        padding-right: 16px;
        margin-top: 16px; }

@media only screen and (min-width: 425px) {
  .hosts-section .hosts-container {
    grid-gap: 32px; } }

@media only screen and (min-width: 600px) {
  .hosts-section .hosts-container {
    grid-template-columns: 1fr 1fr; } }

@media only screen and (max-width: 767px) {
  .hosts-section .hosts-container .host.hide {
    display: none; } }

@media only screen and (min-width: 768px) {
  .hosts-section {
    padding-bottom: 64px; }
    .hosts-section .hosts-container {
      grid-template-columns: 1fr 1fr 1fr;
      max-width: 1060px; } }

@media only screen and (min-width: 1024px) {
  .hosts-section {
    padding-bottom: 96px; }
    .hosts-section .info-button {
      display: none; } }

.media-section {
  text-align: left;
  display: flex;
  flex-direction: column;
  padding-top: 320px;
  padding-bottom: 160px;
  max-width: 1060px;
  width: 100%; }
  .media-section .subheading {
    font-family: "Space Grotesk", serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    color: #6F356A;
    padding-bottom: -24px; }
  .media-section .top-line .media {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-direction: row;
    gap: 40px; }
    .media-section .top-line .media .item {
      display: flex;
      margin: 0;
      height: 48px;
      align-items: center; }
      .media-section .top-line .media .item a.item-link {
        font-family: "Montserrat", serif;
        color: #FF5F00;
        font-size: 20px;
        text-decoration: none;
        font-weight: 900;
        text-transform: uppercase;
        line-height: 24.38px;
        letter-spacing: 0.05em; }
  @media only screen and (max-width: 1000px) {
    .media-section .top-line .media {
      flex-direction: column;
      gap: 16px;
      align-items: flex-start; }
    .media-section .media-section {
      text-align: center; }
    .media-section .subheading {
      text-align: left; } }

@media only screen and (max-width: 1130px) {
  .media-section {
    margin-left: 32px;
    margin-right: 32px; } }

.workshops-section {
  padding: 32px 16px; }
  .workshops-section h2 {
    text-align: center; }
  .workshops-section .workshops-container {
    display: flex;
    flex-wrap: wrap; }
    .workshops-section .workshops-container .workshop {
      max-width: 450px;
      margin: 0 auto 32px auto;
      width: 100%;
      min-height: 275px; }
      .workshops-section .workshops-container .workshop-title {
        font-size: 24px;
        font-weight: 600;
        letter-spacing: 0.04px;
        text-align: center; }
      .workshops-section .workshops-container .workshop-logo-container {
        margin-top: 12px;
        width: fit-content;
        margin: auto; }
        .workshops-section .workshops-container .workshop-logo-container .logo {
          max-height: 64px; }
      .workshops-section .workshops-container .workshop .topics-container {
        margin: 8px 0; }
        .workshops-section .workshops-container .workshop .topics-container .topic {
          height: 22px; }
      .workshops-section .workshops-container .workshop .link-container {
        height: 58px;
        width: fit-content;
        margin: auto; }
      .workshops-section .workshops-container .workshop .button-container {
        height: 58px;
        width: fit-content;
        margin: auto; }
  .workshops-section .see-more-text {
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0.83px; }

@media only screen and (min-width: 600px) {
  .workshops-section {
    padding: 32px; } }

@media only screen and (min-width: 768px) {
  .workshops-section {
    padding: 48px; }
    .workshops-section .workshops-container {
      margin: 48px 0; } }

@media only screen and (min-width: 1024px) {
  .workshops-section {
    padding: 64px; }
    .workshops-section .workshops-container .workshop {
      margin-bottom: 80px; } }

@media only screen and (min-width: 1440px) {
  .workshops-section {
    padding: 64px 80px 0px 80px;
    max-width: 1500px;
    margin: auto; }
    .workshops-section .workshops-container {
      margin: 80px 0 0 0; } }

@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; } }

@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 hr {
    border: none;
    border-top: 1px solid #632B5E;
    margin: 4px 0; }
  .speaker-modal .more-info-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; }
  .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-container {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-between;
        gap: 40px; }
        .speaker-modal .modal-content .talk-container .top-container .top-line {
          display: flex;
          flex-direction: column;
          gap: 24px; }
          .speaker-modal .modal-content .talk-container .top-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 .modal-content .talk-container .top-container {
    display: flex;
    flex-direction: row;
    align-items: center; }
  .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 .modal-content .talk-container .top-container {
    display: flex;
    flex-direction: row;
    align-items: center; }
  .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 .talk-container .top-container {
    display: flex;
    flex-direction: row;
    align-items: center; }
  .speaker-modal .modal-content .tip {
    max-width: 1000px;
    display: block;
    text-align: center;
    font-size: 13px;
    margin-top: 0; } }

.workshop-modal {
  padding: 0;
  background-color: #f6f6f9;
  text-align: left;
  color: #000000;
  position: relative;
  overflow-y: auto;
  min-height: 100vh;
  height: calc(100vh + 12px);
  max-width: 620px; }
  .workshop-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;
    outline: none; }
  .workshop-modal .modal-content {
    display: grid;
    grid-template-columns: 100%;
    margin: 32px 0 48px;
    flex: 1;
    padding: 0 32px; }
    .workshop-modal .modal-content .title {
      font-size: 28px;
      font-weight: 600;
      letter-spacing: 0.04px;
      margin: 0; }
    .workshop-modal .modal-content .logo-container {
      margin: 16px 0; }
      .workshop-modal .modal-content .logo-container .logo {
        max-height: 64px; }
    .workshop-modal .modal-content .description {
      opacity: 0.6;
      font-size: 18px;
      font-weight: 400;
      line-height: 30px;
      margin-bottom: 0; }
    .workshop-modal .modal-content .info-container {
      margin-top: 16px;
      opacity: 0.6;
      font-size: 18px;
      font-weight: 400;
      line-height: 30px;
      margin-bottom: 0; }
      .workshop-modal .modal-content .info-container .text {
        margin: 4px 0; }
        .workshop-modal .modal-content .info-container .text .bold {
          font-weight: 600; }
      .workshop-modal .modal-content .info-container .sub-info {
        margin-bottom: 0; }
    .workshop-modal .modal-content .button-container {
      margin-top: 28px; }

@media only screen and (min-width: 600px) {
  .workshop-modal {
    min-height: unset;
    height: unset;
    margin-bottom: 0; }
    .workshop-modal .modal-close {
      right: 0;
      margin-top: 16px; } }

@media only screen and (min-width: 768px) {
  .workshop-modal {
    max-width: 700px; }
    .workshop-modal .modal-content {
      margin: 32px 0 60px;
      padding: 0 48px; } }

.overlay-section {
  min-height: 100vh;
  background: url("../images/background-photo-bw.jpg") center center no-repeat;
  background-size: auto 100%;
  position: relative;
  overflow: hidden; }
  .overlay-section .gradient-container {
    display: flex;
    background: linear-gradient(-33deg, rgba(111, 53, 106, 0.89) 0%, rgba(111, 53, 106, 0.85) 100%, #ee5a6d 100%);
    flex: 1;
    position: relative;
    overflow: hidden;
    min-height: 100vh; }
    .overlay-section .gradient-container .content-container {
      display: flex;
      flex-direction: column;
      flex: 1;
      width: 100%;
      position: relative;
      justify-content: center;
      align-items: center;
      z-index: 2; }
      .overlay-section .gradient-container .content-container .buttons-container {
        display: grid;
        grid-template-columns: 1fr;
        grid-gap: 16px; }
        .overlay-section .gradient-container .content-container .buttons-container .white-button {
          text-decoration: none;
          font-size: 28px;
          width: 260px; }
          .overlay-section .gradient-container .content-container .buttons-container .white-button.purple {
            color: #6f356a; }
          .overlay-section .gradient-container .content-container .buttons-container .white-button.dark-green {
            color: #3d9f9f; }
          .overlay-section .gradient-container .content-container .buttons-container .white-button.orange {
            color: #ffac3b; }
          .overlay-section .gradient-container .content-container .buttons-container .white-button.pink {
            color: #be4c6c; }
          .overlay-section .gradient-container .content-container .buttons-container .white-button.light-green {
            color: #55ddc4; }
        .overlay-section .gradient-container .content-container .buttons-container button.white-button {
          width: 304px;
          cursor: pointer; }

.white-button {
  background: #ffffff;
  border: none;
  border-radius: 4px;
  padding: 16px;
  font-size: 16px;
  width: 175px;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.83px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  display: inline-block;
  user-select: none;
  cursor: pointer; }

@media only screen and (min-width: 768px) {
  .white-button {
    padding: 22px;
    font-size: 20px; } }

.purple-button {
  box-shadow: 0 10px 20px rgba(115, 66, 111, 0.3);
  border-radius: 4px;
  background-image: linear-gradient(135deg, #a865a3 0%, #6f356a 100%);
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.83px;
  padding: 18px 30px 18px 25px;
  user-select: none; }
  .purple-button .arrow-right {
    margin-left: 20px; }

.green-button {
  padding: 18px 14px 18px 12px;
  text-transform: uppercase;
  border: none;
  font-weight: 600;
  color: #ffffff;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 10px 20px rgba(115, 66, 111, 0.3);
  border-radius: 4px;
  background: transparent linear-gradient(-42deg, #5aa9a9 0%, #54d5bd 100%);
  user-select: none; }

.orange-button {
  top: 555px;
  left: 851px;
  padding: 20px 0 0 0;
  gap: 15px;
  justify-content: center;
  text-transform: uppercase;
  font-size: 16px;
  background-color: #FF5F00; }

.blue-button {
  border-radius: 4px;
  color: white;
  background-color: #0084ff;
  text-decoration: none;
  padding: 12px 16px;
  font-size: 18px;
  box-shadow: 0 10px 20px rgba(115, 66, 111, 0.3);
  display: flex;
  max-width: 280px; }
  .blue-button img {
    width: 28px;
    height: 28px;
    margin-left: 10px; }

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; }

.shadow-box {
  padding: 24px 16px 16px 16px;
  margin: 0 16px;
  position: relative; }

.arrows-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%); }
  .arrows-container .left-arrow {
    cursor: pointer;
    margin-right: 12px; }
    .arrows-container .left-arrow.disabled {
      cursor: not-allowed; }
  .arrows-container .right-arrow {
    cursor: pointer;
    margin-left: 12px; }
    .arrows-container .right-arrow.disabled {
      cursor: not-allowed; }
  .arrows-container .points-container {
    display: flex;
    flex-direction: row;
    align-items: center; }
    .arrows-container .points-container .point {
      background-color: #000000;
      opacity: 0.2;
      width: 6px;
      height: 6px;
      margin: 0 8px;
      border-radius: 3px; }
      .arrows-container .points-container .point.active {
        opacity: 1; }

@media only screen and (min-width: 600px) {
  .shadow-box {
    padding: 32px 24px 24px 24px;
    margin: 0 48px; }
  .arrows-container {
    bottom: 24px; } }

@media only screen and (min-width: 900px) {
  .shadow-box {
    padding: 56px 48px 64px 48px; } }

@media only screen and (min-width: 1200px) {
  .shadow-box {
    padding: 75px 70px 90px 70px; } }

@media only screen and (min-width: 1376px) {
  .shadow-box {
    margin: 0 100px; } }

.topics-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap; }
  .topics-container .topic {
    border-radius: 16px;
    color: #ffffff;
    font-weight: 700; }
    .topics-container .topic.long {
      width: 134px; }
    .topics-container .topic.extra-long {
      width: 210px; }
    .topics-container .topic:first-child {
      margin-left: 0; }
    .topics-container .topic:last-child {
      margin-right: 0;
      margin-left: 0; }
    .topics-container .topic.light-purple {
      background-color: #be4c6c; }
    .topics-container .topic.dark-green {
      background-color: #3d9f9f; }
    .topics-container .topic.light-green {
      background-color: #55ddc4; }
    .topics-container .topic.purple {
      background-color: #73426f; }
    .topics-container .topic.dark-green {
      background-color: #3d9f9f; }
    .topics-container .topic.orange {
      background-color: #ffac3b; }
    .topics-container .topic.pink {
      background-color: #e1566d; }

.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); } }

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); } }

.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;
  cursor: pointer; }

.button-text {
  font-family: "Montserrat", serif; }

.secondary-button {
  color: #FF5F00;
  border: 2px solid #FF5F00;
  cursor: pointer; }

.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 {
  width: 1024px;
  display: grid;
  padding-top: 24px;
  grid-template-columns: 1fr 724px 1fr;
  grid-template-rows: auto;
  /* First row can have auto height or a specific value */
  grid-auto-rows: 55px;
  --gap: 2rem;
  --line-offset: calc(var(--gap) / 2);
  --line-thickness: 1px;
  --line-color: #632B5E;
  overflow: hidden;
  gap: var(--gap); }

.schedule > :nth-child(-n + X) {
  /* X is the number of items in the first row */
  height: auto;
  /* Or any other value */ }

.hall {
  display: grid;
  grid-template-rows: repeat(auto-fit, minmax(30px, auto)); }

.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(2, 362px);
  column-gap: 0;
  justify-items: center; }

.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 .topics {
    margin-top: 8px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px; }
    .event .topics .topic-badge {
      border: 2px solid #FFFAF7;
      padding: 12px;
      font-family: "Montserrat", serif;
      font-size: 12px;
      font-weight: 900;
      line-height: 14.63px; }

.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-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 {
    width: auto;
    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; } }

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; } }

@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; }

.map-modal {
  width: auto;
  max-width: 100vw;
  border-radius: 8px;
  padding: 0;
  background-color: #FFFAF7;
  text-align: left;
  color: #000000;
  position: relative;
  overflow-y: auto; }
  .map-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; }
  .map-modal .content {
    display: grid;
    grid-template-columns: 100%;
    gap: 16px;
    margin-top: 24px;
    padding: 40px;
    padding-bottom: 24px; }
    .map-modal .content .title {
      text-align: center; }
    .map-modal .content .map-img {
      max-width: 100%;
      max-height: calc(100vh - 160px);
      object-fit: contain; }
