:root {
  --black: #000000;
  --white: #ffffff;
  --white-glass: #ffffff26;

  --gray: #757575;
  --light-gray: #cecece;
  --dark-gray: #1f1f1f;
  --slightly-dark-gray: #3d3d3d;

  --dark-blue: #01396e;
  --resolution-blue: #0b2f80;
  --persian-blue: #003aba;
  --yinmn-blue: #4a5f93;
  --delft-blue: #344067;
  --delft-blue-2: #192f5d;
  --powder-blue: #9faac5;
  --medium-dark-blue: #015db3;
  --medium-light-blue: #dfeafc;
  --blue: #0786ff;
  --blue-1: #0786ff;
  --light-blue: #d5f2ff;
  --very-light-blue: #ecf3ff;

  --ghost-white: #f6f7fb;
  --ghost-white-darker: #eff3fe;
  --lavander: #dadfeb;

  --selective-yellow: #ffb200;
  --dark-yellow: #db9900;
  --light-yellow: #fff6e9;

  --orange: #f1851a;
  --dark-orange: #bf511a;
  --light-orange: #e99b71;
  --very-light-orange: #ffcdb2;

  --sage-green: #8ea58b;
  --darker-sage-green: #738a6e;
  --dark-sage-green: #324d3e;
  --very-light-sage-green: #f3f9f2;

  --blue-gradient-conferences: linear-gradient(
    274.59deg,
    #003aba 0%,
    #275fdc 99.6%
  );

  --blue-gradient: linear-gradient(
    90deg,
    rgba(1, 98, 187, 0.95) 0%,
    rgba(10, 137, 255, 0.95) 100%
  );

  --blue-gradient-1: linear-gradient(
    90deg,
    rgb(1, 98, 187) 0%,
    rgb(10, 137, 255) 100%
  );

  --orange-gradient: linear-gradient(
    90deg,
    rgba(255, 144, 0, 1) 0%,
    rgba(219, 115, 63, 1) 100%
  );

  --sage-green-gradient: linear-gradient(
    90deg,
    rgba(115, 138, 110, 1) 0%,
    rgba(50, 77, 62, 1) 100%
  );
}
* {
  font-family: "Poppins", sans-serif;
}
*::-webkit-scrollbar {
  width: 8px;
}
*::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 35px;
}
*::-webkit-scrollbar-thumb {
  background: var(--powder-blue);
  border-radius: 35px;
}
*::-webkit-scrollbar-button {
  display: none;
}
@supports not selector(::-webkit-scrollbar) {
  * {
    scrollbar-color: var(--powder-blue) transparent;
  }
}
.section-margin {
  margin: 3rem 0rem;
}
body > section:nth-child(3) {
  margin-top: 1.5rem;
}
.section-margin:last-of-type {
  margin-bottom: 1.5rem;
}
.container--custom {
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  padding-left: var(--bs-gutter-x, 0.75rem);
  padding-right: 0;
}
.intro-section .swiper-slide::before {
  content: "";
  width: 120%;
  height: 100%;
  position: absolute;
  top: 0rem;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, #ffffff 72.6%);
  z-index: 1;
}
.swiper-slide__bg-img {
  object-fit: cover;
}
.container__is-content-wrapper {
  padding-top: 2.75rem;
  padding-bottom: 2.75rem;

  z-index: 2;
}
.container__is-content-wrapper h1 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--black);
  margin-bottom: 1.25rem;
}
.is-content-wrapper__btn-badge-wrapper {
  margin-top: 1.25rem;
  margin-bottom: 7.5rem;
  gap: 0.75rem;
}
.btn-badge-wrapper__btn {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.1;
  color: var(--black);
  background-color: var(--white);
  border-radius: 0.625rem;
  border: 0.063rem solid #d0d0d0;
  padding: 1rem 1.75rem;
  gap: 1.25rem;
  text-wrap: nowrap;
  transition: transform 0.2s ease;
}
@media (max-width: 768px) {
  .btn-badge-wrapper__btn {
    font-size: 1rem;
  }
}
.btn-badge-wrapper__btn.primary {
  color: var(--white);
  background-color: var(--persian-blue);
  border-color: var(--powder-blue);
}
.btn-badge-wrapper__btn:hover {
  color: var(--black);
  animation: btnBounce 0.35s ease;
}
.btn-badge-wrapper__btn.primary:hover {
  color: var(--white);
}
.btn-badge-wrapper__btn.secondary {
  color: var(--persian-blue);
  background-color: transparent;
  border-color: var(--powder-blue);
}
@keyframes btnBounce {
  0% {
    transform: translateY(0);
  }

  45% {
    transform: translateY(-4px);
  }

  100% {
    transform: translateY(0);
  }
}
.btn__arrow {
  width: 1.5rem;
}
.btn-badge-wrapper__badge {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.1;
  color: var(--dark-blue);
  background-color: var(--white);
  border-radius: 0.5rem;
  border: 0.063rem solid var(--powder-blue);
  padding: 1rem;
  width: fit-content;
}
.is-content-wrapper__heading-wrapper {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.1;
  color: var(--persian-blue);
  margin-bottom: 1.25rem;
}
.is-content-wrapper__heading-wrapper img {
  width: 7.75rem;
}
.is-content-wrapper__info-paragraph {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.1;
  color: var(--gray);
  margin-bottom: 1.25rem;
}
.introSectionSwiper__pagination {
  bottom: 1.75rem !important;
  z-index: 1;
}
.btn-badge-wrapper__blue-badge {
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
  color: var(--persian-blue);
  background-color: #003aba1a;
  backdrop-filter: blur(2.25rem);
  padding: 0.625rem 1.875rem;
  border-radius: 1.25rem;
}
.event-info-section {
  --event-primary: #12195f;
  --event-border: #d8e2ff;
  --event-gradient-start: #4d6be0;
  --event-gradient-end: #293fc1;

  margin-top: 150px;
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}
.row__item {
  padding: 0.063rem;
  background: linear-gradient(
    89.22deg,
    #c5daff -10.47%,
    #ffffff 61.56%,
    #9cbeff 128.67%
  );
  border-radius: 1.25rem;
}
.event-info-card {
  height: 100%;
  padding: 1.5rem;
  border-radius: calc(1.25rem - 0.063rem);
  display: flex;
  flex-direction: column;
  background: linear-gradient(90deg, #ffffff 0%, #fdfdff 100%);
}
.event-info-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: fit-content;
  min-width: 9.5rem;
  min-height: 3rem;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    var(--event-gradient-start) 0%,
    var(--event-gradient-end) 100%
  );
  color: #fff;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1;
}
.event-info-label-sm {
  min-width: 7rem;
}
.event-info-content {
  margin-top: auto;
  padding-top: 1.5rem;
  color: var(--event-primary);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.container__heading {
  margin-bottom: 2.75rem;
}
.container__heading h1 {
  font-size: 1.625rem;
  font-weight: 600;
  line-height: 1.1;
  color: var(--black);
  margin-bottom: 1rem;
}
.container__heading h2 {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.2;
  color: var(--black);
  margin-bottom: 1rem;
}
.heading__badge {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.1;
  color: var(--black);
  margin-bottom: 1rem;
  border-radius: 4rem;
  border: 0.063rem solid var(--light-gray);
  padding: 0.5rem 2.5rem;
  width: 80%;
  text-align: center;
  z-index: 1;
}
.card__front {
  position: relative;
  height: 21.25rem;
  border-radius: 1.625rem;
  border: 0.5rem solid var(--ghost-white-darker);
  overflow: hidden;
}
.card__front::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.9) 20%,
    rgba(0, 0, 0, 0.6) 40%,
    rgba(0, 0, 0, 0.2) 70%,
    rgba(0, 0, 0, 0) 100%
  );
}
.front__img {
  transform: translateX(-50%);
  object-fit: cover;
}
.front__content {
  height: auto;
  padding: 0rem 1.75rem 1.5rem 1.75rem;
  z-index: 3;
}
.content__title {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1rem;
}
.content__text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.2;
  color: var(--white);
}
.cards-swiper__pagination--highlights {
  width: fit-content !important;
  left: 50% !important;
  transform: translateX(-50%);
}
.conference-overview-section {
  background-color: #003aba1a;
  padding-top: 3.25rem;
  padding-bottom: 3.25rem;
}
.conference-overview-section .container {
  height: fit-content;

  gap: 3.25rem;
}
.conference-overview-section h3 {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.1;
  color: var(--black);
  margin-bottom: 1rem;
}
.conference-overview-section__btn {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.1;
  color: var(--black);
  background-color: var(--white);
  border-radius: 0.625rem;
  border: 0.063rem solid #d0d0d0;
  padding: 0.75rem 1.25rem;
  gap: 1.25rem;
  text-wrap: nowrap;
  width: fit-content;
  transition: transform 0.2s ease;
}
.conference-overview-section__btn.primary {
  color: var(--white);
  background-color: var(--persian-blue);
  border-color: var(--powder-blue);
}
.conference-overview-section__btn:hover {
  color: var(--black);
  animation: btnBounce 0.35s ease;
}
.conference-overview-section__btn.primary:hover {
  color: var(--white);
}
.left-block__img-1 {
  height: 60%;
  border-radius: 1.5rem;
}
.left-block__img-2 {
  height: 40%;
  border-radius: 1.5rem;
}
.left-block__img-3 {
  height: 100%;
  border-radius: 1.5rem;
}
.left-block__img-1 img,
.left-block__img-2 img,
.left-block__img-3 img {
  object-fit: cover;
}
.left-block__img-1 img {
  scale: 1.35;
}
.left-block__img-2 img {
  scale: 1.5;
}
.conference-overview-section__right-block {
  height: fit-content;
  width: fit-content;
}
.conference-overview-section__right-block h3 {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--black);
  margin-bottom: 1.25rem;
}
.conference-overview-section__right-block p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.1;
  color: var(--dark-gray);
  margin-bottom: 1.25rem;
}
.right-block__badge {
  font-size: 0.813rem;
  font-weight: 400;
  line-height: 1.1;
  color: var(--black);
  background-color: var(--white);
  padding: 0.5rem 1.75rem;
  border-radius: 0.5rem;
  border: 0.063rem solid var(--powder-blue);
  margin-bottom: 1.25rem;
  width: fit-content;
}
.section-heading {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--black);
  margin-bottom: 1.25rem;
}
.right-block__paragraph {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.2;
  color: var(--dark-gray);
  margin-bottom: 1.25rem;
}
.right-block__paragraph span {
  font-weight: 700;
}
.right-block__list {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.2;
  color: var(--black);
  width: fit-content;
}
.why-attend-section {
  padding-top: 2.5rem !important;
  padding-bottom: 2.5rem !important;
}
.why-attend-content {
  max-width: 100%;
}
.why-attend-title {
  margin: 0 0 1rem;
  color: #050505;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.035em;
}
.why-attend-intro {
  max-width: 560px;
  margin: 0 0 1.5rem;
  color: #202020;
  font-size: 1rem;
  line-height: 1.3;
}
.why-attend-block + .why-attend-block {
  margin-top: 1.75rem;
}
.why-attend-block h3 {
  margin: 0 0 0.75rem;
  color: #111;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.25;
}
.why-attend-block ul {
  margin: 0;
  padding-left: 1.6rem;
}
.why-attend-block li {
  padding-left: 0.15rem;
  color: #171717;
  font-size: 0.95rem;
  line-height: 1.3;
}
.why-attend-block li + li {
  margin-top: 0.25rem;
}
.why-attend-image {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 1.25rem;
}
.why-attend-image img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}
.agenda-section__container {
  background-color: var(--white);
  border: 0.0625rem solid var(--lavander);
  border-radius: 2.125rem;
}
.agenda-section__info-block {
  box-shadow: rgba(99, 105, 121, 0.25) 0rem 0.25rem 1.5625rem 0rem;
  padding: 2.25rem 2rem 1.5rem 2rem;
  border-radius: 2.125rem 2.125rem 0 0;
}
.info-block__left-block h4 {
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 110%;
  color: var(--black);
  margin-bottom: 0.75rem;
}
.info-block__left-block p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 110%;
  color: var(--black);
}
.left-block__btn-wrapper {
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.day-btn-wrapper__btn {
  font-size: 1rem;
  font-weight: 600;
  line-height: 110%;
  color: var(--yinmn-blue) !important;
  padding: 0.8125rem 0.9375rem;
  border: 0.0625rem solid var(--powder-blue) !important;
  border-radius: 0.5rem !important;
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
}
.day-btn-wrapper__btn.active {
  color: var(--white) !important;
  background-color: var(--medium-dark-blue) !important;
  border: 0.0625rem solid transparent !important;
}
.day-btn-wrapper__btn:hover {
  color: var(--white) !important;
  background-color: var(--medium-dark-blue) !important;
  border: 0.0625rem solid transparent !important;
}
.day-btn-wrapper__btn.btn__orange {
  color: var(--dark-orange);
  border: 0.0625rem solid var(--orange);
}
.day-btn-wrapper__btn.btn__orange:hover {
  color: var(--white);
  background-color: var(--selective-yellow);
  border: 0.0625rem solid transparent;
}
.btn-wrapper__download-btn {
  font-size: 1rem;
  font-weight: 500;
  line-height: 110%;
  color: var(--white);
  background-color: var(--dark-gray);
  padding: 0.8125rem 0.9375rem;
  border-radius: 0.5rem;
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
  text-decoration: none;
  gap: 0.75rem;
  width: fit-content;
}
.btn-wrapper__download-btn:hover {
  color: var(--white);
  background-color: var(--black);
}
.info-block__right-block {
  padding: 2rem 3.5rem;
  /*box-shadow: rgba(99, 105, 121, 0.25) 0rem -0.25rem 1.5625rem 0rem;*/
}
.info-block__right-block a {
  font-size: 1rem;
  font-weight: 500;
  line-height: 110%;
  color: var(--black);
  background-color: var(--selective-yellow);
  border: 0.0625rem solid var(--dark-yellow);
  border-radius: 0.5rem;
  padding: 0.75rem 2.25rem;
  width: fit-content;
  text-wrap: nowrap;
}
.info-block__right-block a img {
  margin-left: 0.5rem;
}
.agenda-section__horizontal-separator {
  height: 0.0625rem;
  background-color: var(--light-gray);
}
.agenda-section__session-wrapper {
  overflow: hidden;
  padding: 0 2rem;
  height: 17rem;

  overflow-y: auto;
  border-top: 2rem solid transparent;
  border-bottom: 2rem solid transparent;
}
.agenda-section__session-wrapper--conferences-single-thumb::-webkit-scrollbar-thumb {
  background-color: var(--medium-dark-blue);
}
.session-wrapper__block {
  height: 100%;
  margin-right: -2rem;
  padding-right: 2rem;
  box-sizing: content-box;
}
.session-wrapper__block::-webkit-scrollbar-track {
  background: transparent;
}
.session-wrapper__block::-webkit-scrollbar-thumb {
  background: var(--medium-dark-blue);
}
.session-block__session-info {
  margin: 2.5rem 0;
}
.badge-wrapper__badge {
  font-size: 1rem;
  font-weight: 600;
  line-height: 110%;
  color: var(--white);
  background-color: var(--medium-dark-blue);
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  width: fit-content;
  max-width: 100%;
}
.session-info__time {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 100%;
  color: var(--gray);
}
.session-block__text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 110%;
  color: var(--black);
  margin-bottom: 1rem;
}
.session-block__bullet {
  width: 0.5275rem;
  height: 0.5275rem;
  background-color: var(--medium-dark-blue);
  border-radius: 50%;
}
.venue-section {
  background-color: transparent;
  z-index: 1;
}
.venue-section .tab-content > .active {
  display: flex !important;
}
.container__venue-tabs {
  margin-bottom: 4rem;
}
.container__venue-tabs button {
  padding: 0.063rem;
  border-radius: 0.625rem;
  background: linear-gradient(268.16deg, #f6f9ff 3.42%, #ebeef4 97.22%);
  width: fit-content;
}
.container__venue-tabs button span {
  font-size: 1rem;
  font-weight: 500;
  line-height: 110%;
  color: var(--black);
  position: relative;
  z-index: 1;
  transition: color 0.3s ease-in-out;
}
.container__venue-tabs button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(274.59deg, #003aba 0%, #275fdc 99.6%);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  border-radius: inherit;
  z-index: 0;
}
.container__venue-tabs button:hover::before,
.container__venue-tabs button.active::before {
  opacity: 1;
}
.container__venue-tabs button:hover span,
.container__venue-tabs button.active span {
  color: var(--white);
}
.container__venue-tabs button:hover .tab-btn__content-wrapper,
.container__venue-tabs button.active .tab-btn__content-wrapper {
  background: transparent;
}
.btn-wrapper__tab-btn {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.1;
  text-decoration: none;
  color: var(--white);
  background-color: transparent;
  border-radius: 0.75rem;
  border: 0.063rem solid var(--light-blue);
  padding: 1.25rem 1.5rem;
  width: 100%;
}
.btn-wrapper__tab-btn.active {
  color: var(--lighter-blue);
  background-color: var(--ghost-white);
}
.btn-wrapper__tab-btn:hover {
  color: var(--lighter-blue);
  background-color: var(--ghost-white);
}
.tab-btn__content-wrapper {
  padding: 1.25rem 3.75rem;
  background: var(--ghost-white);
  border-radius: calc(0.625rem - 0.063rem);
  position: relative;
  z-index: 1;
}
.tab-pane__vs-content-wrapper .heading-badge {
  margin-bottom: 1.75rem;
}
.tab-pane__vs-content-wrapper {
  background-color: var(--white);
  border-radius: 1.75rem;

  border: 0.063rem solid var(--lavander);

  padding: 2rem 2.25rem;

  gap: 1.5rem;
}
.vs-content-wrapper__left-block {
  height: fit-content;
}
.vs-content-wrapper__left-block h1 {
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 110%;
  color: var(--black);
  margin-bottom: 1.25rem;
}
.vs-content-wrapper__left-block ul li {
  font-size: 1rem;
  font-weight: 400;
  line-height: 120%;
  color: #000000;
}
.badge-container {
  padding: 0.063rem;
  border-radius: 1.25rem;
  background: linear-gradient(82.33deg, #ffffff 7.1%, #dee0f5 96.45%);
  width: fit-content;
  height: fit-content;
  margin-bottom: 2.25rem;
}
.badge-container__content {
  font-size: 0.813rem;
  font-weight: 400;
  line-height: 1.1;
  color: var(--dark-blue);
  padding: 0.75rem 1.75rem;
  border-radius: calc(1.25rem - 0.063rem);
  width: fit-content;
  height: fit-content;
}
.vs-content-wrapper__right-block {
  width: 100%;
}
.vs-content-wrapper__right-block img {
  object-fit: cover;
  border-radius: 1.25rem;
}
.vs-content-wrapper__right-block--leuven-img img {
  object-position: 60% center;
}
.closest-hotel-section {
  z-index: 1;
}

.swiper--venue-swiper .swiper-slide {
  position: relative;
}

.swiper--venue-swiper .swiper-slide .hotel-name-label {
  right: 10px;
  bottom: 10px;

  background-color: #ffffff;
  color: #111111;

  padding: 10px 20px;
  border-radius: 12px;

  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.1;

  z-index: 2;
}
.container__chs-content-wrapper {
  background-color: var(--white);
  border-radius: 1.75rem;

  box-shadow:
    0px 2.77px 2.21px 0px rgba(0, 0, 0, 0.0056),
    0px 6.65px 5.32px 0px rgba(0, 0, 0, 0.0081),
    0px 12.52px 10.02px 0px rgba(0, 0, 0, 0.01),
    0px 22.34px 17.87px 0px rgba(0, 0, 0, 0.0119),
    0px 41.78px 33.42px 0px rgba(0, 0, 0, 0.0144),
    0px 100px 80px 0px rgba(0, 0, 0, 0.02);

  padding: 2rem 2.25rem;

  gap: 1.5rem;
}
.chs-content-wrapper__left-block {
  height: fit-content;
}
.chs-content-wrapper__left-block h1 {
  font-size: 1.625rem;
  font-weight: 600;
  line-height: 110%;
  color: var(--black);
  margin-bottom: 1rem;
}
.chs-content-wrapper__left-block ul li {
  font-size: 1rem;
  font-weight: 400;
  line-height: 120%;
  color: #000000;
}
.left-block__text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 120%;
  color: #000000;
  margin-bottom: 2rem;
}
.left-block__button-container a {
  font-size: 1rem;
  font-weight: 500;
  line-height: 110%;
  color: var(--black);
  padding: 0.75rem 1.75rem;
  border-radius: 0.5rem;
  width: 14rem;
  height: 3rem;
}
.left-block__button-container a.primary {
  background-color: var(--selective-yellow);
}
.left-block__button-container a.primary:hover {
  color: var(--white);
  background-color: var(--dark-gray);
}
.left-block__button-container a.secondary {
  color: var(--white);
  background-color: var(--black);
  border: 0.125rem solid var(--black);
  width: auto;

  gap: 0.75rem;
}
.left-block__button-container a.secondary:hover {
  color: var(--black);
  background-color: var(--white);
}
.left-block__button-container a.secondary:hover img {
  filter: invert(1);
}
.chs-content-wrapper__right-block {
  width: 100%;
}
.chs-content-wrapper__right-block img {
  object-fit: cover;
  border-radius: 1.25rem;
}
.container__is-swiper-wrapper h1 {
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.1;
  color: var(--black);
  margin-bottom: 1.25rem;
}
.illustrationSwiper {
  border-radius: 2rem;
}
.illustrationSwiper .swiper-button-next,
.illustrationSwiper .swiper-button-prev {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  position: relative;
  background-color: #ffffff;
  border: 0.063rem solid #4a5f93;
  margin-top: 0;
  opacity: 1 !important;
  overflow: hidden;
}
.illustrationSwiper .swiper-button-next::before,
.illustrationSwiper .swiper-button-prev::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--blue-gradient-conferences);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  border-radius: inherit;
  z-index: 0;
}
.illustrationSwiper .swiper-button-next::after,
.illustrationSwiper .swiper-button-prev::after {
  position: relative;
  z-index: 1;
  color: #4a5f93;
  font-size: 0.75rem;
  font-weight: 700;
  transition: color 0.3s ease;
}
.illustrationSwiper .swiper-button-prev:hover::before,
.illustrationSwiper .swiper-button-next:hover::before {
  opacity: 1;
}
.illustrationSwiper .swiper-button-prev:hover,
.illustrationSwiper .swiper-button-next:hover {
  border-color: transparent;
}
.illustrationSwiper .swiper-button-prev:hover::after,
.illustrationSwiper .swiper-button-next:hover::after {
  color: var(--white);
}
.illustrationSwiper .swiper-button-next,
.illustrationSwiper .swiper-button-prev {
  right: initial;
  left: initial;
}
.illustration-img-parent {
  background: linear-gradient(135.61deg, #ffffff -12.57%, #d7ddf8 56.92%);
  border-radius: 1.5rem;
  height: 14rem;
}
.illustration-img {
  overflow: hidden;
  border-radius: calc(1.5rem - 0.063rem);
  width: calc(100% - 0.063rem);
  height: calc(100% - 0.063rem);
}
.illustration-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  scale: 1.3;
}
.ill-nav-parent {
  background: linear-gradient(135.61deg, #ffffff -12.57%, #d7ddf8 56.92%);
  border-radius: 2rem;
}
.ill-nav {
  width: calc(100% - 0.063rem);
  height: calc(100% - 0.063rem);
  padding: 0 2rem 1.5rem 2.75rem;
  overflow: hidden;
  border-radius: calc(2rem - 0.063rem);
  z-index: 1;
}
.ill-nav__fraction {
  color: var(--delft-blue);
}
.ill-nav__ellipse {
  top: -16rem;
  left: -24rem;

  width: 36rem;
  height: 22.25rem;
  border-radius: 50%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(18, 50, 232, 0.2) 51.92%,
    rgba(255, 255, 255, 0.2) 100%
  );
  filter: blur(2.5rem);
}
.illustration-progress {
  margin-top: 2.5rem;
}
.illustration-progress {
  height: 0.25rem;
  background-color: #dadfeb;
  border-radius: 0.5rem;
  width: 100%;
  max-width: 19.5rem;
}
.illustration-progress .swiper-scrollbar-drag {
  background: linear-gradient(275deg, #003aba 0%, #275fdc 99.6%);
}
.container__ts-content-wrapper h1 {
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 1.1;
  color: var(--black);
  margin-bottom: 1.25rem;
}
.ts-content-wrapper__box {
  padding: 0.063rem;
  background: linear-gradient(
    99.38deg,
    #ffffff 9.53%,
    rgba(109, 144, 232, 0) 99.63%
  );
  border-radius: 1.25rem;
}

/* --------------------------------------------------------------------------------- */
/* Registration Section */

.registration-section {
  background-color: var(--persian-blue);
  padding: 3.5rem 0rem 5.5rem 0rem;
}

.container__rs-content-wrapper h1 {
  font-size: 1.625rem;
  font-weight: 600;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 2.75rem;
}

.rs-content-wrapper__card-outer {
  padding: 0.063rem;
  background: linear-gradient(
    89.22deg,
    #d59500 -10.47%,
    #ffdf94 61.56%,
    #d59500 128.67%
  );
  border-radius: 1.5rem;
}

.card-outer__card-inner {
  padding: 3.25rem 3.5rem;
  border-radius: calc(1.5rem - 0.063rem);
}

.card-inner__badge {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  color: var(--dark-blue);
  background-color: #b8daff;
  border-radius: 5rem;
  border: 0.063rem solid #007aff26;
  padding: 0.75rem 2.25rem 0.75rem 2rem;
  margin-bottom: 1.5rem;
  width: fit-content;
}

.card-inner__heading {
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.07;
  color: var(--dark-blue);
  margin-bottom: 1rem;
}

.card-inner__paragraph {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.18;
  color: var(--dark-blue);
  margin-bottom: 3rem;
}

.btn-price-wrapper__btn {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.18;
  color: var(--white);
  background: linear-gradient(97.81deg, #185cfa 5.91%, #1853dd 97.82%);
  padding: 1rem 1.75rem;
  border-radius: 0.75rem;
  width: fit-content;
}

.btn-price-wrapper__btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--black);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  border-radius: inherit;
  z-index: 0;
}

