:root {
  --black: #000000;
  --white: #ffffff;
  --white-but-darker: #f6f7fb;
  --ghost-white-darker: #eff3fe;
  --slightly-dark-gray: #3d3d3d;
  --dark-gray: #1f1f1f;
  --persian-blue: #003aba;
  --medium-light-blue: #dfeafc;
  --gray: #757575;
  --lighter-blue: #0640bf;
  --lavander: #dadfeb;
  --powder-blue: #9faac5;
  --yinmn-blue: #4a5f93;
  --ghost-white: #f6f7fb;
  --slightly-dark-gray: #3d3d3d;
  --selective-yellow: #ffb200;
  --light-gray: #cecece;
  --delft-blue: #344067;
  --spotify-green: #1fd05d;
  --glass-effect-15: #ffffff26;
  --light-lavander: #bbbce4;
  --dark-blue: #000e30;
  --conferences-blue: #0786ff;
  --lighter-blue: #0640bf;
  --dark-yellow: #db9900;
  --light-blue: #d5f2ff;
  --medium-dark-blue: #015db3;
  --very-light-blue: #ecf3ff;
  --blue-gradient-conferences: linear-gradient(
    274.59deg,
    #003aba 0%,
    #275fdc 99.6%
  );
  --blue-gradient: linear-gradient(97.81deg, #185cfa 5.91%, #1853dd 97.82%);
  --light-bg: linear-gradient(to right, #ffffff, #dee0f5);
  --dark-bg: linear-gradient(82.33deg, #303c4a 27.33%, #000315 88.68%);
  --blue-gradient-conference: linear-gradient(to right, #275fdc, #003aba);
  --black-gradient: linear-gradient(to right, #000000, #000000);
  --white-linear-gradient: linear-gradient(
    to bottom,
    #ffffff00 0%,
    #fffffff6 50%,
    #ffffff 100%
  );
  --white-linear-gradient-to-right: linear-gradient(
    to right,
    #ffffff00 0%,
    #fffffff6 50%,
    #ffffff 100%
  );
}
* {
  font-family: "Poppins", sans-serif;
}
*::-webkit-scrollbar {
  width: 0.5rem;
}
*::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 2.25rem;
}
*::-webkit-scrollbar-thumb {
  background: var(--powder-blue);
  border-radius: 2.25rem;
}
*::-webkit-scrollbar-button {
  display: none;
}
@supports not selector(::-webkit-scrollbar) {
  * {
    scrollbar-color: var(--powder-blue) transparent;
  }
}
body {
  background-color: var(--white);
}
div.body-container {
  background-color: transparent;
}
section.section-margin {
  margin: 3rem 0rem;
}
body > section:nth-child(3) {
  margin-top: 1.5rem;
}
section.section-margin:last-of-type {
  margin-bottom: 1.5rem;
}

.container__is-content-wrapper {
  background-color: #ae4545;
  padding: 2rem 2rem 5rem 2rem;
  border-radius: 1.5rem;
}
.container__is-content-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
  z-index: 1;
  border-radius: 1.5rem;
}
.container__is-content-wrapper > * {
  position: relative;
  z-index: 2;
}
.is-content-wrapper__bg-image {
  object-fit: cover;
  z-index: 0;
  border-radius: 1.5rem;
}
.is-content-wrapper__badge-wrapper {
  gap: 0.875rem;
}
.intro-section .badge-wrapper__item {
  background-color: #ffffff26 !important;
}
.badge-wrapper__item.blue {
  font-weight: 400;
  color: var(--white);
  background-color: var(--persian-blue);
}
.is-content-wrapper__container {
  margin-top: 4rem;
}
.container__content-wrapper h1 {
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1;
  color: var(--white);
  margin-bottom: 1rem;
}
.container__content-wrapper p {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 3rem;
}
.left-block__date-wrapper {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.1;
  color: var(--white);
  background-color: #000000cc;
  padding: 0.75rem 1.5rem;
  border-radius: 1.75rem;
  border: 0.063rem solid var(--white);
  margin-bottom: 2.25rem;
  width: fit-content;
}
.content-wrapper__btn-wrapper {
  width: 13.75rem;
}
.content-wrapper__btn-wrapper a {
  width: 100%;
}
.left-block__location-wrapper {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.3;
  color: var(--white);
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}
.main-btn {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.1;
  color: var(--white);
  background: linear-gradient(274.59deg, #003aba 0%, #275fdc 99.6%);
  padding: 1.25rem 1rem;
  border-radius: 0.75rem;
  width: fit-content;
  height: fit-content;
  text-wrap: nowrap;
}
.main-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--black);
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  border-radius: inherit;
  z-index: 0;
}
.main-btn span,
.main-btn svg {
  position: relative;
  z-index: 1;
}
.main-btn svg path {
  fill: var(--white);
}
.main-btn:hover::before {
  opacity: 1;
}
.main-btn:hover {
  color: var(--white);
}
.main-btn:hover span {
  color: var(--white);
}
.main-btn:hover svg path {
  fill: var(--white);
}
.btn-wrapper__btn-secondary {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.1;
  color: var(--white);
  background-color: transparent;
  padding: 1.25rem 1rem;
  border: 0.063rem solid var(--light-lavander);
  border-radius: 0.75rem;
  width: fit-content;
}
.btn-wrapper__btn-secondary:hover {
  color: var(--black);
  background-color: var(--light-lavander);
}
.btn-wrapper__btn-secondary:hover svg path {
  fill: var(--black);
}
.left-block__course-highlights {
  gap: 2rem;
  margin-bottom: 3rem;
}
.left-block__course-highlights p:first-of-type {
  font-size: 0.813rem;
  font-weight: 500;
  line-height: 1.13;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.left-block__course-highlights p:last-of-type {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.13;
  color: var(--white);
}
.course-highlights__item {
  width: 40%;
}
.why-attend-section {
  z-index: 0;
}
.why-attend-section__bg {
  border-radius: 50%;
  filter: blur(22.25rem);
  background-color: #caddff66;
  top: -25%;
  transform: translateX(-50%);
}
.left-block__inner-wrapper {
  padding: 2.5rem 2rem;
  border: 0.063rem solid var(--lavander);
  border-radius: 1.5rem;
  background-color: var(--white);
}
.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;
}
.complimentary-app-access .badge-container__content {
  font-weight: 600;
  text-transform: uppercase;
}
.was-container__content-wrapper {
  gap: 2rem;
}
.content-wrapper__left-block h2 {
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.07;
  color: var(--dark-blue);
}
.content-wrapper__left-block p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.1;
  color: var(--black);
}
.content-wrapper__left-block p:last-of-type {
  margin-bottom: 3rem;
}
.left-block__btn-wrapper {
  gap: 2rem;

  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.share-btn {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  color: var(--yinmn-blue);
  gap: 0.75rem;
  width: fit-content;
}
.share-btn:hover {
  color: var(--yinmn-blue);
}
.share-btn-wrapper__links {
  border-radius: 1rem;
  border: 0.063rem solid var(--lavander);

  top: 2.5rem;
}
.learning-objectives-section .right-block__share-btn-wrapper {
  margin-top: 1rem;
}
.learning-objectives-section .share-btn-wrapper__links {
  top: initial;

  bottom: 2.5rem;
}
.links__item {
  width: 1.5rem;
  height: 1.5rem;
}
.links__item img {
  width: 1.25rem;
  height: 1.25rem;
}
.links__item:hover img:not(.item__check-icon) {
  filter: brightness(0);
}
.links__item--copy {
  position: relative;
}
.item__copy-icon,
.item__check-icon {
  position: absolute;
  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%) scale(0.8);
  opacity: 0;
  visibility: hidden;

  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0.2s ease;
}
.item__copy-icon {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}
.links__item--copy.active .item__copy-icon {
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -50%) scale(0.8);
}
.links__item--copy.active .item__check-icon {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}
.content-wrapper__right-block {
  width: 100%;
}
.content-wrapper__right-block .swiper-slide {
  height: fit-content;
}
.right-block__pagination {
  gap: 0.5rem;
  margin-top: 2rem;
  padding-right: 0.375rem;
}
.right-block__pagination .swiper-pagination-bullet {
  margin: initial !important;

  width: 0.25rem;
  height: 0.25rem;
  border-radius: 50%;
  background-color: #6291da;
}
.right-block__pagination .swiper-pagination-bullet-active {
  width: 2.25rem;
  border-radius: 3rem;
}
.right-block__item {
  padding: 2.25rem;
  border-radius: 2rem;
  border: 0.063rem solid var(--lavander);
  background-color: var(--white);
}
.item__icon {
  padding: 0.063rem;
  border-radius: 1.125rem;
  background: linear-gradient(82.33deg, #ffffff 7.1%, #dee0f5 96.45%);
  width: fit-content;
  height: fit-content;
}
.icon_wrapper {
  padding: 2rem;
  border-radius: calc(1.125rem - 0.063rem);
  background-color: #f6f7fb;
  width: fit-content;
}
.item__content p:first-of-type {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.1;
  color: var(--black);
  margin-bottom: 0.75rem;
}
.item__content p:last-of-type {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.1;
  color: var(--black);
}
.right-block__separator {
  height: 0.063rem;
  background-color: var(--ghost-white-darker);
  margin: 1.5rem 0rem;
}
.pos-content-wrapper__left-block {
  width: 100%;
  padding: 0rem 2rem;
}
.pos-content-wrapper__left-block h1 {
  font-size: 1.625rem;
  font-weight: 600;
  line-height: 1.1;
  color: var(--dark-blue);
  margin-bottom: 2.5rem;
}
.pos-content-wrapper__left-block p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.1;
  color: var(--black);
}
.pos-content-wrapper__left-block p:last-of-type {
  margin-bottom: 0rem;
}
.pos-content-wrapper__right-block {
  width: 100%;
  border-radius: 2rem;
  border: 0.063rem solid var(--lavander);
}
.right-block__upper {
  padding: 2.5rem 1.75rem;
  background: var(--blue-gradient-conference);
  box-shadow: 0px 4px 25px 0px rgba(99, 105, 121, 0.25);
}
.right-block__upper h2 {
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.75rem;
}
.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);
}
.btn-wrapper__download-pdf-btn {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.1;
  color: var(--white);
  background-color: var(--dark-gray);
  border-radius: 0.75rem;
  padding: 1rem;
  gap: 0.75rem;

  width: fit-content;
  margin-bottom: 1.75rem;
}
.btn-wrapper__download-pdf-btn:hover {
  color: var(--white);
  background-color: var(--black);
}
.right-block__lower {
}
.right-block__lower .tab-content {
  height: 20rem;
  padding: 0rem 1.75rem;
  border-top: 2rem solid transparent;
  border-bottom: 2rem solid transparent;
}
.right-block__lower .tab-content::-webkit-scrollbar-thumb {
  background: var(--medium-dark-blue);
  border-radius: 2.25rem;
}
.right-block__lower .tab-content .tab-pane {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.1;
  color: var(--dark-blue);
}
.right-block__lower span {
  margin-right: 2rem;
}
.container__ris-content-wrapper {
  padding: 0.063rem;
  border-radius: 2rem;
  background: linear-gradient(
    89.22deg,
    #c5daff -10.47%,
    #ffffff 61.56%,
    #9cbeff 128.67%
  );
}
.ris-content-wrapper__inner {
  padding: 5.75rem 3.75rem;
  border-radius: calc(2rem - 0.063rem);
  background: radial-gradient(
    58.48% 186.27% at 93.72% 71.89%,
    rgba(202, 221, 255, 0.4) 0%,
    #ffffff 68.7%
  );
}
.ris-content-wrapper__inner h1 {
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.1;
  color: var(--dark-blue);
  margin-bottom: 1.75rem;
}
.inner__left-block button {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.1;
  color: var(--black);
  width: fit-content;
  padding-bottom: 2rem;
  border: 0;
}
.inner__left-block button.active {
  font-weight: 600;
}
.inner__left-block button.active img {
  transform: rotate(-90deg);
}
.bottom__btn img {
  transform: rotate(0deg);
  transition: transform 0.3s ease;
}
.table-wrapper__item .bottom__btn[aria-expanded="true"] {
  font-weight: 600;
}
.table-wrapper__item .bottom__btn[aria-expanded="true"] img {
  transform: rotate(-180deg);
}
.inner__right-block p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.1;
  color: var(--black);
}
.ris-content-wrapper__uems-logo {
  width: 9.25rem;
  height: 9.25rem;
  top: 1rem;
  right: 1rem;
  margin-top: 2.5rem;
}
.container__caa-content-wrapper {
  padding: 0.063rem;
  border-radius: 2rem;
  background: linear-gradient(82.33deg, #ffffff 7.1%, #dee0f5 96.45%);
}
.caa-content-wrapper__inner {
  padding: 1rem;
  border-radius: calc(2rem - 0.063rem);
  background-color: var(--white);
  gap: 1.75rem;
}
.inner__left-block-img {
  width: 100%;
  height: 100%;
  background-color: var(--ghost-white-darker);
  border-radius: calc(1rem - 0.063rem);
}
.inner__left-block-img img {
  scale: 1.3;
}
.inner__content-wrapper {
  width: 100%;
}
.inner__content-wrapper .badge-container {
  margin-bottom: 2.25rem;
}
.inner__content-wrapper h2 {
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.07;
  color: var(--dark-blue);
  margin-bottom: 1.25rem;
}
.inner__content-wrapper p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.1;
  color: var(--dark-black);
}
.inner__content-wrapper p:last-of-type {
  margin-bottom: 2.25rem;
}
.inner__benefits-item {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.1;
  color: var(--black);
}
.benefits-item__icon-outer {
  padding: 0.063rem;
  border-radius: 1.125rem;
  background: linear-gradient(82.33deg, #ffffff 7.1%, #dee0f5 96.45%);
}
.icon-outer__inner {
  padding: 1.125rem;
  border-radius: calc(1.125rem - 0.063rem);
}
.container__los-content-wrapper {
  border: 0.063rem solid var(--lavander);
  border-radius: 1.5rem;
  box-shadow:
    0px 2.77px 2.21px 0px rgba(99, 109, 219, 0.0056),
    0px 6.65px 5.32px 0px rgba(99, 109, 219, 0.0081),
    0px 12.52px 10.02px 0px rgba(99, 109, 219, 0.01),
    0px 22.34px 17.87px 0px rgba(99, 109, 219, 0.0119),
    0px 41.78px 33.42px 0px rgba(99, 109, 219, 0.0144),
    0px 100px 80px 0px rgba(99, 109, 219, 0.02);
}
.los-content-wrapper__badge-wrapper {
  padding: 3rem 2.5rem;
  background-color: var(--ghost-white);
  width: fit-content;
}
.badge-wrapper__item {
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
  color: var(--dark-gray);
  background-color: var(--ghost-white);
  padding: 0.75rem 1.25rem;
  border-radius: 1.25rem;
  width: fit-content;
  backdrop-filter: blur(2rem);
}
.badge-wrapper__item.blue {
  font-weight: 400;
  color: var(--white);
  background-color: var(--persian-blue);
}
.los-content-wrapper__right-block {
  padding: 2.5rem 3.75rem;
}
.los-content-wrapper__right-block h3 {
  margin-bottom: 2.5rem;
}
.los-content-wrapper__right-block p {
  margin-bottom: 1.25rem;
}
.right-block__text-wrapper h3 {
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.07;
  color: var(--dark-blue);
}
.right-block__text-wrapper p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.1;
  color: var(--black);
}
.right-block__text-wrapper ul li {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.1;
  color: var(--black);
}
.content-wrapper__left-block {
  padding-right: 0.75rem;
}
.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 {
  padding-top: 2rem;
}
.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;
}
.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;
}

