/* ::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-thumb {
  background: #888;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
} */
@import '../fonts/Static/Agrandir/Agrandir-Static.css';
@import '../fonts/Static/AgrandirGrotesk/AgrandirGrotesk-Static.css';
@import "bootstrap.min.css";
:root {
  --test_var_2: #ffff;
  --pink_old: #f9b7c3;
  --pink: #ffb1bf;
  --orange_old: #f69b83;
  --orange: #ffae99;
  --yellow_old: #fcd381;
  --yellow: #ffdd99;
  --green_old: #299b85;
  --green: #99ffeb;
  --blue_old: #0075cc;
  --blue: #99daff;
  --purple_old: #6a51b7;
  --purple: #b1c6e0;
  --black: #2c2c2c;
  --white: #ffffff;
  --gray: #b3b3b3;
  scroll-behavior: smooth;
}

.black {
  color: #2c2c2c;
}

.orange_old {
  color: #f69b83;
}

.orange {
  color: #ffae99;
}

.pink_old {
  color: #f9b7c3;
}

.pink {
  color: #ffb1bf;
}

.yellow_old {
  color: #fcd381;
}

.yellow {
  color: #ffdd99;
}

.blue_old {
  color: #0075cc;
}

.blue {
  color: #99daff;
}

.green_old {
  color: #299b85;
}

.green {
  color: #99ffeb;
}

.purple_old {
  color: #6a51b7;
}

.purple {
  color: #6a51b7;
}

.gray-1 {
  color: #eff2f2;
}

.gray-2 {
  color: #d4dce2;
}

.gray-3 {
  color: #a4b0b6;
}

.gray-4 {
  color: #7c868e;
}

.gray-5 {
  color: #59636b;
}

.gray-6 {
  color: #3f4a51;
}

.dark {
  color: #2c2c2c;
}

.darker {
  color: #1c1c1c;
}

.darkest {
  color: #171717;
}

@font-face {
  font-family: "With Sans";
  src: url("../fonts/WithAgrandir-Master.ttf") format("truetype-variations");
  font-weight: 100 900;
  font-stretch: 50% 200%;
  font-display: auto;
}
@font-face {
  font-family: "Agrandir Grotesk";
  src: url("../fonts/AgrandirGroteskVariable.ttf") format("truetype-variations");
  font-weight: 100 900;
  font-stretch: 50% 200%;
  font-display: auto;
}
@font-face {
  font-family: "Agrandir";
  src: url("../fonts/Agrandir-Variable.ttf") format("truetype-variations");
  font-weight: 100 900;
  font-stretch: 50% 200%;
  font-display: auto;
}
@font-face {
  font-family: "Font Awesome 5 Brands";
  font-style: normal;
  font-weight: normal;
  src: url("../fonts/fa-brands-400.eot");
  src: url("../fonts/fa-brands-400.eot?#iefix") format("embedded-opentype"), url("../fonts/fa-brands-400.woff2") format("woff2"), url("../fonts/fa-brands-400.woff") format("woff"), url("../fonts/fa-brands-400.ttf") format("truetype"), url("../fonts/fa-brands-400.svg#fontawesome") format("svg");
  font-display: auto;
}
/* STATIC FONTS */
/* VARIABLE FONTS */
@font-face {
  font-family: "Agrandir Variable";
  src: url("../fonts/Variable/Agrandir-Variable.ttf") format("truetype-variations");
  font-weight: 100 900;
  font-stretch: 50% 200%;
  font-display: swap;
}
@font-face {
  font-family: "Agrandir Grotesk Variable";
  src: url("../fonts/Variable/AgrandirGrotesk-Variable.ttf") format("truetype-variations");
  font-weight: 100 900;
  font-stretch: 50% 200%;
  font-display: swap;
}
@font-face {
  font-family: "With Agrandir Variable";
  src: url("../fonts/Variable/WithAgrandir-Master") format("truetype-variations");
  font-weight: 100 900;
  font-stretch: 50% 200%;
  font-display: swap;
}
/* MIXINS */
/* AGRANDIR VARIABLE */
/* AGRANDIR GROTESK VARIABLE */
.input_slider {
  position: relative;
  z-index: 5;
  height: 200px;
  width: 2px;
  cursor: ns-resize;
}
.input_slider span {
  width: 1px;
  height: 1px;
  margin: 0;
  position: absolute;
  left: -9px;
  padding: 10px;
  cursor: ns-resize;
}
.input_slider span:after {
  height: var(--brushSliderSize);
  width: var(--brushSliderSize);
  top: 100%;
  left: 50%;
  cursor: ns-resize;
  background: #2c2c2c;
}

/*ANIMATIONS*/
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}
/*
.blur-elements {
    position: absolute;
    height: 110vh;

    -webkit-animation-direction: alternate;
    animation-direction: alternate;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    width: 670px;
    height: 1067px;

    background-repeat: no-repeat;

    -webkit-backface-visibility: hidden;
    -moz-filter: blur(60px);
    -o-filter: blur(60px);
    -ms-filter: blur(60px);
    filter: blur(60px) contrast(1.2);
    -webkit-filter: blur(60px) contrast(1.2);
    transform: translateZ(0);
    -webkit-transform: translateZ(0) scale(1.0, 1.0);

    -webkit-transition-duration: 2s;
    -o-transition-duration: 2s;
    transition-duration: 2s;

    -webkit-filter: blur(60px) contrast(1.8);
    filter: blur(60px) contrast(1.8);

}

.blur-right {
    right: 00px;
    top: -10vh;
    -webkit-animation-name: playright;
    animation-name: playright;
    -webkit-animation-duration: 3000ms;
    animation-duration: 3000ms;
    -webkit-animation-timing-function: steps(100);
    animation-timing-function: steps(100);

    -ms-transform: translateX(100px);
    transform: translateX(100px);
    -webkit-transform: translateX(100px);
}

@-webkit-keyframes playright {
    0% { background-position: 0px 0px; }
    100% { background-position: -220200px 0px; }
}
@keyframes playright {
    0% { background-position: 0px 0px; }
    100% { background-position: -220200px 0px; }
}

.blur-left {
    left: -250px;
    top: -20vh;
    -webkit-animation-name: playleft;
    animation-name: playleft;
    -webkit-animation-duration: 4000ms;
    animation-duration: 4000ms;
    -webkit-animation-timing-function: steps(120);
    animation-timing-function: steps(120);
    -webkit-transform: rotate(10deg);
    -ms-transform: rotate(10deg);
    transform: rotate(10deg);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
}

@-webkit-keyframes playleft {
  0% { background-position: 0px 0px; }
  100% { background-position: -80520px 0px; }
}

@keyframes playleft {
  0% { background-position: 0px 0px; }
  100% { background-position: -80520px 0px; }
}
*/
html {
  overflow: hidden;
}

* {
  -webkit-overflow-scrolling: touch;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
  font-family: "Work Sans", sans-serif;
  font-weight: 400;
  line-height: 1.6;
}

a,
a:visited {
  color: var(--purple);
}
a.with_link,
a:visited.with_link {
  color: inherit;
  text-decoration: none;
}
a.with_link:hover,
a:visited.with_link:hover {
  text-decoration: underline;
}

a:not(.cta):hover {
  filter: brightness(0.7);
}

ul {
  list-style: none;
}

video::-webkit-media-controls-panel {
  display: none !important;
  -webkit-appearance: none;
  opacity: 0;
}

video::-webkit-media-controls-play-button {
  display: none !important;
  -webkit-appearance: none;
  opacity: 0;
}

video::-webkit-media-controls-start-playback-button {
  display: none !important;
  -webkit-appearance: none;
  opacity: 0;
}

video::-webkit-media-controls-enclosure {
  display: none !important;
  -webkit-appearance: none;
  opacity: 0;
}

.agrandir {
  font-family: "Agrandir Grotesk", sans-serif;
}

.agrandir-medium-wide {
  font-family: "Agrandir Grotesk Variable Medium Wide", sans-serif !important;
}

.visible {
  display: block !important;
}

.body-noscroll {
  overflow: hidden !important;
  position: fixed !important;
}

.regular {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6;
}

.text-align_center {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.max-width {
  width: 100%;
  max-width: 1350px;
  margin: 0 auto;
  padding: 20px;
}

@media (max-width: 767.98px) {
  .max-width_breakout {
    width: 100vw;
    padding: 0;
    position: relative;
    margin-left: -20px;
    margin-right: -20px;
  }
}
.section-title {
  letter-spacing: 1px;
  margin-bottom: 35px;
  margin-top: 0;
  font-family: "Agrandir Grotesk Variable Medium Grand", "Helvetica", sans-serif;
  font-weight: 500;
}
@supports (font-stretch: normal) {
  .section-title {
    font-stretch: 200%;
  }
}
@supports (font-variation-settings: normal) {
  .section-title {
    font-family: "Agrandir Grotesk Variable", sans-serif;
    font-variation-settings: "wght" 500, "wdth" 200;
  }
}
@media (max-width: 767.98px) {
  .section-title {
    font-family: "Agrandir Grotesk Variable Bold Wide", "Helvetica", sans-serif;
    font-weight: 600;
  }
  @supports (font-stretch: normal) {
    .section-title {
      font-stretch: 150%;
    }
  }
  @supports (font-variation-settings: normal) {
    .section-title {
      font-family: "Agrandir Grotesk Variable", sans-serif;
      font-variation-settings: "wght" 600, "wdth" 150;
    }
  }
}

.mobile_break {
  display: none;
}
@media (max-width: 767.98px) {
  .mobile_break {
    display: block;
  }
}

.desktop_break {
  display: inline-block;
}

@media (max-width: 767.98px) {
  .desktop_only {
    display: none;
  }
}

@media (min-width: 768px) {
  .mobile_only {
    display: none;
  }
}

.no-padding {
  padding: 0;
}

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

body {
  height: 100%;
  margin: 0;
  color: #2c2c2c;
}

.main_wrapper {
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
  position: fixed;
  top: 0;
  left: 0;
}

.main_wrapper > div > * {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  width: 100%;
}

/* TYPOGRAPHY SIZES */
body {
  font-size: 10px;
}
@media (max-width: 374.98px) {
  body {
    font-size: 8px;
  }
}

h1 {
  font-size: 7rem;
  line-height: 1.3;
  font-family: "Agrandir Grotesk Variable Bold Grand", "Helvetica", sans-serif;
  font-weight: 600;
}
@supports (font-stretch: normal) {
  h1 {
    font-stretch: 200%;
  }
}
@supports (font-variation-settings: normal) {
  h1 {
    font-family: "Agrandir Grotesk Variable", sans-serif;
    font-variation-settings: "wght" 600, "wdth" 200;
  }
}
@media (max-width: 767.98px) {
  h1 {
    font-size: 5rem;
  }
}

h2 {
  font-size: 3rem;
  line-height: 1.3;
  font-family: "Agrandir Grotesk Variable Medium Wide", "Helvetica", sans-serif;
  font-weight: 500;
}
@supports (font-stretch: normal) {
  h2 {
    font-stretch: 150%;
  }
}
@supports (font-variation-settings: normal) {
  h2 {
    font-family: "Agrandir Grotesk Variable", sans-serif;
    font-variation-settings: "wght" 500, "wdth" 150;
  }
}
@media (max-width: 767.98px) {
  h2 {
    font-size: 2.6rem;
    line-height: 1.2;
  }
}

h3 {
  font-size: 2.4rem;
  line-height: 1.4;
  margin: 0;
  font-family: "Agrandir Grotesk Variable Medium Wide", "Helvetica", sans-serif;
  font-weight: 500;
}
@supports (font-stretch: normal) {
  h3 {
    font-stretch: 150%;
  }
}
@supports (font-variation-settings: normal) {
  h3 {
    font-family: "Agrandir Grotesk Variable", sans-serif;
    font-variation-settings: "wght" 500, "wdth" 150;
  }
}
h3.heading {
  font-family: "Agrandir Grotesk Variable Light Wide", "Helvetica", sans-serif;
  font-weight: 300;
  letter-spacing: 1.2px;
}
@supports (font-stretch: normal) {
  h3.heading {
    font-stretch: 150%;
  }
}
@supports (font-variation-settings: normal) {
  h3.heading {
    font-family: "Agrandir Grotesk Variable", sans-serif;
    font-variation-settings: "wght" 300, "wdth" 150;
  }
}
@media (max-width: 767.98px) {
  h3.heading {
    font-size: 2.2rem;
  }
}

h4 {
  font-size: 1.8rem;
  line-height: 1.4;
}
@media (max-width: 767.98px) {
  h4 {
    font-size: 1.6rem;
  }
}

p {
  font-family: "Work Sans", Helvetica, sans-serif;
  font-size: 16px;
}
@media (max-width: 374.98px) {
  p {
    font-size: 14px;
  }
}
p.other {
  font-size: 2.4rem;
  color: #2c2c2c;
  line-height: 1.4;
}
@media (max-width: 767.98px) {
  p.other {
    font-size: 1.8rem;
  }
}

img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.cta {
  width: 180px;
  position: relative;
  padding: 10px 20px;
  border: 2px solid var(--purple);
  border-radius: 6px;
  background: var(--purple);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  color: black;
  text-align: center;
  font-weight: 600;
  font-size: 1.5rem;
  text-decoration: none;
  transition: all 0.1s;
  pointer-events: all;
  cursor: normal;
}
@media (max-width: 767.98px) {
  .cta {
    padding: 8px 16px;
  }
}
.cta:hover, .cta:active {
  color: white;
  border-color: var(--purple);
  background-color: var(--purple);
  text-decoration: none;
}
.cta:visited {
  color: white;
}
.cta:visited:hover, .cta:visited:active {
  color: white;
}
.cta.dark {
  color: var(--pink);
  border-color: var(--pink);
}
.cta.dark:hover {
  color: var(--black);
  border-color: var(--pink);
  background-color: var(--pink);
}

/*MAIN NAVIGATION*/
.nav_wrapper {
  width: 100%;
  position: fixed;
  padding: 20px;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease-in-out;
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(10px);
}
.nav_show .nav_wrapper {
  opacity: 1;
}
@media (max-width: 767.98px) {
  .nav_wrapper {
    bottom: 0;
    top: unset;
    left: 0;
    padding: 10px 30px;
  }
}
.nav_wrapper nav {
  max-width: 1301px;
  height: 50px;
  margin: 0 auto;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--black);
}
.nav_wrapper nav > div {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  right: 0;
  top: 0;
  padding: 10px 0;
  color: var(--purple);
}
@media (max-width: 767.98px) {
  .nav_wrapper nav > div {
    width: 100%;
  }
}
.nav_wrapper nav > div h4 {
  text-transform: uppercase;
  font-size: 1.5rem;
  font-weight: 400;
  margin: 0;
  padding: 0 30px;
  margin-right: 0;
  color: inherit;
}
@media (max-width: 767.98px) {
  .nav_wrapper nav > div h4 {
    padding: 0;
    font-size: 1.4rem;
  }
}
@media (max-width: 374.98px) {
  .nav_wrapper nav > div h4 {
    padding: 0;
    font-size: 1.2rem;
  }
}