.btn-price-wrapper__btn span,
.btn-price-wrapper__btn img {
  position: relative;
  z-index: 1;
}

.btn-price-wrapper__btn:hover::before {
  opacity: 1;
}

.btn-price-wrapper__btn span {
  color: var(--white);
}

.btn-price-wrapper__btn:hover span {
  color: var(--white);
}

.price-wrapper__price {
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.1;
  color: var(--delft-blue-2);
  margin-bottom: 0.5rem;
}

.price-wrapper__early-bird-message {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.1;
  color: var(--delft-blue-2);
}

@media (min-width: 992px) {
  .rs-content-wrapper__card-outer {
    width: 80%;
  }
}

@media (min-width: 1200px) {
  .rs-content-wrapper__card-outer {
    width: 70%;
  }
}

@media (min-width: 1400px) {
  .rs-content-wrapper__card-outer {
    width: 60%;
  }
}

.box__inner {
  padding: 2.25rem 2.75rem;
  background-color: #f5f5f5;
  border-radius: calc(1.25rem - 0.063rem);
}
.box__inner h3 {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.13;
  color: var(--black);
  margin-bottom: 1.75rem;
}
.box__inner p {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.1;
  color: var(--black);
}
.ts-content-wrapper__btn {
  padding: 0.063rem;
  background: linear-gradient(
    99.38deg,
    #ffffff 9.53%,
    rgba(109, 144, 232, 0) 99.63%
  );

  border-radius: calc(0.25rem + 0.063rem);
}
.ts-content-wrapper__btn[aria-expanded="true"] img {
  transform: rotate(180deg);
}
.ts-content-wrapper__btn div {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.1;
  color: var(--dark-blue);
  background-color: var(--white);
  padding: 0.75rem 2rem;
  border-radius: 0.25rem;
}
.container__fs-content-wrapper {
  gap: 2rem;
}
.container__fs-content-wrapper h1 {
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.1;
  color: var(--dark-blue);
  margin-bottom: 2rem;
}
.fs-content-wrapper__questions-wrapper .accordion {
  gap: 0.75rem;
}
.fs-content-wrapper__questions-wrapper .accordion-item {
  border-radius: 0.5rem !important;
  overflow: hidden;
  border: 0.063rem solid #dadfeb !important;
  background-color: var(--white);
  box-shadow: 0px 24.56px 32.74px -14.73px rgba(151, 170, 218, 0.15);
}
.fs-content-wrapper__questions-wrapper .accordion-button::after {
  filter: brightness(0) saturate(100%) invert(37%) sepia(12%) saturate(2019%)
    hue-rotate(185deg) brightness(92%) contrast(87%);
  background-image: url("https://nysoralms.com/wp-content/uploads/2026/04/dropdown-arrow.svg");
  background-size: 0.75rem;
  background-position: center;
  margin-left: 0.25rem;
}
.fs-content-wrapper__questions-wrapper .accordion-button {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.1;
  color: var(--black) !important;
  padding: 1.25rem 2rem;
}
.fs-content-wrapper__questions-wrapper .accordion-header {
}
.fs-content-wrapper__questions-wrapper .accordion-body {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.1;
  color: var(--black);
  padding: 0rem 2rem 1.25rem 2rem;
}
.right-block__location-wrapper {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  color: var(--yinmn-blue);
  background-color: var(--ghost-white);
  padding: 0.5rem 1.75rem;
  border-radius: 0.5rem;
  width: fit-content;

  margin-bottom: 1rem;
}
.accordion-body__logo-wrapper {
  margin-bottom: 2rem;
}
.accordion-body__logo-wrapper img {
  width: 8rem;
}
@media (min-width: 400px) {
  .right-block__location-wrapper {
    margin-bottom: initial;
    text-align: initial;

    position: absolute;
    top: 2rem;
    right: 2rem;
  }
}
@media (min-width: 576px) {
  .container--custom {
    max-width: calc(540px + ((100% - 540px) / 2));
  }
  .is-content-wrapper__heading-wrapper img {
    width: initial;
  }
  .event-info-section {
    padding-left: 0;
    padding-right: 0;
  }
  .event-info-card {
    padding: 1.75rem;
  }
  .event-info-label {
    min-width: 11.5rem;
    min-height: 3.75rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }
  .event-info-label-sm {
    min-width: 8.75rem;
  }
  .event-info-content {
    padding-top: 1.75rem;
    font-size: 1.35rem;
  }
  .heading__badge {
    width: 60%;
  }
  .front__content {
  }
  .cards-swiper__pagination--highlights {
    left: calc(50% - ((100vw - 540px) / 4)) !important;
  }
  .why-attend-title {
    margin-bottom: 1.25rem;
    font-size: clamp(2rem, 3vw, 2.65rem);
  }
  .why-attend-block + .why-attend-block {
    margin-top: 1.5rem;
  }
  .why-attend-block h3 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
  }
  .why-attend-block li {
    font-size: 1rem;
    line-height: 1.1;
  }
  .why-attend-image {
    border-radius: 1.5rem;
  }
  .why-attend-image img {
    aspect-ratio: 16 / 10;
  }
  .btn-wrapper__tab-btn {
    width: fit-content;
  }
}
@media (min-width: 768px) {
  .section-margin {
    margin: 3.75rem 0rem;
  }
  body > section:nth-child(3) {
    margin-top: 1.875rem;
  }
  .section-margin:last-of-type {
    margin-bottom: 1.875rem;
  }
  .container--custom {
    max-width: calc(720px + ((100% - 720px) / 2));
  }
  .is-content-wrapper__btn-badge-wrapper {
    margin-top: 2.5rem;
    margin-bottom: 3.25rem;
    gap: 0.75rem;
  }
  .is-content-wrapper__info-paragraph {
    width: 60%;
  }
  .container__heading {
    margin-bottom: 3.25rem;
  }
  .container__heading h1 {
    font-size: 1.875rem;
  }
  .container__heading h2 {
    width: 35rem;
  }
  .heading__badge {
    width: fit-content;
  }
  .card__front {
    height: 26rem;
  }
  .front__content {
  }
  .content__title {
    font-size: 1.5rem;
  }
  .cards-swiper__pagination--highlights {
    left: calc(50% - ((100vw - 720px) / 4)) !important;
  }
  .conference-overview-section__left-block {
    width: 100%;
  }
  .right-block__paragraph {
    font-size: 1.125rem;
  }
  .right-block__list {
    font-size: 1.125rem;
  }
  .agenda-section__info-block {
    padding: 2.75rem 3rem 2.25rem 3rem;
  }
  .info-block__left-block {
    width: 100%;
  }
  .info-block__left-block h4 {
    font-size: 2.5rem;
  }
  .info-block__left-block p {
    font-size: 1rem;
    font-weight: 400;
  }
  .info-block__right-block {
    width: 100%;
  }
  .info-block__right-block {
    padding: 2.75rem 2.25rem;
  }
  .agenda-section__session-wrapper {
    height: 18rem;
    padding: 0rem 2.75rem;
  }
  .session-wrapper__block {
    margin-right: -2.75rem;
    padding-right: 2.75rem;
  }
  .session-info__time {
    margin-left: 2rem;
  }
  .session-block__text {
    font-size: 1rem;
  }
  .venue-section {
    margin-top: 2rem;
  }
  .btn-wrapper__tab-btn {
    padding: 1.25rem 0.75rem;
  }
  .tab-pane__vs-content-wrapper {
    padding: 1.5rem 1.5rem 3rem 1.5rem;

    gap: 2.5rem;
  }
  .vs-content-wrapper__left-block h1 {
    font-size: 1.625rem;
    margin-bottom: 1rem;
  }
  .container__chs-content-wrapper {
    padding: 1.75rem 3.75rem;

    gap: 2rem;
  }
  .chs-content-wrapper__left-block h1 {
    font-size: 1.875rem;
    margin-bottom: 2.25rem;
  }
  .left-block__text {
    margin-bottom: 2.25rem;
  }
  .left-block__button-container a {
    padding: 0.75rem 1.5rem;
  }
  .container__is-swiper-wrapper h1 {
    font-size: 1.875rem;
  }
  .illustration-img-parent {
    height: 16rem;
    border-radius: 2rem;
  }
  .illustration-img {
    border-radius: calc(2rem - 0.063rem);
  }
  .container__fs-content-wrapper h1 {
    font-size: 1.875rem;
    margin-bottom: 1.5rem;
  }
  .fs-content-wrapper__questions-wrapper .accordion {
    gap: 1.25rem;
  }
  .fs-content-wrapper__questions-wrapper .accordion-button {
    font-size: 1.125rem;
    padding: 2rem 1rem;
  }
  .fs-content-wrapper__questions-wrapper .accordion-body {
    padding: 0rem 1rem 2rem 1rem;
  }
}
@media (min-width: 992px) {
  .section-margin {
    margin: 7.5rem 0rem;
  }
  .section-margin:last-of-type {
    margin-bottom: 3.75rem;
  }
  .container--custom {
    margin-right: auto;
    max-width: 960px;
    padding-right: var(--bs-gutter-x, 0.75rem);
  }
  .is-content-wrapper__btn-badge-wrapper {
    margin-top: 3rem;
  }
  .is-content-wrapper__info-paragraph {
    width: 40%;
  }
  .row__item {
    border-radius: 1.5rem;
  }
  .event-info-card {
    padding: 2rem 2rem 1.75rem;
    border-radius: calc(1.5rem - 0.063rem);
  }
  .event-info-content {
    font-size: 1.55rem;
  }
  .container__heading {
    margin-bottom: 4.25rem;
  }
  .container--custom__cards-swiper {
  }
  .front__content {
  }
  .cards-swiper__pagination--highlights {
    left: 50% !important;
    transform: translateX(-50%);
  }
  .conference-overview-section .container {
    gap: 4.5rem;
  }
  .conference-overview-section__left-block,
  .conference-overview-section__right-block {
    width: 50% !important;
  }
  .conference-overview-section__right-block {
    padding: 2.25rem 0rem;
  }
  .right-block__paragraph {
    font-size: 1rem;
  }
  .right-block__list {
    font-size: 1rem;
  }
  .left-block__img-3 img {
    object-position: -36rem center;
  }
  .why-attend-section {
    padding-top: initial !important;
    padding-bottom: initial !important;
  }
  .why-attend-content {
    max-width: 600px;
  }
  .why-attend-image {
    max-width: none;
    margin: 0;
    border-radius: 2rem;
  }
  .why-attend-image img {
    aspect-ratio: auto;
  }
  .agenda-section__info-block {
    padding: 4rem 4.5rem 2.75rem 4rem;
  }
  .info-block__left-block {
    padding-bottom: 0;
    width: 70%;
  }
  .info-block__left-block p {
    font-weight: 400;
  }
  .info-block__right-block {
    padding: 0;
    width: 30%;
    box-shadow: none;
  }
  .agenda-section__session-wrapper {
    height: 22rem;
    padding: 0.75rem 4.5rem;
  }
  .session-wrapper__block {
    margin-right: -4.5rem;
    padding-right: 4.5rem;
  }
  .session-info__time {
    margin-left: 0;
  }
  .session-block__text {
    margin-bottom: 1.5rem;
  }
  .venue-section {
    margin-top: 0rem;
  }
  .venue-section .container {
    padding-top: 8.75rem;
    margin-top: 0rem;
  }
  .badge-container {
    margin-bottom: 1.25rem;
  }
  .tab-pane__vs-content-wrapper {
    padding: 0rem;
    border: initial;

    box-shadow:
      0px 2.77px 2.21px 0px rgba(0, 0, 0, 0.0056),
      0px 6.65px 5.32px 0px rgba(0, 0, 0, 0.0081),
      0px 12.52px 10.02px 0px rgba(0, 0, 0, 0.01),
      0px 22.34px 17.87px 0px rgba(0, 0, 0, 0.0119),
      0px 41.78px 33.42px 0px rgba(0, 0, 0, 0.0144),
      0px 100px 80px 0px rgba(0, 0, 0, 0.02);

    gap: 4rem;
  }
  .vs-content-wrapper__left-block {
    width: 100%;
    padding: 4rem 0rem 4rem 4rem;
  }
  .vs-content-wrapper__left-block h1 {
    font-size: 1.625rem;
    margin-bottom: 1.5rem;
  }
  .badge-container__content {
    padding: 0.75rem 2.5rem;
  }
  .container__chs-content-wrapper {
    padding: 0rem;

    gap: 1.25rem;
  }
  .chs-content-wrapper__left-block {
    width: 60%;
    padding: 3rem 0rem 3rem 4rem;
  }
  .chs-content-wrapper__left-block h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }
  .left-block__text {
    margin-bottom: 1.75rem;
  }
  .chs-content-wrapper__right-block {
    padding: 1.25rem;
    width: 40%;
  }
  .container__is-swiper-wrapper h1 {
    font-size: 1.875rem;
  }
  .accordion-body__logo-wrapper {
    margin-bottom: 2.5rem;
  }
}
@media (min-width: 1200px) {
  .container--custom {
    max-width: 1140px;
  }
  .container--custom__cards-swiper {
  }
  .front__content {
  }
  .chs-content-wrapper__left-block {
    width: 65%;
  }
  .chs-content-wrapper__right-block {
    width: 35%;
  }
  .fs-content-wrapper__questions-wrapper .accordion-button {
    padding: 1.75rem 2.5rem;
  }
  .fs-content-wrapper__questions-wrapper .accordion-body {
    padding: 0rem 2.5rem 2.5rem 2.5rem;
  }
}
@media (min-width: 1400px) {
  .container--custom {
    max-width: 1320px;
  }
  .container--custom__cards-swiper {
  }
  .front__content {
  }
  .left-block__img-3 img {
    object-position: -28rem center;
  }
  .chs-content-wrapper__right-block {
    margin-left: auto;
    width: 30%;
  }
}