.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;
}

.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;
}
.venue-section__blue-bg {
  height: 50%;
  background-color: var(--persian-blue);
  background-image: url("https://www.nysora.com/wp-content/uploads/2025/08/hero-section-vector.svg");
  background-repeat: no-repeat;
  background-position: 0 60%;
  background-size: auto;
  z-index: 0;
}
.venue-section__img-container {
  background-color: var(--blue-2);
  height: 80%;
}
.venue-section__img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.container__heading {
  margin-bottom: 2.75rem;
}
.container__heading h1 {
  font-size: 1.625rem;
  font-weight: 600;
  line-height: 110%;
  color: var(--black);
  margin-bottom: 1rem;
}
.container__heading h2 {
  font-size: 1rem;
  font-weight: 400;
  line-height: 120%;
  color: var(--black);
  margin-bottom: 1rem;
}
.heading__badge {
  font-size: 1rem;
  font-weight: 400;
  line-height: 110%;
  color: var(--black);
  margin-bottom: 1rem;
  border-radius: 4rem;
  border: 0.063rem solid var(--light-gray);
  padding: 0.5rem 1.5rem;
  width: fit-content;
  text-align: center;
  z-index: 1;
}
.container__vs-content-wrapper .heading-badge {
  margin-bottom: 1.75rem;
}
.container__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(--dark-blue);
  margin-bottom: 1.25rem;
}
.vs-content-wrapper__left-block ul li {
  font-size: 1rem;
  font-weight: 400;
  line-height: 120%;
  color: #000000;
}
.left-block__paragraph:first-of-type {
  font-weight: 400;
}
.left-block__paragraph {
  font-size: 1rem;
  font-weight: 400;
  line-height: 120%;
  color: #000000;
  margin-bottom: 2rem;
}
.left-block__paragraph span {
  font-weight: 600;
}
.left-block__button-wrapper 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-wrapper a.primary {
  background-color: var(--selective-yellow);
}
.left-block__button-wrapper a.primary:hover {
  color: var(--white);
  background-color: var(--dark-gray);
}
.left-block__button-wrapper a.secondary {
  color: var(--white);
  background-color: var(--black);
  border: 0.125rem solid var(--black);
  width: auto;

  gap: 0.75rem;
}
.left-block__button-wrapper a.secondary:hover {
  color: var(--black);
  background-color: var(--white);
}
.left-block__button-wrapper a.secondary:hover img {
  filter: invert(1);
}
.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;
}
.container__rcs-content-wrapper h1 {
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.1;
  color: var(--dark-blue);
  margin-bottom: 2.25rem;
}
.container__rcs-content-wrapper p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.1;
  color: var(--black);
  margin-bottom: 1.75rem;
}
.rcs-content-wrapper__btn-wrapper {
  gap: 1rem;
}
.rcs-content-wrapper__btn-wrapper > * {
  width: 80%;
  margin: 0rem auto;
  flex: 1;
}
.btn-wrapper__download-brochure-btn {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.1;
  color: var(--delft-blue);
  background-color: transparent;
  border-radius: 0.75rem;
  border: 0.063rem solid var(--light-lavander);
  padding: 1.25rem 1.75rem;
}
.btn-wrapper__download-brochure-btn:hover {
  color: var(--delft-blue);
  background-color: var(--light-lavander);
}
.container__is-swiper-wrapper h1 {
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.1;
  color: var(--dark-blue);
  margin-bottom: 1rem;
}
.container__is-swiper-wrapper h2 {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.1;
  color: var(--black);
  margin-bottom: 1.75rem;
}
.illustrationSwiper {
  border-radius: 2rem;
}
.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);
}
.swiper-button-next,
.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;
}
.swiper-button-next::before,
.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;
}
.swiper-button-next::after,
.swiper-button-prev::after {
  position: relative;
  z-index: 1;
  color: #4a5f93;
  font-size: 0.75rem;
  font-weight: 700;
  transition: color 0.3s ease;
}
.swiper-button-prev:hover::before,
.swiper-button-next:hover::before {
  opacity: 1;
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
  border-color: transparent;
}
.swiper-button-prev:hover::after,
.swiper-button-next:hover::after {
  color: var(--white);
}
.swiper-button-next,
.swiper-button-prev {
  right: initial;
  left: initial;
}
.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%);
}
.ill-nav__fraction {
  color: var(--delft-blue);
}
.events-section .tab-pane {
  height: fit-content !important;
}
.events-section__container {
  margin-bottom: 2.25rem;
}
.events-section__container p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 120%;
  color: var(--gray);
  margin-top: 2rem;
}
.events-section__container p a:hover {
  color: var(--persian-blue);
}
.container__heading-link-navigation h1 {
  font-size: 1rem;
  font-weight: 600;
  line-height: 120%;
  color: var(--black);
}
.heading-link-navigation__right-block {
  gap: 2.25rem;
}
.heading-link-navigation__right-block a {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 100%;
  color: var(--black);
  white-space: nowrap;
}
.heading-link-navigation__right-block a:after {
  content: "";
  width: 100%;
  border-bottom: 0.125rem solid var(--black);
  position: absolute;
  bottom: -0.125rem;
  left: 0;
  opacity: 0;
  transition: opacity 300ms ease;
}
.heading-link-navigation__right-block a:hover:after {
  opacity: 1;
}
.navigation__prev,
.navigation__next {
  padding: 0.75rem;
  background-color: var(--white);
  cursor: pointer;
}
.navigation__prev {
  transform: rotate(180deg);
}
.navigation__prev:hover,
.navigation__next:hover {
  background-color: var(--black);
}
.navigation__prev:hover svg path,
.navigation__next:hover svg path {
  fill: var(--white);
}
.container--custom {
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  padding-left: var(--bs-gutter-x, 0.75rem);
  padding-right: 0;
}
.container__event-item {
  height: fit-content;
  border-radius: 0;
  border: 2px solid transparent;
  transition:
    border-radius 0s,
    border 0s;
}
.event-item__wrapper .ratio {
  margin-bottom: 2rem;
}
.event-item__wrapper .ratio img {
  border-radius: 1.75rem;
}
.event-item__wrapper p {
  font-size: 1rem;
  font-weight: 500;
  line-height: 120%;
  color: var(--black);
  text-decoration: none;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;

  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;

  margin-bottom: 1.25rem;
  height: calc(1.2 * 1rem * 2);
}
.wrapper__title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.wrapper__location-date-wrapper {
  gap: 0.75rem;
}
.location-date-wrapper__item {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.25;
  color: var(--powder-blue);
  gap: 0.75rem;
}
.container__gef-content-wrapper {
  gap: 2rem;
}
.gef-content-wrapper__img-wrapper {
  width: 100%;
  border-radius: 1.5rem;
}
.gef-content-wrapper__img-wrapper img {
  object-fit: cover;
}
.gef-content-wrapper__text-wrapper {
  width: 100%;
  height: fit-content;
}
.gef-content-wrapper__text-wrapper h1 {
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.07;
  color: var(--dark-blue);
  margin-bottom: 1.25rem;
}
.gef-content-wrapper__text-wrapper h2 {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.1;
  color: var(--black);
  margin-bottom: 1.5rem;
}
.gef-content-wrapper__text-wrapper p {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.1;
  color: var(--black);
  margin-bottom: 0.75rem;
}
.gef-content-wrapper__text-wrapper ul li {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.1;
  color: var(--black);
}
.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__heading-wrapper h1 {
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.1;
  color: var(--dark-blue);
}
.heading-wrapper__badge {
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
  color: var(--black);
  background-color: var(--ghost-white);
  text-transform: uppercase;
  border-radius: 1.25rem;
  padding: 0.75rem 2rem;
  backdrop-filter: blur(2.25rem);
  width: fit-content;
}
.fs-content-wrapper__card-wrapper {
  gap: 2rem;
}
.card-wrapper__item {
  width: 100%;
  border-radius: 1.5rem;
  padding: 0.063rem;
}
.card-wrapper__item.primary {
  background: linear-gradient(
    89.22deg,
    #d59500 -10.47%,
    #ffdf94 61.56%,
    #d59500 128.67%
  );
}
.card-wrapper__item.primary .item__content-wrapper {
  background: linear-gradient(116.47deg, #ffc94d 46.23%, #ffb200 97.74%);
}
.card-wrapper__item.secondary {
  background: linear-gradient(
    89.22deg,
    #c5daff -10.47%,
    #ffffff 61.56%,
    #9cbeff 128.67%
  );
}
.card-wrapper__item.secondary .item__content-wrapper {
  background: linear-gradient(90deg, #ffffff 0%, #fdfdff 100%);
}
.card-wrapper__item {
  background: linear-gradient(
    89.22deg,
    #c5daff -10.47%,
    #ffffff 61.56%,
    #9cbeff 128.67%
  );
  border-radius: 1.5rem;
  padding: 0.063rem;
}
.item__wrapper {
  background: linear-gradient(90deg, #ffffff 0%, #fdfdff 100%);
  border-radius: calc(1.5rem - 0.063rem);
  /*padding: 1.5rem 1.5rem 2rem 1.5rem;*/
  padding: 1.5rem;
}
.item__wrapper img {
  width: 7rem;
  height: 7rem;
  border-radius: 1.125rem;
  object-fit: cover;
}
.text-wrapper__name-credentials {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.1;
  color: var(--dark-blue);
}
.text-wrapper__position {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.1;
  color: var(--dark-blue);
}
.left-block__horizontal-separator {
  width: 100%;
  height: 0.063rem;
  background-color: var(--lavander);
}
.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;
}
.agenda-section {
  z-index: 1;
}
.agenda-section__container {
  background-color: var(--white);
  border: 0.063rem solid var(--lavander);
  border-radius: 1.5rem;
}
.agenda-section__info-block {
  box-shadow: rgba(99, 105, 121, 0.25) 0px 4px 25px 0px;
  padding: 2.25rem 2rem 1.5rem 2rem;
  border-radius: 2rem 2rem 0rem 0rem;
}
.info-block__left-block h4 {
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.1;
  color: var(--black);
  margin-bottom: 1.25rem;
}
.info-block__left-block p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.13;
  color: var(--black);
}
.day-btn-wrapper__btn {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.1;
  color: var(--yinmn-blue) !important;
  padding: 0.75rem 1rem;
  border: 0.063rem 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(--persian-blue) !important;
  border: 0.063rem solid transparent !important;
}
.day-btn-wrapper__btn:hover {
  color: var(--white) !important;
  background-color: var(--persian-blue) !important;
  border: 0.063rem solid transparent !important;
}
.btn-wrapper__download-btn {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.1;
  color: var(--white);
  background-color: var(--dark-gray);
  padding: 0.75rem 1rem;
  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: 0rem 3.5rem 2rem 3.5rem;
}
.info-block__right-block a {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.1;
  color: var(--black);
  background-color: var(--selective-yellow);
  border: 0.063rem solid var(--dark-yellow);
  border-radius: 0.5rem;
  padding: 0.75rem 2.25rem;
  margin-top: -1.25rem;
  width: fit-content;
  text-wrap: nowrap;
}
.info-block__right-block a:hover {
  background-color: var(--dark-yellow);
}
.info-block__right-block a img {
  margin-left: 0.5rem;
}
.right-block__registration-info h4 {
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 1.1;
  color: var(--black);
  margin-bottom: 0.75rem;
}
.right-block__registration-info p {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1;
  color: var(--black);
}
.right-block__registration-info span {
  font-size: 1rem;
  line-height: 1.2;
}
.agenda-section__horizontal-separator {
  height: 0.063rem;
  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(--persian-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(--persian-blue);
}
.session-block__session-info {
  margin: 2.5rem 0rem;
}
.badge-wrapper__badge {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.1;
  color: var(--white);
  background-color: var(--persian-blue);
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  width: fit-content;

  text-wrap: nowrap;
}
.session-info__time {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1;
  color: var(--gray);
}
.session-block__text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.1;
  color: var(--black);
  margin-bottom: 1rem;
}
.session-block__bullet {
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--persian-blue);
  border-radius: 50%;
}
.upcoming-workshops-table {
  z-index: 1;
}
.container__heading {
  margin-bottom: 2.75rem;
}
.container__heading h1 {
  font-size: 1.625rem;
  font-weight: 600;
  line-height: 110%;
  color: var(--black);
  margin-bottom: 1rem;
}
.container__heading h2 {
  font-size: 1rem;
  font-weight: 400;
  line-height: 120%;
  color: var(--black);
  margin-bottom: 1rem;
}
.container__table-wrapper {
  border-radius: 0.5rem;
  border: 0.063rem solid var(--ghost-white-darker);
}
.table-wrapper__body {
  max-height: 41.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
  border-top: 2.5rem solid transparent;
  border-bottom: 2.5rem solid transparent;
  gap: 1.25rem;
}
.table-wrapper__badge {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.1;
  color: var(--white);
  background: var(--blue-gradient);
  padding: 0.75rem 3rem;
  border-radius: 0.5rem;
  width: fit-content;

  position: sticky;
  top: 0;

  z-index: 2;
}
.table-wrapper__item {
  z-index: 0;
}
.item__event-name {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 120%;
  color: var(--black);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-decoration: none;
}
.item__event-name:hover {
  color: var(--black);
}
.item__meta {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.3;
  color: var(--persian-blue);
  gap: 0.75rem;
}
.item__register-link {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.1;
  color: var(--white);
  background: var(--blue-gradient);
  padding: 0.75rem 1rem;
  border-radius: 0.625rem;
  z-index: 1;
  width: 75%;
  height: 3rem;
}
.item__register-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--black);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  border-radius: inherit;
  z-index: 0;
}
.item__register-link span {
  position: relative;
  z-index: 1;
}
.item__register-link:hover::before {
  opacity: 1;
}
.item__register-link:hover {
  color: var(--white);
}
.item__register-link:hover span {
  color: var(--white);
}
.item__agenda-link {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.1;
  color: var(--white);
  background-color: var(--dark-gray);
  border-color: var(--dark-gray);
  padding: 0.75rem 1.25rem;
  border-radius: 0.625rem;
  text-wrap: nowrap;
  gap: 0.75rem;
  width: 75%;
  height: 3rem;
}
.item__agenda-link:hover {
  color: var(--white);
  border-color: var(--black);
  background-color: var(--black);
}
.conference-overview-section .item__agenda-link {
  width: fit-content;

  margin-top: 1.5rem;
}
.price-wrapper {
  width: 5.75rem;
}
.ebprice-tag {
  font-size: 0.7rem;
  color: #ffffff;
  background: linear-gradient(90deg, #ff9000, #db733f);
  padding: 0.188rem 0.313rem;
  border-radius: 0.25rem;
}
.bottom__btn {
  font-size: 1rem;
  font-weight: 500;
  line-height: 110%;
  color: var(--persian-blue);
  background-color: transparent;
  border: none;
}
.column__img-text-wrapper {
  font-size: 1rem;
  font-weight: 500;
  line-height: 110%;
  color: var(--black);
  gap: 0.75rem;
}
.column__img-text-wrapper img {
  width: 1rem;
  height: 1rem;
}
.column__list li {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 160%;
  color: var(--black);
}
.column__speakers-wrapper {
  margin-top: 0.75rem;
  gap: 0.75rem;
}
.column__speakers-wrapper img {
  width: 1.875rem;
  height: 1.875rem;
  border-radius: 50%;
  object-fit: cover;
}
.speakers-wrapper__text h5 {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 160%;
  color: var(--black);
}
.speakers-wrapper__text p {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 160%;
  color: var(--gray);
}
.full-width-cell__separator {
  height: 0.063rem;
  background-color: var(--lavander);
  margin-top: 0.75rem;
}
.js-open-cme-modal {
  transform: translateY(-50%);
  left: 10.25rem;
}
.tab-pane__logo-wrapper {
  margin-bottom: 2rem;
}
.inner__right-block .text-bold {
  font-weight: 600;
}
.row--spacing {
  --bs-gutter-x: 2.5rem;
  --bs-gutter-y: 2.5rem;
}
.feature-item__label {
  font-size: 0.813rem;
  font-weight: 500;
  line-height: 1.13;
  text-transform: uppercase;
  color: var(--dark-blue);
  margin-bottom: 0.75rem;
}
.feature-item__title {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.1;
  color: var(--dark-blue);
}
.js-modal-cme-content img {
  width: 100%;
  height: auto;
}
/* ------------------------------------------------------------------------------- */
/* DESKTOP SM LAYOUT */
/* ------------------------------------------------------------------------------- */
@media (min-width: 400px) {
  .right-block__location-wrapper {
    margin-bottom: initial;
    text-align: initial;

    position: absolute;
    top: 2rem;
    right: 2rem;
  }
  .item__register-link {
    width: 50%;
  }
  .item__agenda-link {
    width: 50%;
  }
}
@media (min-width: 420px) {
  .right-block__share-btn-wrapper {
    position: absolute;
    top: 2.5rem;
    right: 3.75rem;
    z-index: 1;
  }
  .learning-objectives-section .right-block__share-btn-wrapper {
    margin-top: initial;
  }
  .learning-objectives-section .share-btn-wrapper__links {
    bottom: initial;

    top: 2.5rem;
    right: 0rem;
  }
}
@media (min-width: 576px) {
  .container--custom {
    max-width: calc(540px + ((100% - 540px) / 2));
  }
  .content-wrapper__left-block {
    padding-right: calc(((100vw - 540px) / 2) + 0.75rem);
  }
  .right-block__pagination {
    padding-left: calc((100vw - 540px) / -4 + 0.375rem);
  }
  .text-sm-nowrap {
    white-space: nowrap;
  }
  .btn-wrapper__tab-btn {
    width: fit-content;
  }
}
/* ------------------------------------------------------------------------------- */
/* DESKTOP MD LAYOUT */
/* ------------------------------------------------------------------------------- */
@media (min-width: 768px) {
  section.section-margin {
    margin: 3.75rem 0rem;
  }
  body > section:nth-child(3) {
    margin-top: 1.875rem;
  }
  section.section-margin:last-of-type {
    margin-bottom: 1.875rem;
  }
  .container__is-content-wrapper {
    padding: 4.75rem 4.5rem 6.75rem 4.5rem;
    border-radius: 2rem;
  }
  .is-content-wrapper__container {
    margin-top: 7rem;
  }
  .container__content-wrapper h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
  }
  .left-block__date-wrapper {
    margin-bottom: 2rem;
  }
  .content-wrapper__btn-wrapper {
    width: initial;
  }
  .container__los-content-wrapper {
    border-radius: 2rem;
  }
  .los-content-wrapper__right-block {
    padding: 3rem 2.5rem 3rem 3.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;
  }
  .venue-section {
    margin-top: 2rem;
  }
  .container__heading {
    margin-bottom: 3.25rem;
  }
  .container__heading h1 {
    font-size: 1.875rem;
  }
  .container__vs-content-wrapper {
    padding: 1.5rem 1.5rem 3rem 1.5rem;

    gap: 2.5rem;
  }
  .vs-content-wrapper__left-block h1 {
    font-size: 1.875rem;
    margin-bottom: 2.25rem;
  }
  .left-block__paragraph {
    margin-bottom: 2.25rem;
  }
  .left-block__button-wrapper a {
    padding: 0.75rem 1.5rem;
  }
  .container__is-swiper-wrapper h1 {
    font-size: 1.875rem;
  }
  .container__is-swiper-wrapper h2 {
    margin-bottom: 3.25rem;
  }
  .illustration-img-parent {
    height: 16rem;
    border-radius: 2rem;
  }
  .illustration-img {
    border-radius: calc(2rem - 0.063rem);
  }
  .container__heading-link-navigation h1 {
    font-size: 1.25rem;
    line-height: 120%;
  }
  .container--custom {
    max-width: calc(720px + ((100% - 720px) / 2));
  }
  .swiper--events {
    margin-top: 2.25rem;
  }
  .content-wrapper__left-block {
    padding-right: calc(((100vw - 720px) / 2) + 0.75rem);
  }
  .right-block__pagination {
    padding-right: calc((100vw - 720px) / -4 + 0.375rem);
  }
  .container__fs-content-wrapper h1 {
    font-size: 1.875rem;
    margin-bottom: 1.5rem;
  }
  .fs-content-wrapper__card-wrapper {
    gap: 1.5rem;
  }
  .rcs-content-wrapper__btn-wrapper > * {
    margin: initial;
    flex: initial;
    width: fit-content;
  }
  .container__content-wrapper p {
    font-size: 1.125rem;
  }
  .left-block__inner-wrapper {
    padding: 3.25rem 4rem;
    border-radius: 2rem;
  }
  .right-block__upper {
    padding: 3rem 2.5rem;
  }
  .btn-wrapper__tab-btn {
    padding: 1.25rem 0.75rem;
  }
  .btn-wrapper__download-pdf-btn {
    margin-bottom: initial;
  }
  .right-block__lower .tab-content {
    height: 16rem;
    padding: 0rem 2rem;
  }
  .right-block__lower .tab-content .tab-pane {
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.8;
  }
  .right-block__upper h2 {
    font-size: 1.625rem;
  }
  .gef-content-wrapper__text-wrapper h1 {
    font-size: 1.625rem;
    line-height: 1.1;
    margin-bottom: 2rem;
  }
  .gef-content-wrapper__text-wrapper h2 {
    margin-bottom: 2rem;
  }
  .gef-content-wrapper__text-wrapper p {
    margin-bottom: 1.25rem;
  }
  .fs-content-wrapper__heading-wrapper h1 {
    font-size: 2.5rem;
  }
  .container__fs-content-wrapper {
    gap: 1.5rem;
  }
  .inner__content-wrapper h2 {
    margin-bottom: 2.25rem;
  }
  .ris-content-wrapper__inner h1 {
    font-size: 1.625rem;
    margin-bottom: 2rem;
  }
  .inner__left-block button {
    padding-bottom: 3.25rem;
  }
  .ris-content-wrapper__inner {
    padding: 5.75rem 4.5rem;
  }
  .los-content-wrapper__right-block {
    padding: 3rem 3.5rem 3rem 4rem;
  }
  .vs-content-wrapper__left-block h1 {
    font-size: 1.625rem;
    margin-bottom: 1rem;
  }
  .container__rcs-content-wrapper h1 {
    font-size: 1.625rem;
    margin-bottom: 3rem;
  }
  .container__rcs-content-wrapper p {
    margin-bottom: 3rem;
  }
  .rcs-content-wrapper__btn-wrapper {
    gap: 1.75rem;
  }
  .agenda-section__container {
    border-radius: 2rem;
  }
  .agenda-section__info-block {
    padding: 2.75rem 3rem 2.25rem 3rem;
  }
  .info-block__left-block {
    width: 100%;
  }
  .info-block__left-block h4 {
    margin-bottom: 0.875rem;
  }
  .info-block__left-block p {
    font-size: 1.125rem;
  }
  .info-block__right-block {
    width: 100%;
    padding: 0rem 2.25rem 2.75rem 2.25rem;
  }
  .right-block__registration-info h4 {
    font-size: 2.5rem;
  }
  .agenda-section__session-wrapper {
    height: 19rem;
    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: 1.125rem;
  }
  .container__heading {
    margin-bottom: 3.25rem;
  }
  .container__heading h1 {
    font-size: 1.875rem;
  }
  .table-wrapper__body {
    padding-left: 3.25rem;
    padding-right: 3.25rem;
    border-top: 3rem solid transparent;
    border-bottom: 3rem solid transparent;
    gap: 2.25rem;
  }
  .main__buttons {
    position: absolute;
    top: var(--bs-gutter-y);
    right: 0;
  }
  .item__register-link {
    width: initial;
  }
  .conference-overview-section .item__agenda-link {
    margin-top: 2.75rem;
  }
  .item__agenda-link {
    width: initial;
  }
  .right-block__share-btn-wrapper {
    top: 2.5rem;
    right: 3.5rem;
  }
}
/* ------------------------------------------------------------------------------- */
/* DESKTOP LG LAYOUT */
/* ------------------------------------------------------------------------------- */
@media (min-width: 992px) {
  section.section-margin {
    margin: 7.5rem 0rem;
  }
  section.section-margin:last-of-type {
    margin-bottom: 3.75rem;
  }
  .container__is-content-wrapper {
    padding: 4.5rem 5.5rem;
  }
  .is-content-wrapper__container {
    margin-top: 12rem;
  }
  .intro-section .main-btn,
  .btn-wrapper__btn-secondary {
    width: fit-content !important;
  }
  .container__was-container {
    padding: 0.063rem;
    border-radius: 2rem;
    background: linear-gradient(82.33deg, #ffffff 7.1%, #dee0f5 96.45%);
    box-shadow:
      0px 4.07px 3.65px 0px rgba(142, 190, 241, 0.0365),
      0px 9.78px 8.78px 0px rgba(142, 190, 241, 0.0525),
      0px 18.41px 16.53px 0px rgba(142, 190, 241, 0.065),
      0px 32.83px 29.48px 0px rgba(142, 190, 241, 0.0775),
      0px 61.41px 55.15px 0px rgba(142, 190, 241, 0.0935);
  }
  .was-container__content-wrapper {
    background-color: var(--white);
    border-radius: calc(2rem - 0.063rem);
    padding: 6.25rem;
    gap: 7rem;
  }
  .content-wrapper__left-block {
    padding-right: initial;

    width: 50%;
  }
  .left-block__inner-wrapper {
    padding: initial;
    border: initial;
    border-radius: initial;
    background-color: initial;
  }
  .fs-content-wrapper__questions-wrapper {
    padding-top: 2.75rem;
  }
  .venue-section {
    margin-top: 0rem;
  }
  .venue-section .container {
    padding-top: 8.75rem;
    margin-top: 0rem;
  }
  .venue-section .badge-container {
    margin-bottom: 3rem;
  }
  .container__heading {
    margin-bottom: 4.25rem;
  }
  .container__vs-content-wrapper {
    padding: 0rem;

    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;
  }
  .left-block__paragraph {
    margin-bottom: 1.75rem;
  }
  .content-wrapper__right-block {
    padding: 0rem;
    width: 40%;
  }
  .right-block__item {
    padding: initial;
    border-radius: initial;
    border: initial;
    background-color: initial;
  }
  .container__is-swiper-wrapper h1 {
    font-size: 1.625rem;
    margin-bottom: 1rem;
  }
  .container__is-swiper-wrapper h2 {
    font-size: 1rem;
    margin-bottom: 3.75rem;
  }
  .events-section {
    background-color: var(--white);
  }
  .container__heading-link-navigation h1 {
    font-size: 2.5rem;
    line-height: 100%;
  }
  .heading-link-navigation__right-block a {
    font-size: 1.125rem;
  }
  .container--custom {
    margin-right: auto;
    max-width: 960px;
    padding-right: var(--bs-gutter-x, 0.75rem);
  }
  .swiper--events {
    margin-top: 0rem;
  }
  .container__event-item {
    width: 33.333%;
  }
  .event-item__wrapper p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    height: calc(1.1 * 1.5rem * 2);
  }
  .wrapper__location-date-wrapper {
    gap: 2.5rem;
  }
  .location-date-wrapper__item {
    font-size: 1rem;
    flex: 1;
  }
  .badge-container {
    margin-bottom: 3rem;
  }
  .container__fs-content-wrapper {
    gap: 2.5rem;
  }
  .container__fs-content-wrapper h1 {
    font-size: 2.5rem;
    margin-bottom: 3.25rem;
  }
  .fs-content-wrapper__card-wrapper {
    gap: 1.75rem;
  }
  .card-wrapper__item {
  }
  .content-wrapper__right-block {
    width: 50%;
  }
  .pos-content-wrapper__left-block {
    padding: initial;

    width: 40%;
  }
  .pos-content-wrapper__right-block {
    width: 60%;
  }
  .badge-container__content {
    padding: 0.75rem 2.5rem;
  }
  .badge-container {
    margin-bottom: 1.25rem;
  }
  .pos-content-wrapper__left-block h1 {
    margin-bottom: 3rem;
  }
  .right-block__upper {
    padding: 3rem 4.5rem;
  }
  .right-block__lower .tab-content {
    padding: 0rem 4.5rem;
  }
  .gef-content-wrapper__img-wrapper {
    width: 50%;
  }
  .gef-content-wrapper__text-wrapper {
    width: 50%;
    padding: 8.25rem 0rem;
  }
  .container__gef-content-wrapper {
    gap: 4.75rem;
  }
  .caa-content-wrapper__inner {
    padding: 2.5rem;
    gap: 5.75rem;
  }
  .inner__left-block-img {
    border-radius: 3rem;
  }
  .inner__benefits-item {
    font-weight: 600;
  }
  .ris-content-wrapper__inner {
    padding: 9.5rem 6.25rem;
  }
  .inner__left-block button {
    border-bottom: 0.063rem solid var(--ghost-white);
    padding-bottom: 1.25rem;
  }
  .inner__left-block button.active {
    border-color: var(--lavander);
  }
  .ris-content-wrapper__uems-logo {
    margin-top: initial;
  }
  .container__vs-content-wrapper {
    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);
  }
  .rcs-content-wrapper__btn-wrapper {
    width: 30rem;
  }
  .agenda-section__info-block {
    padding: 4rem 4.5rem 2.75rem 4rem;
  }
  .info-block__left-block {
    padding-bottom: 0;
    width: 70%;
  }
  .info-block__left-block h4 {
    font-size: 1.625rem;
  }
  .info-block__left-block p {
    margin-bottom: 2.25rem;
  }
  .info-block__right-block {
    padding: 0;
    width: 30%;
    box-shadow: none;
  }
  .right-block__registration-info {
    margin-bottom: 2.5rem;
  }
  .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: 0rem;
  }
  .session-block__text {
    margin-bottom: 1.5rem;
  }
  .container__heading {
    margin-bottom: 4.25rem;
  }
  .container__table-wrapper {
    border-radius: 1rem;
    border: 0.063rem solid var(--powder-blue);
  }
  .table-wrapper__head {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.1;
    color: var(--white);
    background-color: var(--persian-blue);
    padding: 1.5rem 3.5rem;
  }
  .table-wrapper__body {
    padding-left: 3.5rem;
    padding-right: 3.5rem;
    border-top: 2rem solid transparent;
    border-bottom: 2rem solid transparent;
    gap: 2rem;
    border-radius: 0rem;
  }
  .item__date p {
    font-size: 1rem;
    font-weight: 700;
    line-height: 120%;
    color: var(--persian-blue);
  }
  .item__event-name {
    font-size: 1rem;
    font-weight: 400;
  }
  .main__buttons {
    position: initial;
    top: initial;
    right: initial;

    margin-top: var(--bs-gutter-y) !important;
    order: 6 !important;
  }
  .item__agenda-link {
    border-radius: 0.5rem;
  }
  .item__location {
    font-size: 1rem;
    font-weight: 400;
    line-height: 120%;
    color: var(--black);
  }
  .item__time {
    font-size: 1rem;
    font-weight: 400;
    line-height: 120%;
    color: var(--black);
  }
  .item__price {
    font-size: 1rem;
    font-weight: 500;
    line-height: 100%;
    color: var(--black);
    background-color: var(--ghost-white-darker);
    padding: 0.5rem;
    border-radius: 0.25rem;
    width: fit-content;
    text-wrap: nowrap;
  }
  .item__bottom {
    margin-top: 1.25rem;
  }
  .table__body-container .bottom__btn,
  .table__body-container .card_body {
    font-size: 0.875rem;
  }
  .left-block__location-wrapper {
    margin-bottom: 2rem;
  }
  .course-highlights__item {
    width: 20%;
  }
  .tab-pane__logo-wrapper {
    margin-bottom: 2.5rem;
  }
}
/* ------------------------------------------------------------------------------- */
/* DESKTOP XL LAYOUT */
/* ------------------------------------------------------------------------------- */
@media (min-width: 1200px) {
  body > section:nth-child(3) {
    margin-top: 0rem;
  }
  .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;
  }
  .container--custom {
    max-width: 1140px;
  }
  .container__gef-content-wrapper {
    gap: 6.75rem;
  }
  .ris-content-wrapper__uems-logo {
    top: 3.75rem;
    right: 3.75rem;
  }
  .table__body-container .bottom__btn,
  .table__body-container .card_body {
    font-size: 1rem;
  }
  .inner__left-block-img {
    width: 50%;
  }
  .inner__left-block-img img {
    scale: 1.5;
  }
  .inner__content-wrapper {
    width: 50%;
  }
}
/* ------------------------------------------------------------------------------- */
/* DESKTOP XXL LAYOUT */
/* ------------------------------------------------------------------------------- */
@media (min-width: 1400px) {
  .content-wrapper__right-block {
    margin-left: auto;
  }
  .container--custom {
    max-width: 1320px;
  }
  .was-container__content-wrapper {
    padding: 6.26rem 11.75rem;
  }
  .pos-content-wrapper__left-block {
    width: 50%;
  }
  .pos-content-wrapper__right-block {
    width: 50%;
  }
  .ris-content-wrapper__inner {
    padding: 9.5rem 11rem;
  }
  .container__gef-content-wrapper {
    gap: 9.75rem;
  }
}