nav ul {
  height: 100%;
  width: 50%;
  max-width: 450px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  font-size: 15px;
  font-weight: 500;
  background-color: rgba(255, 255, 255, 0.95);
  padding: 10px 20px;
  margin: 0;
  transition: background 0.2s;
  pointer-events: all;
  display: none;
}
@supports ((-webkit-backdrop-filter: none) or (backdrop-filter: none)) {
  nav ul {
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    background-color: rgba(255, 255, 255, 0.7);
  }
}
nav ul a {
  color: inherit !important;
  text-decoration: none;
  padding: 5px 10px;
  text-transform: uppercase;
}
nav ul a:hover {
  text-decoration: underline;
}

/*
*footer
*/
#footer {
  position: relative;
  z-index: 1000;
  padding: 4rem;
  background-color: #fff6df;
}
@media (max-width: 767.98px) {
  #footer {
    height: 290px;
    padding: 15px 0 25px;
  }
}
#footer .container {
  padding: 0 20px;
  margin: 0 auto;
  transform: translateY(4px);
  justify-content: space-between;
}
#footer .container .links {
  justify-content: space-between;
}
#footer .sociables {
  padding: 0;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767.98px) {
  #footer .sociables {
    padding: 20px 15%;
    padding-bottom: 20px;
    margin: 0px 0 0px;
  }
}
#footer .sociables li {
  color: #59636b;
  margin-right: 30px;
  display: inline-block;
  font-size: 1.5rem;
  margin-right: 30px;
}
@media (max-width: 767.98px) {
  #footer .sociables li {
    margin-right: 0;
    font-size: 2rem;
  }
}
#footer .footer-links {
  padding: 4px 0 0;
  list-style-type: none;
}
@media (max-width: 767.98px) {
  #footer .footer-links {
    margin: 20px 0 20px;
  }
}
#footer .footer-links li {
  display: inline;
  margin-right: 30px;
  color: #59636b;
  padding-top: 0.4em;
  width: 100%;
}
@media (max-width: 767.98px) {
  #footer .footer-links li {
    margin: 0 0 15px 0;
    display: inline-block;
  }
}
#footer .footer-links li:last-child {
  margin-right: 0px;
}
#footer .footer-links li a {
  display: inline-block;
  color: inherit;
  font-size: 1.1rem;
}
@media (max-width: 767.98px) {
  #footer .footer-links li a {
    width: 100%;
    font-size: 1.4rem;
    text-align: center;
  }
}
#footer .footer-links li a:hover {
  opacity: 0.7;
}
#footer .copyright {
  color: #59636b;
  font-size: 1.1rem;
  text-align: right;
  padding-top: 0.4em;
}
@media (max-width: 767.98px) {
  #footer .copyright {
    text-align: center;
    margin: 20px auto;
    font-weight: 200;
  }
}
#footer .copyright br {
  display: none;
}
@media (max-width: 767.98px) {
  #footer .copyright br {
    display: block;
  }
}
@media (max-width: 767.98px) {
  #footer .dash {
    display: none;
  }
}

/* SECTIONS */
.full_width_drawing {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  opacity: 1;
}
.full_width_drawing img {
  width: 100%;
  height: 100%;
  -o-object-fit: fill;
  object-fit: fill;
  -o-object-position: center;
  object-position: center;
}
@media (max-width: 767.98px) {
  .full_width_drawing img {
    font-size: 2.6rem;
  }
}

#background {
  width: 100vw;
  height: 100vh;
  position: absolute;
  z-index: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.9;
}
#background img {
  width: 100vw;
  margin: 0 auto;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center center;
  object-position: center center;
  overflow: visible;
}
#background .bg_desktop {
  display: block;
}
#background .bg_mobile {
  display: none;
}
@media (max-width: 991.98px) {
  #background .bg_mobile {
    display: block;
    transform: scale(1.2);
  }
}

.bg_alt {
  background-color: #f1c194;
}

section header h2 {
  margin-bottom: 25px;
}

.tickets-soon-wrapper > div.testclass h4 {
  background-color: var(--pink);
}

.tickets-soon-wrapper > div.testclass #nav-coming-soon:after {
  content: "";
  position: absolute;
  top: 0;
  left: 65%;
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-bottom-color: var(--pink);
  border-top: 0;
  margin-left: -10px;
  margin-top: -10px;
}

/* end DIFFERENT HEADER COLOR ON DARK BACKGROUND */
#section-one {
  position: relative;
  width: 100%;
  height: calc(100 * var(--vh));
  min-height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding-bottom: calc(10 * var(--vh));
  margin-bottom: 34vh;
}
#section-one .text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 0vh;
  z-index: 11;
}
#section-one .text .text-align_center {
  max-width: none;
  width: 100%;
}
#section-one h4 {
  font-family: "Work Sans", Helvetica, sans-serif;
  font-weight: 400;
  margin: 0 auto;
  font-size: 1.5rem;
  text-transform: uppercase;
}
.sold-out #section-one h4 {
  font-size: 1.8rem;
  font-weight: 500;
}
#section-one h1 {
  margin: 20px auto 10px;
  text-align: center;
  line-height: 1.4;
  font-family: "Agrandir Grotesk Variable Bold Wide", "Helvetica", sans-serif;
  font-weight: 600;
}
@supports (font-stretch: normal) {
  #section-one h1 {
    font-stretch: 150%;
  }
}
@supports (font-variation-settings: normal) {
  #section-one h1 {
    font-family: "Agrandir Grotesk Variable", sans-serif;
    font-variation-settings: "wght" 600, "wdth" 150;
  }
}
@media (max-width: 767.98px) {
  #section-one h1 {
    margin: 20px auto;
  }
}
#section-one h3 {
  width: 100%;
  margin: 0 auto;
  font-size: 4em;
  text-align: center;
  line-height: 1.4;
  font-family: "Agrandir Grotesk Variable Regular Grand", "Helvetica", sans-serif;
  font-weight: 400;
}
@supports (font-stretch: normal) {
  #section-one h3 {
    font-stretch: 200%;
  }
}
@supports (font-variation-settings: normal) {
  #section-one h3 {
    font-family: "Agrandir Grotesk Variable", sans-serif;
    font-variation-settings: "wght" 400, "wdth" 200;
  }
}
#section-one .with_logo {
  font-family: "With Sans", sans-serif;
  font-weight: 617;
  font-stretch: 200%;
  font-size: 2.2em;
}
@media (max-width: 767.98px) {
  #section-one .with_logo {
    font-size: 1.8em;
  }
}
#section-one .button {
  margin: 0vh 0 3vh;
  text-align: center;
  color: #6a51b7;
}
@media (max-width: 767.98px) {
  #section-one .button {
    margin: 5vh 0;
  }
}
#section-one .button .cta {
  display: block;
  margin: 20px auto;
  background: transparent;
  color: var(--purple);
}
#section-one .button .cta:hover {
  background: var(--purple);
  color: black;
}

.down_arrow {
  margin: 0 auto;
  position: absolute;
  z-index: 10;
  width: 16px;
  bottom: 3vh;
  transition: opacity 0.2s;
  animation: bounce 2.5s infinite;
  cursor: pointer;
}
@media (max-width: 767.98px) {
  .down_arrow {
    width: 18px;
  }
}

/*SECTION TWO*/
#section-video {
  min-height: 100vh;
  padding: 200px auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 767.98px) {
  #section-video {
    min-height: 70vh;
  }
}
#section-video .vimeo-space {
  padding: 42.25% 0 0 0 !important;
}
@media (max-width: 767.98px) {
  #section-video .vimeo-space {
    padding: 100% 0 0 0 !important;
    background: black;
  }
}
#section-video .legenda {
  width: 100%;
  font-size: 13px;
  color: #a4b0b6;
  text-align: right;
  display: block;
  margin-top: 8px;
  padding: 0 5px;
}
@media (max-width: 767.98px) {
  #section-video .legenda {
    font-size: 12px;
  }
}
#section-video p {
  display: none;
}
@media (max-width: 767.98px) {
  #section-video p {
    display: block;
    margin: 10px 0;
  }
}
#section-video .video_wrapper {
  height: 100%;
  width: 100%;
}

/* SECTION THREE */
#section-intro {
  width: 100%;
}
#section-intro main {
  margin: 4rem 0;
}
#section-intro main .col-md-5 {
  margin-top: 200px;
}
@media (max-width: 767.98px) {
  #section-intro main .col-md-5 {
    display: none;
  }
}
#section-intro main div.max-width_breakout > div {
  padding: 0 20px;
}
#section-intro main .col-md-7 p {
  margin-top: 50px;
}
@media (max-width: 767.98px) {
  #section-intro main .col-md-7 p {
    margin: 50px 0;
  }
}
#section-intro main .col-md-10 {
  margin-top: 30px;
}
#section-intro main h3 {
  margin: 150px auto 50px;
}

/* end SECTION THREE */
/* SECTION FOUR */
#section-spectrums {
  width: 100vw;
  height: 4025px;
  padding: 100px 30px 383.3333333333px;
  color: white !important;
  background-color: #171717;
  margin-top: 140px;
  margin-bottom: 0;
  z-index: 10;
  will-change: auto;
}
@media (max-width: 1199.98px) {
  #section-spectrums {
    margin-top: 50px;
  }
}
@media (max-width: 991.98px) {
  #section-spectrums {
    padding-top: 100px;
    transition: all 0.2s;
    height: unset;
    position: relative;
  }
}
@media (max-width: 767.98px) {
  #section-spectrums {
    height: 4340px;
    padding: 100px 20px;
  }
}
#section-spectrums .wrapper {
  height: 100%;
  padding: 0 0 200px;
}
#section-spectrums .selected {
  color: #fff;
}
#section-spectrums p {
  font-weight: 300;
}
#section-spectrums .down_arrow {
  width: 0.5em;
  position: relative;
  bottom: unset;
  top: 1em;
  left: unset;
  z-index: 100;
  overflow: visible;
  transform: translateX(-50%);
}
#section-spectrums .down_arrow * {
  stroke: white;
}
#section-spectrums article#diagrama {
  margin: 100px 0 180px;
}
@media (max-width: 767.98px) {
  #section-spectrums article#diagrama {
    margin: 0 0 180px;
  }
  #section-spectrums article#diagrama * {
    padding: 0;
  }
}
#section-spectrums article#diagrama .diagrama_svg {
  width: 70%;
  margin: 150px auto 190px;
}
@media (min-width: 768px) and (max-width: 991.98px) {
  #section-spectrums article#diagrama .diagrama_svg {
    width: 90%;
  }
}
@media (max-width: 767.98px) {
  #section-spectrums article#diagrama .diagrama_svg {
    width: 100%;
    margin: 100px auto 130px;
  }
}
#section-spectrums article#diagrama .diagrama_svg img {
  margin: 0 auto;
  display: block;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}
@media (min-width: 768px) {
  #section-spectrums article#diagrama .diagrama_svg img.dia_m {
    display: none;
  }
}
@media (max-width: 767.98px) {
  #section-spectrums article#diagrama .diagrama_svg img {
    padding: 0 15px;
  }
  #section-spectrums article#diagrama .diagrama_svg img.dia {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  #section-spectrums article#diagrama .approach h3 {
    margin-bottom: 20px;
  }
}
@media (max-width: 767.98px) {
  #section-spectrums article#diagrama .approach h3 {
    margin-bottom: 20px;
    width: 100%;
  }
}
@media (max-width: 767.98px) {
  #section-spectrums article#diagrama .approach p {
    width: 100%;
  }
}
#section-spectrums article#spectrums {
  position: sticky;
  top: calc((100vh - calc(700px + 10vh)) / 2);
  width: 100%;
  height: calc(700px + 10vh);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 200px 0 575px;
  font-size: 3.3vh;
}
@media (max-width: 767.98px) {
  #section-spectrums article#spectrums {
    position: relative;
    top: 5vh;
    height: 110vh;
    margin-bottom: 700px;
  }
}
#section-spectrums article#spectrums .wrapper_spectrums {
  width: 100%;
  height: 90%;
  max-height: 75vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
@media (max-width: 767.98px) {
  #section-spectrums article#spectrums .wrapper_spectrums {
    max-height: unset;
    height: 100%;
    padding: 0;
  }
}
#section-spectrums article#spectrums h2.section-title {
  margin-bottom: 2em;
  font-family: "Agrandir Grotesk Variable Medium Grand", "Helvetica", sans-serif;
  font-weight: 500;
}
@supports (font-stretch: normal) {
  #section-spectrums article#spectrums h2.section-title {
    font-stretch: 200%;
  }
}
@supports (font-variation-settings: normal) {
  #section-spectrums article#spectrums h2.section-title {
    font-family: "Agrandir Grotesk Variable", sans-serif;
    font-variation-settings: "wght" 500, "wdth" 200;
  }
}
@media (max-width: 767.98px) {
  #section-spectrums article#spectrums h2.section-title {
    font-size: 3rem;
    margin-bottom: 5rem;
  }
}
#section-spectrums article#spectrums h3 {
  letter-spacing: 1px;
}
#section-spectrums article#spectrums #spectrum_Diversity h3 .span {
  letter-spacing: normal;
  display: inline-block;
  transition: all 0.1s ease-in-out;
}
@supports (font-variation-settings: normal) {
  #section-spectrums article#spectrums {
    --vD1: "wght" 400, "wdth" 130;
    --vD2: "wght" 400, "wdth" 130;
    --vD3: "wght" 400, "wdth" 130;
    --vE: "wght" 400, "wdth" 120;
    --vF: "wght" 600, "wdth" 150;
    --vT: 1px;
  }
  #section-spectrums article#spectrums #spectrum_Diversity h3 .v0 {
    font-variation-settings: "wght" 400, "wdth" 130;
  }
  #section-spectrums article#spectrums #spectrum_Diversity h3 .v1 {
    font-variation-settings: var(--vD1);
  }
  #section-spectrums article#spectrums #spectrum_Diversity h3 .v2 {
    font-variation-settings: var(--vD2);
  }
  #section-spectrums article#spectrums #spectrum_Diversity h3 .v3 {
    font-variation-settings: var(--vD3);
  }
  #section-spectrums article#spectrums #spectrum_Empowerment h3 {
    font-variation-settings: var(--vE);
  }
  #section-spectrums article#spectrums #spectrum_Flexibility h3 {
    font-variation-settings: var(--vF);
  }
  #section-spectrums article#spectrums #spectrum_Trust h3 {
    letter-spacing: var(--vT);
  }
}
#section-spectrums .spectrum {
  position: relative;
  background-color: #171717;
  transform-origin: top center;
  transition: transform 0.4s ease-out;
  min-height: 120px;
}
@media (min-width: 768px) and (max-width: 991.98px) {
  #section-spectrums .spectrum {
    margin-bottom: 40px;
  }
}
@media (max-width: 767.98px) {
  #section-spectrums .spectrum {
    margin: 0 0 20px;
  }
}
#section-spectrums .spectrum.closed .theme_title {
  opacity: 0;
}
.ie #section-spectrums .spectrum.closed .theme_title {
  opacity: 1;
}
#section-spectrums .spectrum.closed .bottom {
  opacity: 0;
  transform: translate3d(0, 0, 0);
  will-change: auto;
  transform-origin: top center;
  transition: all 0.4s ease-out;
  overflow: hidden;
}
.ie #section-spectrums .spectrum.closed .bottom {
  opacity: 1;
  height: 250px;
}
#section-spectrums .spectrum:nth-child(1) {
  z-index: 1;
}
#section-spectrums .spectrum:nth-child(2) {
  z-index: 2;
}
#section-spectrums .spectrum:nth-child(3) {
  z-index: 3;
}
#section-spectrums .spectrum:nth-child(4) {
  z-index: 4;
}
#section-spectrums .spectrum.yellow .ui-slider-range {
  background-color: #fcedcf;
}
#section-spectrums .spectrum.yellow .ui-slider-handle {
  background-color: #ffdd99;
}
#section-spectrums .spectrum.yellow .ui-slider-handle:active {
  background-color: #ffeecc;
}
#section-spectrums .spectrum.yellow .ui-slider-handle:after {
  width: 100px;
  height: 100px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url("assets22/dot_purple.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
#section-spectrums .spectrum.green .ui-slider-range {
  background-color: #cffcf3;
}
#section-spectrums .spectrum.green .ui-slider-handle {
  background-color: #99ffeb;
}
#section-spectrums .spectrum.green .ui-slider-handle:active {
  background-color: #ccfff5;
}
#section-spectrums .spectrum.green .ui-slider-handle:after {
  width: 100px;
  height: 100px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url("assets22/dot_orange.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
#section-spectrums .spectrum.pink .ui-slider-range {
  background-color: #fee5ea;
}
#section-spectrums .spectrum.pink .ui-slider-handle {
  background-color: #ffb1bf;
}
#section-spectrums .spectrum.pink .ui-slider-handle:active {
  background-color: #ffe4e9;
}
#section-spectrums .spectrum.pink .ui-slider-handle:after {
  width: 100px;
  height: 100px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url("assets22/dot_blue.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
#section-spectrums .spectrum.blue .ui-slider-range {
  background-color: #cfecfc;
}
#section-spectrums .spectrum.blue .ui-slider-handle {
  background-color: #99daff;
}
#section-spectrums .spectrum.blue .ui-slider-handle:active {
  background-color: #ccedff;
}
#section-spectrums .spectrum.blue .ui-slider-handle:after {
  width: 100px;
  height: 100px;
  position: absolute;
  background: yellow;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url("assets22/dot_pink.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
#section-spectrums .spectrum .top {
  padding-bottom: 1.5em;
}
@media (max-width: 767.98px) {
  #section-spectrums .spectrum .top {
    padding-bottom: 1em;
  }
}
#section-spectrums .spectrum .top h3 {
  font-size: 2.8rem;
  margin: 0 15px 1em;
  text-align: left;
  font-family: "Agrandir Grotesk Variable Regular Wide", "Helvetica", sans-serif;
  font-weight: 400;
}
@supports (font-stretch: normal) {
  #section-spectrums .spectrum .top h3 {
    font-stretch: 150%;
  }
}
@supports (font-variation-settings: normal) {
  #section-spectrums .spectrum .top h3 {
    font-family: "Agrandir Grotesk Variable", sans-serif;
    font-variation-settings: "wght" 400, "wdth" 150;
  }
}
@media (max-width: 767.98px) {
  #section-spectrums .spectrum .top h3 {
    margin: 0 0 30px;
  }
}
#section-spectrums .spectrum .top .ui-slider {
  height: 0.1em;
  border: 0;
}
#section-spectrums .spectrum .top .ui-slider-range {
  border: 0;
}
#section-spectrums .spectrum .top .ui-slider-handle {
  width: 0.85em;
  height: 0.85em;
  transform: rotate(45deg) translate(0.5em, -0.2em);
  transform-origin: right;
  border: 0;
  border-radius: 1px;
  padding: 0.3em;
  cursor: pointer;
  outline: none;
  transition: box-shadow 0.2s ease-in-out, background 0.2s ease-in-out;
}
#section-spectrums .spectrum .top .ui-slider-handle:active {
  box-shadow: 0 0 5px #2c2c2c;
}
#section-spectrums .spectrum .bottom .bottom_icons {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
@media (max-width: 767.98px) {
  #section-spectrums .spectrum .bottom .bottom_icons {
    width: 100%;
    margin: 20px 0 40px 0;
  }
}
#section-spectrums .spectrum .bottom .bottom_icons h5 {
  text-transform: uppercase;
  font-weight: 400;
  font-size: 1.6rem;
  margin: 0 15px;
}
@media (max-width: 767.98px) {
  #section-spectrums .spectrum .bottom .bottom_icons h5 {
    font-size: 1.6rem;
  }
  #section-spectrums .spectrum .bottom .bottom_icons h5:first-of-type {
    margin-left: 0;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  #section-spectrums .spectrum .bottom .bottom_text {
    margin-top: 30px;
  }
}
#section-spectrums .spectrum .bottom .bottom_text p {
  margin-top: 0;
  color: white;
  font-weight: 300;
}
#section-spectrums .full_width_drawing {
  height: auto;
  top: 0;
  transform: translateY(-55%);
}
@media (max-width: 767.98px) {
  #section-spectrums .full_width_drawing img {
    overflow: hidden;
    transform: scale(2);
  }
}

/* end FOUR */
@media (max-width: 991.98px) {
  #section-four-half {
    height: unset;
    display: flex;
    flex-direction: column;
  }
  #section-four-half p {
    order: 1;
  }
  #section-four-half p:first-of-type {
    margin-top: 20px;
  }
  #section-four-half p:last-of-type {
    margin-bottom: 50px;
  }
  #section-four-half h5 {
    order: 3;
    margin: 30px 0px 0 10px;
    font-weight: 600;
  }
  #section-four-half ul {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-template-rows: 30px;
    grid-gap: 50px;
    height: unset;
    order: 3;
    margin-bottom: 20px;
    margin-left: 0;
  }
  #section-four-half > img {
    position: static;
    width: 100%;
    max-width: unset;
    max-height: 500px;
    -o-object-position: right bottom;
    object-position: right bottom;
    -o-object-fit: cover;
    object-fit: cover;
    order: 2;
  }
}
@media (max-width: 991.98px) {
  /* FOUR */
  /*
  #section-four .wrapper {
    height: 100%;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    grid-gap: 50px 30px;
  } */
  #section-four .text-left {
    top: 35px;
    position: sticky;
  }
  #section-four .right-container > div {
    display: block;
    margin: 17px 0;
    opacity: 0;
  }
  #section-four .right-container .theme_copy p:first-of-type {
    margin-top: 0;
  }
  #section-four ul {
    padding: 0;
    margin-bottom: 20px;
  }
  #section-four li {
    display: none;
  }
  #section-four li.selected {
    display: none;
  }
  #section-four #trust_copy {
    opacity: 1 !important;
  }
  /* end FOUR */
  #section-four {
    margin-top: 50px;
  }
  #section-four li {
    max-width: 400px;
  }
}
@media (max-width: 767.98px) {
  /* FOUR HALF */
  #section-four-half {
    height: unset;
    display: flex;
    flex-direction: column;
    margin: 100px auto;
  }
  #section-four-half h2 {
    margin: 0;
  }
  #section-four-half h3 {
    margin-top: 15px;
  }
  #section-four-half p {
    order: 1;
  }
  #section-four-half h5 {
    order: 3;
    margin: 30px 0 10px;
    font-weight: 600;
  }
  #section-four-half ul {
    order: 3;
    padding: 0;
    margin-top: 20px;
    margin-left: 0;
    height: unset;
    max-width: unset;
    width: 100%;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 50px 50px 50px;
    grid-gap: 30px 40px;
  }
  #section-four-half ul img {
    width: 90%;
    height: 90%;
    margin: 0 auto;
    -o-object-position: center;
    object-position: center;
    -o-object-fit: contain;
    object-fit: contain;
  }
  #section-four-half > img {
    position: static;
    -o-object-fit: contain;
    object-fit: contain;
    margin-left: 0;
    width: 100%;
  }
  /* end FOUR HALF */
}
/* SECTION FIVE - speakers */
#section-five {
  margin: 0 auto;
  width: 100%;
}
#section-five header p {
  max-width: 700px;
}
#section-five #speakers_container {
  padding: 50px 0;
}
#section-five .row {
  margin-bottom: 20px;
}
#section-five article {
  cursor: pointer;
  margin-bottom: 20px;
}
@media (max-width: 767.98px) {
  #section-five article {
    padding: 0 10px;
    max-height: 350px;
  }
}
#section-five article:hover .image img {
  transform: scale(1.02);
}
@supports (font-variation-settings: normal) {
  #section-five article:hover .info h3 {
    font-variation-settings: "wght" 400, "wdth" 120;
  }
  #section-five article:hover .view_more {
    text-decoration: underline;
  }
}
#section-five article .image img {
  transition: transform 0.1s ease-in-out;
  transform-origin: bottom left;
  will-change: transform;
}
#section-five article img {
  height: 500px;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top;
  object-position: top;
}
@media (max-width: 767.98px) {
  #section-five article img {
    height: 200px;
  }
}
#section-five article .info {
  position: relative;
  overflow: hidden;
}
#section-five article .info > div {
  padding: 0 20px 0 10px;
}
@media (max-width: 767.98px) {
  #section-five article .info > div {
    padding: 0 10px 0 5px;
  }
}
#section-five article .info h3 {
  margin: 25px 0 15px;
  padding: 0;
  font-size: 2.4rem;
  transition: all 0.1s ease-in-out;
  font-family: "Agrandir Grotesk Variable Regular", "Helvetica", sans-serif;
  font-weight: 400;
}
@supports (font-stretch: normal) {
  #section-five article .info h3 {
    font-stretch: 100%;
  }
}
@supports (font-variation-settings: normal) {
  #section-five article .info h3 {
    font-family: "Agrandir Grotesk Variable", sans-serif;
    font-variation-settings: "wght" 400, "wdth" 100;
  }
}
@media (max-width: 767.98px) {
  #section-five article .info h3 {
    font-size: 1.8rem;
    padding: 0;
    margin: 15px 0 5px;
  }
}
#section-five article .info h5 {
  margin: 15px 0 5px;
  padding: 0;
  color: #a4b0b6;
  text-transform: uppercase;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.3;
}
@media (max-width: 767.98px) {
  #section-five article .info h5 {
    font-size: 1.2rem;
    padding: 0;
    margin: 5px 0;
  }
}
#section-five article .info h5 .at2 {
  display: block;
}
@media (max-width: 767.98px) {
  #section-five article .info h5 .at2 {
    display: none;
  }
}
#section-five article .info h6 {
  font-size: 12px;
  text-transform: uppercase;
  padding: 5px 7px;
  border-radius: 2px;
  position: absolute;
  top: 27px;
  right: 5px;
  margin: 0;
  display: inline-block;
}
@media (max-width: 767.98px) {
  #section-five article .info h6 {
    font-size: 10px;
    bottom: 0;
    left: 0;
    right: unset;
    top: unset;
    margin: 5px 0 10px 0;
    position: static;
  }
}
#section-five article .info .description {
  max-height: unset;
  height: 104px;
}
@media (max-width: 767.98px) {
  #section-five article .info .description {
    display: none;
  }
}
#section-five article .info .description p {
  height: 100%;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 14px;
  display: none;
}
#section-five article .info .description p:nth-child(1) {
  display: inline-block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  /* Limits the text to 5 lines */
  -webkit-line-clamp: 5;
  /* Ensures that the element's height adapts to a minimum of 3 lines and a maximum of 5 lines */
  max-height: 7.5em; /* Adjust 1.5em based on line-height */
  min-height: 4.5em;
  height: clamp(4.5em, 100%, 7.5em);
  line-height: 1.5em; /* Adjust this to match your line height */
}
#section-five article .info .view_more {
  text-align: center;
  margin-top: 24px;
  padding: 8px 16px;
  color: var(--purple);
  background: transparent;
}
@media (max-width: 767.98px) {
  #section-five article .info .view_more {
    width: 100%;
    text-align: left;
    padding: 5px 5px 0;
    font-size: 1.1rem;
  }
}
@media (min-width: 768px) {
  #section-five article .info .view_more .mobile_only {
    display: none;
  }
}
#section-five article .sociables {
  display: none;
}

#popup #content_holder h3 {
  margin: 20px 0 0;
  padding: 0 10px;
  font-size: 24px;
  font-family: "Agrandir Grotesk Variable Regular", "Helvetica", sans-serif;
  font-weight: 400;
}
@supports (font-stretch: normal) {
  #popup #content_holder h3 {
    font-stretch: 100%;
  }
}
@supports (font-variation-settings: normal) {
  #popup #content_holder h3 {
    font-family: "Agrandir Grotesk Variable", sans-serif;
    font-variation-settings: "wght" 400, "wdth" 100;
  }
}
#popup #content_holder h5 {
  margin: 0;
  padding: 0 10px;
  color: #a4b0b6;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 400;
}
#popup #content_holder h6 {
  font-size: 12px;
  text-transform: uppercase;
  padding: 5px 7px;
  border-radius: 2px;
  display: inline-block;
}

#popup {
  display: none;
  width: 100vw;
  height: calc(100 * var(--vh));
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background: #fff6df;
  padding: 2vh 3vw 4vh;
}
@media (max-width: 767.98px) {
  #popup {
    padding: 20px;
  }
}
#popup .popup_wrapper {
  max-width: 1250px;
  margin: 0 auto;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
}
@media (max-width: 767.98px) {
  #popup .popup_wrapper {
    padding: 0;
    overflow: scroll;
  }
}
#popup .popup_wrapper > img {
  cursor: pointer;
  padding: 30px;
  box-sizing: content-box;
  width: 20px;
  height: 20px;
}
@media (max-width: 767.98px) {
  #popup .popup_wrapper > img {
    padding: 20px;
  }
}
#popup .popup_wrapper .more {
  display: none;
}
#popup .popup_wrapper .close {
  position: absolute;
  right: 2vw;
  top: 2vh;
}
@media (max-width: 767.98px) {
  #popup .popup_wrapper .close {
    right: 10px;
    top: 10px;
    background: white;
    z-index: 10;
  }
}
#popup .popup_wrapper .arrow_left {
  width: 25px;
  position: absolute;
  left: 2vw;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 767.98px) {
  #popup .popup_wrapper .arrow_left {
    width: 20px;
    left: 10px;
    top: unset;
    bottom: 10px;
    transform: none;
    background: white;
    z-index: 10;
  }
}
#popup .popup_wrapper .arrow_right {
  width: 25px;
  position: absolute;
  right: 2vw;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 767.98px) {
  #popup .popup_wrapper .arrow_right {
    width: 20px;
    right: 10px;
    top: unset;
    bottom: 10px;
    transform: none;
    background: white;
    z-index: 10;
  }
}
#popup #content_holder {
  width: 90%;
  height: 90%;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: flex-end;
}
@media (min-width: 768px) and (max-width: 991.98px) {
  #popup #content_holder {
    flex-direction: column;
    width: 80%;
    height: 100%;
    padding-top: 10%;
  }
}
@media (max-width: 767.98px) {
  #popup #content_holder {
    flex-direction: column;
    width: 100%;
  }
}
#popup #content_holder h3 {
  padding: 0;
}
#popup #content_holder h5 {
  padding: 0;
  margin: 5px 0 15px;
}
@media (max-width: 767.98px) {
  #popup #content_holder h5 {
    max-width: 85%;
  }
}
#popup #content_holder h6 {
  margin: 0 0 0;
}
@media (max-width: 767.98px) {
  #popup #content_holder h6 {
    margin: 0 0 15px;
  }
}
#popup #content_holder p {
  font-size: 1.5rem;
}
#popup #content_holder .image {
  float: left;
  width: 40%;
  height: 100%;
  margin-bottom: 5vh;
  margin-left: 10%;
}
@media (min-width: 768px) and (max-width: 991.98px) {
  #popup #content_holder .image {
    width: 100%;
    max-height: 35vh;
    padding-left: 15px;
  }
}
@media (max-width: 767.98px) {
  #popup #content_holder .image {
    width: 100%;
    margin: 0 0 20px;
  }
}
#popup #content_holder .image img {
  margin-top: 2vh;
  max-height: 82vh;
  -o-object-position: bottom !important;
  object-position: bottom !important;
}
@media (min-width: 768px) and (max-width: 991.98px) {
  #popup #content_holder .image img {
    -o-object-position: left !important;
    object-position: left !important;
  }
}
@media (max-width: 767.98px) {
  #popup #content_holder .image img {
    max-height: 500px;
    -o-object-fit: cover;
    object-fit: cover;
    margin: 0;
  }
}
#popup #content_holder .info {
  float: left;
  width: 50%;
  overflow: auto;
  padding-left: 30px;
  margin-bottom: 5vh;
  max-height: 74vh;
}
@media (min-width: 768px) and (max-width: 991.98px) {
  #popup #content_holder .info {
    width: 100%;
    padding-left: 0;
  }
}
@media (min-width: 768px) {
  #popup #content_holder .info {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
}
@media (max-width: 767.98px) {
  #popup #content_holder .info {
    width: 100%;
    overflow: visible;
    padding: 0;
    max-height: unset;
  }
}
#popup #content_holder .info .info_name {
  position: relative;
  padding-right: 30px;
  padding-left: 0px;
  min-height: unset;
}
@media (max-width: 767.98px) {
  #popup #content_holder .info .info_name {
    padding-left: 0;
    padding-right: 0;
  }
}
#popup #content_holder .info .description {
  width: 100%;
  overflow: auto;
  padding-top: 20px;
}
@media (max-width: 767.98px) {
  #popup #content_holder .info .description {
    padding: 0 0;
    margin-bottom: 50px;
    overflow: visible;
    min-height: unset;
  }
}
#popup #content_holder .sociables {
  width: 60px;
  height: 45px;
  font-size: 18px;
  margin: 0;
  margin-top: 10px;
  padding: 3px 20px;
  color: #6a51b7;
  position: absolute;
  top: 35%;
  right: 0;
  transform: translateY(-50%);
}
#popup #content_holder img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
  grid-row: 1/span 7;
}
#popup #content_holder .view_more {
  display: none;
}

/* end SECTION FIVE - speakers */
#section-journey {
  margin: 150px auto;
}
@media (max-width: 767.98px) {
  #section-journey {
    margin: 150px 0 100px;
  }
}
#section-journey header p {
  font-size: 20px;
}
#section-journey header p b {
  font-family: "Agrandir Variable Medium Wide", "Helvetica", sans-serif;
  font-weight: 500;
}
@supports (font-stretch: normal) {
  #section-journey header p b {
    font-stretch: 150%;
  }
}
@supports (font-variation-settings: normal) {
  #section-journey header p b {
    font-family: "Agrandir Variable", sans-serif;
    font-variation-settings: "wght" 500, "wdth" 150;
  }
}
#section-journey .heading {
  font-size: 2.4em;
  padding: 0;
  font-family: "Agrandir Variable Regular", "Helvetica", sans-serif;
  font-weight: 400;
}
@supports (font-stretch: normal) {
  #section-journey .heading {
    font-stretch: 100%;
  }
}
@supports (font-variation-settings: normal) {
  #section-journey .heading {
    font-family: "Agrandir Variable", sans-serif;
    font-variation-settings: "wght" 400, "wdth" 100;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  #section-journey .heading {
    margin-bottom: 20px;
  }
}
#section-journey .row {
  margin: 50px auto;
}
@media (max-width: 767.98px) {
  #section-journey .row {
    margin: 0 auto 30px;
  }
  #section-journey .row .col-md-7 {
    padding: 0;
  }
}
#section-journey .col-md-2 {
  padding-left: 0;
}
@media (max-width: 767.98px) {
  #section-journey .col-md-2 {
    margin: 20px 0;
  }
}
#section-journey .col-md-5 {
  padding-left: 70px;
  padding-right: 0;
}
@media (max-width: 767.98px) {
  #section-journey .col-md-5 {
    padding-left: 30px;
  }
}
#section-journey .col-md-5.img_wrapper {
  padding: 0;
  margin-top: 92px;
  padding-left: 45px;
}
@media (max-width: 767.98px) {
  #section-journey .col-md-5.img_wrapper {
    margin-top: 20px;
    margin-bottom: 15px;
    padding: 0;
  }
}
#section-journey .col-md-12, #section-journey .col-md-7 {
  padding: 0;
}
#section-journey .list {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  margin: 30px 0 0;
}
@media (max-width: 767.98px) {
  #section-journey .list {
    padding: 0;
    flex-direction: column;
  }
}
#section-journey .list ul {
  padding-right: 0;
  padding-left: 50px;
}
@media (max-width: 767.98px) {
  #section-journey .list ul {
    padding-left: 40px;
  }
}
#section-journey .list ul li {
  margin: 0 0 8rem;
  position: relative;
  font-size: 15px;
}
#section-journey .list ul li:last-of-type {
  margin: 0 0 10px;
}
#section-journey .list ul li .icon {
  position: absolute;
  left: -35px;
  top: 0px;
  height: 18px;
  width: 18px;
}
#section-journey .journey_info li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 10px;
  color: #59636b;
  font-size: 1.6rem;
}
@media (max-width: 767.98px) {
  #section-journey .journey_info li {
    font-size: 1.5rem;
  }
}
#section-journey .journey_info li b {
  color: #171717;
  font-weight: 500;
}
#section-journey .journey_info li::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 4px;
  height: 16px;
  width: 12px;
  background-image: url(../assets/li.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
#section-journey .venue {
  margin: 100px 0;
}
#section-journey .venue p {
  margin-top: 15px;
  font-size: 18px;
  text-decoration: underline;
}
#section-journey .full_width_drawing {
  height: auto;
  max-height: 450px;
  top: unset;
  bottom: 0;
  transform: translateY(150px);
  z-index: -1;
}
@media (max-width: 767.98px) {
  #section-journey .full_width_drawing {
    transform: none;
  }
}
@media (max-width: 767.98px) {
  #section-journey .full_width_drawing img {
    overflow: hidden;
    transform: scale(2);
  }
}

#structure {
  margin-top: 100px;
  padding: 0;
}
#structure .second_header {
  margin-bottom: 30px;
}
#structure .second_header h2 {
  margin-top: 0;
}
#structure .calendar {
  padding: 0;
  border-right: 0.25px solid #d4dce2;
}
#structure .calendar .row {
  height: 160px;
  margin: 0;
}
@media (min-width: 768px) and (max-width: 991.98px) {
  #structure .calendar .row {
    height: 130px;
  }
}
@media (max-width: 767.98px) {
  #structure .calendar .row {
    height: 80px;
  }
}
#structure .calendar .title {
  height: 44px;
  padding: 0;
  border: 0.25px solid #d4dce2;
  border-right: 0;
}
#structure .calendar .title h4 {
  text-align: center;
  font-size: 1.6rem;
}
#structure .calendar .calendar-day, #structure .calendar .calendar-day-evento {
  height: 100%;
  border-bottom: 0.25px solid #d4dce2;
  border-left: 0.25px solid #d4dce2;
  padding: 20px 15px;
  position: relative;
}
@media (max-width: 767.98px) {
  #structure .calendar .calendar-day, #structure .calendar .calendar-day-evento {
    padding: 56px 10px 10px;
    text-align: center;
  }
}
#structure .calendar .calendar-day time, #structure .calendar .calendar-day h5, #structure .calendar .calendar-day-evento time, #structure .calendar .calendar-day-evento h5 {
  height: 30px;
  line-height: 1;
  padding: 0;
  margin: 0;
}
#structure .calendar .calendar-day time, #structure .calendar .calendar-day-evento time {
  font-size: 1.6rem;
  color: #1c1c1c;
}
@media (max-width: 767.98px) {
  #structure .calendar .calendar-day time, #structure .calendar .calendar-day-evento time {
    font-size: 1.6rem;
  }
}
#structure .calendar .calendar-day h5, #structure .calendar .calendar-day-evento h5 {
  text-align: right;
  font-size: 1.6rem;
  font-weight: 200;
  color: #7c868e;
  position: absolute;
  top: 20px;
  right: 18px;
}
@media (max-width: 767.98px) {
  #structure .calendar .calendar-day h5, #structure .calendar .calendar-day-evento h5 {
    font-size: 1.4rem;
    color: #3f4a51;
    top: 10px;
    left: 10px;
    text-align: center;
  }
}
#structure .calendar .calendar-day-evento {
  background-color: #eff2f2;
}
#structure .calendar .calendar-day-evento.g_1 {
  position: relative;
}
#structure .calendar .calendar-day-evento.g_1:after {
  content: "Culture";
  position: absolute;
  bottom: 10px;
  left: 5px;
  width: calc(100% - 10px);
  height: 30px;
  background-color: #7c868e;
  text-align: center;
  font-size: 14px;
  padding: 3px 0;
  color: white;
}
@media (max-width: 767.98px) {
  #structure .calendar .calendar-day-evento.g_1:after {
    content: "";
    width: 10px;
    height: 10px;
    text-align: center;
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}
#structure .calendar .calendar-day-evento.g_2 {
  position: relative;
}
#structure .calendar .calendar-day-evento.g_2:after {
  content: "Diversity";
  position: absolute;
  bottom: 10px;
  left: 5px;
  width: calc(100% - 10px);
  height: 30px;
  background-color: #ffdd99;
  text-align: center;
  font-size: 14px;
  padding: 3px 0;
}
@media (max-width: 767.98px) {
  #structure .calendar .calendar-day-evento.g_2:after {
    content: "";
    width: 10px;
    height: 10px;
    text-align: center;
    border-radius: 50%;
    left: 50%;
    top: 40%;
    transform: translate(-50%, -50%);
  }
}
#structure .calendar .calendar-day-evento.g_3 {
  position: relative;
}
#structure .calendar .calendar-day-evento.g_3:after {
  content: "Empowerment";
  position: absolute;
  bottom: 10px;
  left: 5px;
  width: calc(100% - 10px);
  height: 30px;
  background-color: #99ffeb;
  text-align: center;
  font-size: 14px;
  padding: 3px 0;
  color: white;
}
@media (max-width: 767.98px) {
  #structure .calendar .calendar-day-evento.g_3:after {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    left: 50%;
    top: 40%;
    transform: translate(-50%, -50%);
  }
}
#structure .calendar .calendar-day-evento.g_4 {
  position: relative;
}
#structure .calendar .calendar-day-evento.g_4:after {
  content: "Flexibility";
  position: absolute;
  bottom: 10px;
  left: 5px;
  width: calc(100% - 10px);
  height: 30px;
  background-color: #ffb1bf;
  text-align: center;
  font-size: 14px;
  padding: 3px 0;
}
@media (max-width: 767.98px) {
  #structure .calendar .calendar-day-evento.g_4:after {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    left: 50%;
    top: 40%;
    transform: translate(-50%, -50%);
  }
}
#structure .calendar .calendar-day-evento.g_5 {
  position: relative;
}
#structure .calendar .calendar-day-evento.g_5:after {
  content: "Trust";
  position: absolute;
  bottom: 10px;
  left: 5px;
  width: calc(100% - 10px);
  height: 30px;
  background-color: #99daff;
  text-align: center;
  font-size: 14px;
  padding: 3px 0;
  color: white;
}
@media (max-width: 767.98px) {
  #structure .calendar .calendar-day-evento.g_5:after {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    left: 50%;
    top: 40%;
    transform: translate(-50%, -50%);
  }
}
#structure .calendar_legenda {
  display: none;
}
@media (max-width: 767.98px) {
  #structure .calendar_legenda {
    display: block;
    font-size: 1.5rem;
    margin: 30px 0 0;
  }
  #structure .calendar_legenda ul {
    padding-left: 15px;
    margin: 0;
  }
  #structure .calendar_legenda ul li {
    margin-bottom: 10px;
  }
  #structure .calendar_legenda .li1 {
    position: relative;
    padding-left: 20px;
  }
  #structure .calendar_legenda .li1:before {
    content: "";
    width: 10px;
    height: 10px;
    text-align: center;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: #7c868e;
  }
  #structure .calendar_legenda .li2 {
    position: relative;
    padding-left: 20px;
  }
  #structure .calendar_legenda .li2:before {
    content: "";
    width: 10px;
    height: 10px;
    text-align: center;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: #ffdd99;
  }
  #structure .calendar_legenda .li3 {
    position: relative;
    padding-left: 20px;
  }
  #structure .calendar_legenda .li3:before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: #99ffeb;
  }
  #structure .calendar_legenda .li4 {
    position: relative;
    padding-left: 20px;
  }
  #structure .calendar_legenda .li4:before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: #ffb1bf;
  }
  #structure .calendar_legenda .li5 {
    position: relative;
    padding-left: 20px;
  }
  #structure .calendar_legenda .li5:before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: #99daff;
  }
}

.seven-cols .col-md-1,
.seven-cols .col-sm-1,
.seven-cols .col-lg-1 {
  width: 14.2857142857%;
  width: 14.2857142857%;
  float: left;
}

/* FOUR HALF */
#section-withco {
  margin: 100px auto 100px;
}
@media (max-width: 767.98px) {
  #section-withco {
    margin: 30px 0 150px;
    font-size: 1.6rem;
  }
}
#section-withco h5,
#section-withco p {
  max-width: 600px;
}
#section-withco h2 {
  margin-bottom: 15px;
}
@media (max-width: 767.98px) {
  #section-withco h2 {
    margin-bottom: 25px;
  }
}
#section-withco h3 {
  margin: 0 0 4rem 0;
  font-size: 2rem;
  transition: all 0.2s ease-in-out;
  font-family: "Agrandir Grotesk Variable Regular", "Helvetica", sans-serif;
  font-weight: 400;
}
@supports (font-stretch: normal) {
  #section-withco h3 {
    font-stretch: 100%;
  }
}
@supports (font-variation-settings: normal) {
  #section-withco h3 {
    font-family: "Agrandir Grotesk Variable", sans-serif;
    font-variation-settings: "wght" 400, "wdth" 100;
  }
}
#section-withco h3:hover {
  font-family: "Agrandir Variable Wide", "Helvetica", sans-serif;
  font-weight: 400;
}
@supports (font-stretch: normal) {
  #section-withco h3:hover {
    font-stretch: "120%";
  }
}
@supports (font-variation-settings: normal) {
  #section-withco h3:hover {
    font-family: "Agrandir Variable", sans-serif;
    font-variation-settings: "wght" 400, "wdth" 120;
  }
}
@media (max-width: 767.98px) {
  #section-withco h3 {
    font-size: 1.9rem;
    margin: 0 0 15px;
  }
}
#section-withco h3 br {
  display: none;
}
#section-withco h5 {
  text-transform: uppercase;
  color: #7c868e;
  font-size: 14px;
  font-weight: 500;
  margin-top: 0;
}
#section-withco .max-width_breakout {
  margin-top: 5px;
  margin-bottom: 15px;
}
@media (min-width: 768px) and (max-width: 991.98px) {
  #section-withco .max-width_breakout {
    margin-top: 30px;
  }
}
@media (max-width: 767.98px) {
  #section-withco .max-width_breakout {
    margin-top: 30px;
  }
}
#section-withco .client_logos {
  margin-top: 30px;
}
#section-withco .client_logos ul {
  margin-top: 15px;
  padding: 0px;
}
@media (max-width: 767.98px) {
  #section-withco .client_logos ul {
    margin-top: 25px;
  }
}
#section-withco .client_logos li {
  height: 40px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  padding-left: 0;
}
@media (min-width: 768px) and (max-width: 991.98px) {
  #section-withco .client_logos li img {
    transform: scale(0.8);
  }
}
@media (max-width: 767.98px) {
  #section-withco .client_logos li {
    margin-bottom: 25px;
  }
}
#section-withco .client_logos li img {
  opacity: 0.9;
  -o-object-position: left;
  object-position: left;
}
@media (max-width: 767.98px) {
  #section-withco .client_logos li img {
    -o-object-position: center;
    object-position: center;
  }
}
#section-withco .client_logos li:nth-child(1) img {
  height: 15px;
}
#section-withco .client_logos li:nth-child(2) img {
  height: 20px;
}
#section-withco .client_logos li:nth-child(3) img {
  height: 27px;
}
#section-withco .client_logos li:nth-child(4) img {
  height: 14px;
}
#section-withco .client_logos li:nth-child(5) img {
  height: 22px;
}
#section-withco .client_logos li:nth-child(6) img {
  height: 31px;
}
#section-withco .client_logos li:nth-child(7) img {
  height: 32px;
}
#section-withco .client_logos li:nth-child(8) img {
  height: 20px;
}

/* end FOUR HALF */
#cta_final {
  padding: 12rem;
  display: flex;
  justify-content: center;
  position: relative;
}
@media (max-width: 767.98px) {
  #cta_final {
    padding: 150px 0 200px;
  }
}
#cta_final h2 {
  font-size: 4rem;
  line-height: 1.4;
}
@media (max-width: 767.98px) {
  #cta_final h2 {
    font-size: 2.6rem;
  }
}

#tickets {
  padding: 100px 0;
}
@media (max-width: 767.98px) {
  #tickets {
    padding: 60px 0;
  }
}
#tickets header {
  padding-bottom: 60px;
}
@media (max-width: 767.98px) {
  #tickets header {
    padding-bottom: 40px;
  }
}
#tickets .sold-out {
  margin: 100px 0;
}
#tickets .sold-out h2 {
  margin-bottom: 25px;
  line-height: 1.3;
}
#tickets .sold-out h2 span {
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
}
#tickets .sold-out .text-align_center {
  max-width: 550px;
}
#tickets .sold-out .cta {
  display: block;
  margin: 30px auto 0;
}
#tickets #tito_inline_widget .tito-widget-form {
  max-width: unset;
  border: 0;
  background: none;
  padding: 0;
}
#tickets #tito_inline_widget .tito-widget-form > div {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
#tickets #tito_inline_widget .tito-widget-form > div .tito-release {
  position: relative;
  padding: 20px 25px;
  background: white;
  border: 2px solid white;
  border-radius: 5px;
  transition: all 0.2s ease-in-out;
}
@media (min-width: 768px) {
  #tickets #tito_inline_widget .tito-widget-form > div .tito-release {
    width: 31%;
    float: left;
    margin: 0 1%;
  }
}
@media (max-width: 991.98px) {
  #tickets #tito_inline_widget .tito-widget-form > div .tito-release {
    width: 100%;
    margin-bottom: 10px;
    padding: 30px 20px 20px;
  }
}
#tickets #tito_inline_widget .tito-widget-form > div .tito-release:nth-child(-n+2) .tito-price:after {
  content: "/ticket";
  font-size: 13px;
  color: #3f4a51;
  width: 90px;
  height: 20px;
  position: absolute;
  top: 20px;
  margin-left: 3px;
}
#tickets #tito_inline_widget .tito-widget-form > div .tito-release:nth-child(3) .tito-price:after {
  content: "/ticket";
  font-size: 13px;
  color: #3f4a51;
  width: 90px;
  height: 20px;
  position: absolute;
  top: 20px;
  margin-left: 3px;
}
#tickets #tito_inline_widget .tito-widget-form > div .tito-release > * {
  float: left;
}
#tickets #tito_inline_widget .tito-widget-form > div .tito-release .tito-release-description {
  width: 100%;
  float: left;
}
@media (max-width: 991.98px) {
  #tickets #tito_inline_widget .tito-widget-form > div .tito-release .tito-release-description {
    width: 50%;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  #tickets #tito_inline_widget .tito-widget-form > div .tito-release .tito-release-description {
    width: 50%;
  }
}
@media (max-width: 767.98px) {
  #tickets #tito_inline_widget .tito-widget-form > div .tito-release .tito-release-description {
    width: 100%;
  }
}
#tickets #tito_inline_widget .tito-widget-form > div .tito-release .tito-release-description .tito-release--title {
  padding: 20px 0 30px;
  font-size: 28px;
  color: black;
  display: block;
  font-family: "Agrandir Variable Light", "Helvetica", sans-serif;
  font-weight: 300;
  letter-spacing: 1.2px;
}
@supports (font-stretch: normal) {
  #tickets #tito_inline_widget .tito-widget-form > div .tito-release .tito-release-description .tito-release--title {
    font-stretch: 100%;
  }
}
@supports (font-variation-settings: normal) {
  #tickets #tito_inline_widget .tito-widget-form > div .tito-release .tito-release-description .tito-release--title {
    font-family: "Agrandir Variable", sans-serif;
    font-variation-settings: "wght" 300, "wdth" 100;
  }
}
@media (max-width: 1199.98px) {
  #tickets #tito_inline_widget .tito-widget-form > div .tito-release .tito-release-description .tito-release--title {
    font-size: 24px;
    padding: 10px 0 20px;
  }
}
@media (max-width: 991.98px) {
  #tickets #tito_inline_widget .tito-widget-form > div .tito-release .tito-release-description .tito-release--title {
    display: inline;
    font-size: 28px;
    padding: 40px 0 30px;
  }
}
@media (max-width: 767.98px) {
  #tickets #tito_inline_widget .tito-widget-form > div .tito-release .tito-release-description .tito-release--title {
    margin-top: 10px;
  }
}
#tickets #tito_inline_widget .tito-widget-form > div .tito-release .tito-release-description .tito-release-description--description p {
  height: 200px;
  padding: 50px 0;
  color: #7c868e;
  border: 1px solid #d4dce2;
  border-width: 1px 0;
  font-size: 16px;
}
@media (max-width: 1199.98px) {
  #tickets #tito_inline_widget .tito-widget-form > div .tito-release .tito-release-description .tito-release-description--description p {
    font-size: 15px;
    height: 220px;
  }
}
@media (max-width: 991.98px) {
  #tickets #tito_inline_widget .tito-widget-form > div .tito-release .tito-release-description .tito-release-description--description p {
    padding: 10px 0;
    border: 0;
    height: unset;
    margin: 0;
  }
}
@media (max-width: 767.98px) {
  #tickets #tito_inline_widget .tito-widget-form > div .tito-release .tito-release-description .tito-release-description--description p {
    padding: 20px 0;
  }
}
#tickets #tito_inline_widget .tito-widget-form > div .tito-release .tito-price-details-regular {
  height: 100px;
  width: 50%;
  float: left;
  padding: 20px 0;
}
@media (max-width: 991.98px) {
  #tickets #tito_inline_widget .tito-widget-form > div .tito-release .tito-price-details-regular {
    width: 32%;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  #tickets #tito_inline_widget .tito-widget-form > div .tito-release .tito-price-details-regular {
    width: 30%;
    padding-left: 40px;
  }
}
@media (max-width: 767.98px) {
  #tickets #tito_inline_widget .tito-widget-form > div .tito-release .tito-price-details-regular {
    text-align: left;
  }
}
#tickets #tito_inline_widget .tito-widget-form > div .tito-release .tito-price-details-regular .tito-price {
  margin: 0;
  font-family: "Work Sans", Helvetica, sans-serif;
  font-size: 30px;
  font-weight: 400;
  display: inline-block;
  position: relative;
}
#tickets #tito_inline_widget .tito-widget-form > div .tito-release .tito-price-details-regular .tito-release--tax {
  margin: 0;
  color: #7c868e;
  font-size: 13px;
  display: block;
}
#tickets #tito_inline_widget .tito-widget-form > div .tito-release .tito-times {
  height: 100px;
  display: none;
}
#tickets #tito_inline_widget .tito-widget-form > div .tito-release .tito-quantity {
  height: 100px;
  width: 50%;
  float: right;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  left: 5px;
  top: 5px;
}
@media (min-width: 768px) and (max-width: 991.98px) {
  #tickets #tito_inline_widget .tito-widget-form > div .tito-release .tito-quantity {
    width: 20%;
  }
}
@media (max-width: 767.98px) {
  #tickets #tito_inline_widget .tito-widget-form > div .tito-release .tito-quantity {
    width: 18%;
    position: static;
  }
}
@media (max-width: 767.98px) {
  #tickets #tito_inline_widget .tito-widget-form > div .tito-release .tito-quantity {
    width: 50%;
    position: relative;
    left: 5px;
    top: 15px;
  }
}
#tickets #tito_inline_widget .tito-widget-form > div .tito-release .tito-quantity:after {
  content: "";
  clear: both;
}
#tickets #tito_inline_widget .tito-widget-form > div .tito-release .tito-quantity input {
  width: 50px;
  background: transparent;
  border-style: solid;
  border-color: #a4b0b6;
  border-width: 1px;
  border-radius: 3px;
  font-size: 20px;
  text-align: center;
  padding: 2px 4px;
  /* Chrome, Safari, Edge, Opera */
  /* Firefox */
}
#tickets #tito_inline_widget .tito-widget-form > div .tito-release .tito-quantity input::-webkit-outer-spin-button, #tickets #tito_inline_widget .tito-widget-form > div .tito-release .tito-quantity input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
#tickets #tito_inline_widget .tito-widget-form > div .tito-release .tito-quantity input[type=number] {
  -moz-appearance: textfield;
  -webkit-appearance: textfield;
          appearance: textfield;
}
#tickets #tito_inline_widget .tito-widget-form > div .tito-release .tito-quantity .tito-release--decrement-quantity a {
  height: 100%;
  width: 40px;
  padding: 10px;
  color: #6a51b7;
  font-size: 17px;
}
#tickets #tito_inline_widget .tito-widget-form > div .tito-release .tito-quantity .tito-release--decrement-quantity a:active {
  color: #6a51b7;
}
#tickets #tito_inline_widget .tito-widget-form > div .tito-form-actions {
  width: 100%;
  margin: 40px 1%;
}
@media (max-width: 991.98px) {
  #tickets #tito_inline_widget .tito-widget-form > div .tito-form-actions {
    margin: 10px 1%;
    padding: 15px;
  }
}
#tickets #tito_inline_widget .tito-widget-form > div .tito-form-actions .tito-discount-code-field {
  float: left;
  width: 200px;
  font-size: 16px;
  border: 1px solid #6a51b7;
  border-radius: 3px;
  padding: 6px 15px;
  background: transparent;
  transition: all 0.1s ease-in-out;
}
#tickets #tito_inline_widget .tito-widget-form > div .tito-form-actions .tito-discount-code-field:focus {
  width: 250px;
  background: white;
  outline: none;
}
#tickets #tito_inline_widget .tito-widget-form > div .tito-form-actions .tito-submit {
  font-size: 16px;
  font-weight: 500;
  color: white;
  text-transform: uppercase;
  display: block;
  background: #6a51b7;
  border: 1px solid #6a51b7;
  border-radius: 3px;
  margin: 0 auto;
  padding: 6px 25px;
  transition: all 0.1s ease-in-out;
}
#tickets #tito_inline_widget .tito-widget-form > div .tito-form-actions .tito-submit:hover {
  background: #644ab4;
  transform: scale(1.02);
  border-color: #644ab4;
}
#tickets #tito_inline_widget .tito-widget-form > div .tito-form-actions .tito-submit:disabled {
  background: transparent;
  color: #3f4a51;
  border-color: #3f4a51;
}
#tickets #tito_inline_widget .tito-widget-form > div .tito-form-actions .tito-submit--discount-code {
  float: left;
}
#tickets #tito_inline_widget .tito-widget-form > div .tito-form-actions .tito-submit:after {
  content: "";
  clear: both;
}
#tickets .button_wrapper {
  width: 100%;
  margin: 50px 0 0;
}
#tickets .button_wrapper .cta {
  display: block;
  margin: 0 auto;
}

#tickets_fallback {
  padding: 50px 0;
}
#tickets_fallback #tito_button button {
  background: none;
  border: 0;
  padding: 10px 20px;
}
#tickets_fallback #tito_button button a {
  font-size: 20px;
}
#tickets_fallback #tito_button.cta {
  width: 300px;
  padding: 0;
}
#tickets_fallback .cta {
  display: block;
  margin: 30px auto;
}

#tito-overlay * {
  font-family: "Work Sans", Helvetica, Arial, sans-serif;
}
#tito-overlay .tito-widget-form {
  background: white;
}
#tito-overlay .tito-widget-form .tito-release {
  padding: 30px 30px 30px 30px;
}
#tito-overlay .tito-widget-form .tito-release .tito-release--title, #tito-overlay .tito-widget-form .tito-release .tito-price-details-regular {
  font-size: 25px;
  font-weight: bold;
}
#tito-overlay .tito-widget-form .tito-release .tito-release--tax {
  margin: 0;
  color: #7c868e;
  font-size: 13px;
  display: block;
}
#tito-overlay .tito-widget-form .tito-release .tito-quantity {
  width: 50%;
  float: right;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  left: 15px;
  top: 5px;
}
@media (max-width: 767.98px) {
  #tito-overlay .tito-widget-form .tito-release .tito-quantity {
    width: 18%;
    position: static;
  }
}
@media (max-width: 767.98px) {
  #tito-overlay .tito-widget-form .tito-release .tito-quantity {
    width: 50%;
    position: relative;
    left: 0;
    top: 7px;
  }
}
#tito-overlay .tito-widget-form .tito-release .tito-quantity:after {
  content: "";
  clear: both;
}
#tito-overlay .tito-widget-form .tito-release .tito-quantity input {
  width: 50px;
  background: transparent;
  border-style: solid;
  border-color: #a4b0b6;
  border-width: 1px;
  border-radius: 3px;
  font-size: 20px;
  text-align: center;
  padding: 2px 4px;
  /* Chrome, Safari, Edge, Opera */
  /* Firefox */
}
#tito-overlay .tito-widget-form .tito-release .tito-quantity input::-webkit-outer-spin-button, #tito-overlay .tito-widget-form .tito-release .tito-quantity input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
#tito-overlay .tito-widget-form .tito-release .tito-quantity input[type=number] {
  -moz-appearance: textfield;
  -webkit-appearance: textfield;
          appearance: textfield;
}
#tito-overlay .tito-widget-form .tito-release .tito-quantity .tito-release--decrement-quantity a {
  height: 100%;
  width: 40px;
  padding: 10px;
  color: #6a51b7;
  font-size: 17px;
}
#tito-overlay .tito-widget-form .tito-release .tito-quantity .tito-release--decrement-quantity a:active {
  color: #6a51b7;
}
#tito-overlay .tito-widget-form .tito-form-actions {
  padding: 50px 0 30px;
}
#tito-overlay .tito-widget-form .tito-submit {
  font-size: 16px;
  font-weight: 500;
  color: white;
  text-transform: uppercase;
  display: block;
  background: #6a51b7;
  border: 1px solid #6a51b7;
  border-radius: 3px;
  margin: 0 auto;
  padding: 6px 25px;
  transition: all 0.1s ease-in-out;
}
#tito-overlay .tito-widget-form .tito-submit:hover {
  background: #644ab4;
  transform: scale(1.02);
  border-color: #644ab4;
}
#tito-overlay .tito-widget-form .tito-submit:disabled {
  background: transparent;
  color: #3f4a51;
  border-color: #3f4a51;
}
#tito-overlay .tito-widget-form .tito-submit--discount-code {
  float: left;
}
#tito-overlay .tito-widget-form .tito-submit:after {
  content: "";
  clear: both;
}
#tito-overlay .tito-registration-header {
  height: 75px;
  background: #eff2f2;
  position: relative;
}
#tito-overlay .tito-registration-header h1.tito-registration-header--event-title {
  font-size: 1.6em;
  font-family: "Agrandir Grotesk Variable Bold Wide", "Helvetica", sans-serif;
  font-weight: 600;
}
@supports (font-stretch: normal) {
  #tito-overlay .tito-registration-header h1.tito-registration-header--event-title {
    font-stretch: 150%;
  }
}
@supports (font-variation-settings: normal) {
  #tito-overlay .tito-registration-header h1.tito-registration-header--event-title {
    font-family: "Agrandir Grotesk Variable", sans-serif;
    font-variation-settings: "wght" 600, "wdth" 150;
  }
}
#tito-overlay .tito-registration-summary--details-button {
  color: #6a51b7;
  background: white;
  border-radius: 2px;
  padding: 4px 8px;
}
#tito-overlay .multiselect__option--highlight, #tito-overlay .multiselect__option--highlight:after, #tito-overlay .tito-overlay .tito-registration .tito-registration-progress .tito-progress-bar .tito-progress, #tito-overlay .tito-overlay .tito-alert-success, #tito-overlay .tito-overlay .tito-ticket-complete {
  background: #6a51b7;
}
#tito-overlay .tito-overlay .tito-registration .tito-registration-summary table.tito-registration-summary-lines td, #tito-overlay .tito-overlay .tito-registration .tito-registration-summary table.tito-registration-summary-lines th {
  padding: 1em 1.5em;
}
#tito-overlay .tito-overlay .tito-registration .tito-registration-section-header, #tito-overlay .tito-overlay .tito-registration .tito-registration-summary table.tito-registration-summary-lines td.tito-registration-summary-lines--divider {
  background: #eff2f2;
}
#tito-overlay .tito-overlay .tito-registration .tito-continue-button, #tito-overlay .tito-overlay .tito-ticket-show .tito-choose-me, #tito-overlay .tito-overlay .tito-ticket-show .tito-choose-somebody, #tito-overlay .tito-overlay .tito-ticket-show .tito-ticket-show--footer .tito-ticket-show--submit, #tito-overlay .tito-overlay .tito-upgrade-choose-button {
  background: #99daff;
  border-color: #99daff;
}
#tito-overlay .tito-overlay .tito-valid.tito-address-fields-address-label, #tito-overlay .tito-overlay .tito-valid.tito-address-fields-city-label, #tito-overlay .tito-overlay .tito-valid.tito-address-fields-country-label, #tito-overlay .tito-overlay .tito-valid.tito-address-fields-state-province-region-label, #tito-overlay .tito-overlay .tito-valid.tito-address-fields-zip-label, #tito-overlay .tito-overlay .tito-valid.tito-company-name-label, #tito-overlay .tito-overlay .tito-valid.tito-email-label, #tito-overlay .tito-overlay .tito-valid.tito-field-label, #tito-overlay .tito-overlay .tito-valid.tito-italian-fiscal-code-label, #tito-overlay .tito-overlay .tito-valid.tito-italian-pec-label, #tito-overlay .tito-overlay .tito-valid.tito-name-label, #tito-overlay .tito-overlay .tito-valid.tito-phone-number-label, #tito-overlay .tito-overlay .tito-valid.tito-purchase-order-number-label, #tito-overlay .tito-overlay .tito-valid.tito-ticket-email-label, #tito-overlay .tito-overlay .tito-valid.tito-ticket-first-name-label, #tito-overlay .tito-overlay .tito-valid.tito-ticket-last-name-label, #tito-overlay .tito-overlay .tito-valid.tito-vat-number-label, #tito-overlay .tito-overlay .tito-registration .tito-registration-progress .tito-registration-progress-item.tito-registration-progress-item--active {
  color: #6a51b7;
}
#tito-overlay .tito-overlay .tito-registration .tito-close-x {
  background: none;
  top: 50%;
  left: unset;
  right: 10px;
  color: #3f4a51 !important;
  transform: translateY(-50%);
  position: absolute;
}

#ie_support {
  display: none;
}

/* SECTION SEVEN */
#section-seven {
  height: 730px;
  margin: 0 auto 150px;
  padding-top: 150px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 1399.98px) {
  #section-seven #section-seven h3 {
    margin-left: 10px;
  }
  #section-seven #section-seven img {
    max-width: 60vw;
    right: 20px;
    bottom: 100px;
  }
}

#section-seven h3, #section-seven h3 span {
  max-width: 1000px;
  min-width: 300px;
  font-size: 34px;
  line-height: 1.6;
  font-weight: 200;
  font-stretch: 200%;
  font-family: "Agrandir Grotesk", sans-serif;
  margin: 0;
  z-index: 10;
  position: relative;
  letter-spacing: 1px;
}

#section-seven h3 span {
  margin-top: 25px;
  display: inline-block;
}

#section-seven aside {
  width: 300px;
  background: rgba(239, 242, 242, 0.7);
  margin-top: 100px;
  padding: 20px;
  margin-left: 50px;
  z-index: 2;
}

#section-seven aside li {
  position: relative;
  margin: 0 0 30px 0;
}

#section-seven aside li:last-child {
  margin-bottom: 0;
}

#section-seven aside h4 {
  width: 70px;
  text-transform: uppercase;
  position: absolute;
  left: -110px;
  top: 2px;
  margin: 0;
  text-align: right;
  font-weight: 600;
  font-size: 15px;
}

#section-seven > aside > ul > li:nth-child(4) a {
  margin-top: 10px;
  display: inline-block;
}

#section-seven img {
  position: absolute;
  right: 0;
  bottom: 20px;
  z-index: 0;
  width: 100%;
  max-width: 750px;
  -o-object-fit: contain;
  object-fit: contain;
  filter: brightness(1.1);
}

/* SECTION EIGHT*/
#section-eight {
  height: 70vh;
  height: calc(70 * var(--vh));
  width: 100%;
}
@media (max-width: 767.98px) {
  #section-eight {
    margin-top: 15vh;
    height: calc(100vh - 290px);
    height: calc(100 * var(--vh) - 290px);
  }
}
#section-eight .wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#section-eight h2 {
  margin-bottom: 0;
  font-weight: 767;
  font-stretch: 200%;
  max-width: 80vw;
  text-align: center;
  margin: 0 auto;
}
#section-eight h3 {
  font-weight: 400;
  margin: 50px auto 20px;
}
#section-eight .cta {
  margin: 30px auto;
}
#section-eight .with_logo {
  margin-top: 50px;
}

/* end SECTION EIGHT*/
.get-in-touch {
  background-color: #eff2f2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 10px;
}

h3.gt-title {
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
}

.gt-text {
  text-align: center;
  color: #7c868e;
}

.cta.btn-gt {
  border: solid 2px #59636B;
  color: #59636B;
  background-color: transparent;
  margin: 30px auto 0 auto;
  width: -moz-fit-content;
  width: fit-content;
  text-decoration: none;
}
.cta.btn-gt:hover {
  color: #eff2f2;
  background-color: #59636B;
}

/*--- utility classes ----*/
.course-title {
  margin-bottom: 3rem !important;
}

.course-title,
.with_link,
.course-title-2,
.course-subtitle,
.course-dates,
.cta {
  z-index: 100;
  position: relative;
}

.bg_desktop {
  position: relative;
  top: 33vh;
}

.button a.cta-invew {
  background-color: transparent !important;
  color: white;
}

.section-one #navcta.cta.cta-invew:hover {
  background: var(--purple);
  color: black;
}

h3.course-subtitle {
  font-weight: 400 !important;
  font-size: 22px !important;
  padding-top: 3rem;
  max-width: 60vw;
}

h4.course-dates {
  font-size: 26px !important;
  color: var(--purple);
  padding-bottom: 2.8rem;
  padding-top: 4rem !important;
}

.with-graph {
  width: 100%;
}

ul h4.bold {
  font-weight: 700 !important;
}

.font-bold {
  font-weight: 700 !important;
}

.take-aways {
  max-width: 50vw;
  margin-bottom: 10rem;
}

.take-aways h3 {
  font-size: 36px;
  padding-bottom: 2rem;
}

.take-aways li {
  display: flex;
  flex-direction: row;
  padding: 1rem 0px;
  align-items: flex-start;
  gap: 18px;
}

.take-aways h4 {
  font-size: 24px;
  margin-top: 0px;
}

.take-aways ul {
  padding-left: 0px;
}

.take-aways svg {
  margin-top: 6px;
}

.font-xl {
  font-size: 40px;
}

.font-m {
  font-size: 20px !important;
}

.font-ml {
  font-size: 24px !important;
}

.font-l {
  font-size: 32px !important;
}

.with-team img {
  width: 100%;
  border-radius: 20px;
  margin-bottom: 8rem;
}

.agrandir-wide {
  font-family: "Agrandir Variable Regular Wide", "Helvetica", sans-serif;
}

.call-to-action {
  width: 100%;
  display: flex;
  align-items: center;
  text-align: center;
}

#section-journey.section-two {
  margin-top: -48vh !important;
  margin-bottom: 60px !important;
  display: flex;
  flex-direction: column;
}

.section-two .key-points {
  padding-left: 0px !important;
  padding-bottom: 8rem;
}

.section-two p {
  margin-bottom: 4rem;
}

.section-two h2 {
  margin-bottom: 4rem;
}

article.event-calendar {
  width: 100%;
  padding-left: 6rem;
  gap: 2rem;
  display: flex;
  flex-direction: column;
}

.day-ctn {
  display: flex;
  flex-direction: row;
  gap: 8rem;
}

.day-ctn__left {
  min-width: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.day-ctn .day-info {
  width: 50%;
}

.day-ctn .day-ctn__right-wrapper {
  display: flex !important;
  flex-direction: row !important;
  gap: 8rem;
}

.day-ctn .day-ctn__right {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.day-ctn .day__info-wrapper {
  display: flex;
  flex-direction: column;
}

.day__info-left-wrapper,
.day__info-right-wrapper {
  width: 50%;
}

.day__info-right-wrapper h4 {
  margin: 0px 0px 2rem 0px;
}

.event-calendar ul svg {
  width: 24px;
  padding-left: 0px;
}

.event-calendar li {
  padding-left: 0px;
  display: flex;
  flex-direction: row;
  gap: 18px;
}

.event-calendar ul {
  padding-left: 0px;
}

.event-calendar li p {
  margin-bottom: 2rem;
}

#section-journey .list p {
  margin-left: 1rem;
}

#section-journey .list {
  margin-top: 10rem;
}

#section-organization.section-three {
  background-color: #f1c194;
  margin: 0;
  padding: 10rem;
  width: 100vw;
  max-width: unset;
}

#section-organization.section-three #section-header {
  width: 72vw;
}

#section-organization .with-graph {
  margin: 8rem 0rem;
}

#section-organization #section-footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

#section-organization #section-footer > :first-child {
  width: 62vw;
  margin-bottom: 8rem;
}

#section-organization h2 {
  margin-bottom: 4rem;
}

.mb-8 {
  margin-bottom: 4rem;
}

.text-align_center_new {
  text-align: center !important;
  width: 80vw;
}

#section-five h2 {
  padding-top: 7.5rem;
}

.full-width {
  width: 100%;
  padding: 0px;
  margin: 0px;
}

#speakers_container img {
  border-radius: 20px;
}

.multiline-ellipsis {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  /* Limits the text to 5 lines */
  -webkit-line-clamp: 5;
  line-clamp: 5;
  /* Ensures that the element's height adapts to a minimum of 3 lines and a maximum of 5 lines */
  max-height: 7.5em; /* Adjust 1.5em based on line-height */
  min-height: 4.5em;
  height: clamp(4.5em, 100%, 7.5em);
  line-height: 1.5em; /* Adjust this to match your line height */
}

.description-wrapper {
  display: flex;
  flex-direction: column;
}

.description-wrapper .description,
.speaker .info div {
  padding-left: 0 !important;
}

#content_holder .image,
#content_holder .info {
  margin-bottom: 0px !important;
}

#front-door {
  margin-top: 6rem;
  width: 100vw;
  -o-object-fit: contain;
     object-fit: contain;
}

#section-withco .row {
  display: flex;
  flex-direction: column;
}

.align-self-right {
  align-self: flex-end;
}

.no-float {
  float: unset !important;
}

.mt-12 {
  margin-top: 8rem;
}

.with_link {
  margin: 3vh;
}

@media (max-width: 700px) {
  h4.course-title {
    font-size: 14px !important;
  }
  .course-title-2 {
    font-size: 4em !important;
    margin-top: 1vh !important;
  }
  h3.course-subtitle,
  h3.with_logo {
    font-size: 20px !important;
  }
  h4.course-dates {
    font-size: 18px !important;
    padding-bottom: 0 !important;
    padding-top: 0 !important;
  }
  #section-one .button {
    margin: 0 !important;
    margin-top: 2vh !important;
  }
  #section-one {
    justify-content: space-between;
    height: 70vh;
    margin-bottom: 28vh;
  }
  #down_arrow {
    bottom: 0vh;
  }
  h4 {
    font-size: 18px !important;
  }
  h3,
  h3.font-l {
    font-size: 24px !important;
  }
  h2.font-l {
    font-size: 24px !important;
  }
  p.font-m {
    font-size: 16px !important;
  }
  .take-aways {
    max-width: unset;
    margin-bottom: 4rem;
  }
  #cta_final {
    padding: 0px 0px 60px 0px;
  }
  #tickets {
    padding: 30px 0 !important;
  }
  #tickets .in-company {
    padding: 0 !important;
  }
  #tickets .in-company.mt-12 {
    margin-top: 4rem !important;
  }
  #footer {
    height: unset;
  }
  #footer .copyright {
    text-align: center;
    margin: 0px;
    display: flex;
    justify-content: center;
  }
  #section-withco {
    margin: 30px 0px;
  }
  #section-withco .client_logos h5 {
    text-align: center;
  }
  #front-door {
    margin-top: 0rem !important;
  }
  #section-five #speakers_container {
    padding: 0px;
    padding-bottom: 4rem;
  }
  #section-five h2 {
    padding-top: 0px;
    margin-top: 0px;
  }
  #section-organization.section-three,
  #section-five {
    padding: calc(30px + 4rem) 30px;
  }
  #section-organization #section-footer > :first-child {
    padding: 0px;
    width: 100%;
    margin-bottom: 4rem;
  }
  #section-five article {
    padding: 0 10px;
  }
  #section-organization h2 {
    margin-top: 0rem;
  }
  #section-organization #section-header:first-child {
    width: 100%;
  }
  #cta_final h2,
  #section-intro h2 {
    font-size: 2.6rem !important;
  }
  #section-five article .info .view_more {
    width: 100%;
    text-align: center;
    padding: 8px 16px;
    font-size: 1.1rem;
    margin-top: 12px;
  }
  #popup #content_holder .info {
    display: flex !important;
    flex-direction: column !important;
  }
  #popup #content_holder .image img {
    max-height: unset !important;
  }
  #section-five article .info h3 {
    font-size: 1.8rem !important;
    padding: 0;
    margin: 15px 0 5px;
  }
  #section-journey .list ul li {
    margin-bottom: 2.8rem;
    position: relative;
    font-size: 15px;
  }
  .event-calendar ul {
    padding-bottom: 0px;
  }
  #section-journey.section-two {
    margin-bottom: 0px !important;
  }
  .with-team img {
    width: 100%;
    border-radius: 20px;
    margin-bottom: 8rem;
    aspect-ratio: 1/1;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .day-ctn .day-ctn__right-wrapper {
    gap: 0rem;
  }
  article.event-calendar {
    padding-left: 0rem;
    gap: 0rem;
  }
  .day-ctn {
    gap: 2rem;
  }
  .section-two p {
    margin-bottom: 0rem;
  }
  svg.calendar-path-mob {
    display: none !important;
  }
  #section-journey .list {
    margin-top: 6rem;
  }
  .calendar-path {
    display: none !important;
  }
  .calendar-path-mob {
    display: block !important;
  }
}
@media (max-width: 380px) {
  #section-one {
    margin-bottom: 10vh;
  }
}
@media (max-width: 460px) {
  .navigation.nav_wrapper a#navcta,
  .navigation.nav_wrapper h4.font-bold {
    font-size: 12px !important;
  }
}
@media (max-width: 560px) {
  .with-graph {
    display: none !important;
  }
  .with-graph-mob {
    display: unset !important;
  }
}
.with-graph-mob {
  display: none;
  width: 100%;
  align-self: center;
}

.calendar-path-mob {
  display: none;
}

@media (max-width: 580px) {
  #section-journey.section-two {
    margin-top: 0vh !important;
  }
}
@media (max-width: 1048px) and (min-width: 581px) {
  #section-journey.section-two {
    margin-top: -22vh !important;
  }
}
@media (max-width: 1200px) and (min-width: 1049px) {
  #section-journey.section-two {
    margin-top: -44vh !important;
  }
}
@media (max-width: 980px) {
  .day-ctn .day-ctn__right-wrapper {
    display: flex !important;
    flex-direction: column !important;
    gap: 2rem;
  }
  .day__info-left-wrapper,
  .day__info-right-wrapper {
    width: 100%;
  }
}
#tickets #tito_inline_widget .tito-widget-form > div .tito-release .tito-quantity .tito-release--decrement-quantity a,
a.tito-release--increment-quantity--link {
  height: 100%;
  width: 40px;
  padding: 10px;
  color: #6a51b7;
  font-size: 16px;
}

#section-journey .list ul li {
  margin: 0 0 auto;
  position: relative;
  font-size: 15px;
  height: 120px;
}

@media (max-width: 767px) {
  #section-journey .list ul li {
    margin: 0 0 auto;
    height: 60px;
  }
  #section-journey .list ul {
    margin: 0 0 auto;
  }
}
.nav_wrapper nav > div h4 {
  color: black;
}

label.tito-release--title {
  display: flex !important;
  flex-direction: column !important;
}

.umbrella #main_wrapper_wrapper {
  display: flex !important;
  flex-direction: row !important;
}

.umbrella #background img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: static !important;
  scale: 2;
}

body {
  background-color: white !important;
}

.umbrella-1 {
  background-color: #fff6df !important;
}

.umbrella-1 img {
  padding-bottom: 16.5vh;
}

.umbrella-2 {
  background-color: #ffffff !important;
}

.umbrella #section-one {
  margin-bottom: 0px !important;
  padding: 14rem 6rem 4rem 6rem;
  height: auto;
  justify-content: space-evenly !important;
}

#footer {
  height: 10vh;
  display: flex;
  align-items: center;
}

#footer .with_link {
  margin: 0px;
}

#footer .container,
#footer {
  background-color: #eff2f2;
}

main.umbrella {
  height: 100vh;
}

main.main_wrapper {
  height: 100%;
}

main #main_wrapper_wrapper {
  height: 90vh;
}

#background {
  width: 100%;
  height: 100%;
  top: 0;
  overflow: hidden;
}

@media (max-width: 1020px) {
  .umbrella #main_wrapper_wrapper {
    display: flex !important;
    flex-direction: column !important;
  }
  main #main_wrapper_wrapper {
    height: unset;
  }
  .umbrella #section-one {
    padding: 14rem 6rem !important;
  }
  #footer {
    height: unset;
  }
}
.cta.cta-inview.btn-1:hover {
  color: #fff6df !important;
}

.cta.cta-inview.btn-2:hover {
  color: white !important;
  background-color: #6a51b7 !important;
}

.cta.cta-inview.btn-2 {
  color: #6a51b7 !important;
  border-color: #6a51b7;
}

.umbrella-2 .course-dates {
  color: #6a51b7;
}

.nav-brand {
  position: absolute;
  top: 0;
  left: 0;
  padding: 6rem;
  height: -moz-fit-content;
  height: fit-content;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 999;
}

.nav-brand h3 {
  font-family: "Agrandir Variable Medium Wide", "Helvetica", "Sans Serif";
}

#section-one .button {
  margin-top: 4rem !important;
}

.nav-brand h3 {
  font-family: "With Sans", sans-serif;
  font-weight: 400;
  font-stretch: 200%;
  font-size: 2.2em;
  font-variation-settings: "wght" 400, "wdth" 200;
}

.nav-brand a:hover {
  text-decoration: none !important;
}

@media (max-width: 700px) {
  .nav-brand {
    padding: 3rem;
  }
}/*# sourceMappingURL=main.css.map */