/* ------------------------------------------------------------------------------- */
/* ROOT */
/* ------------------------------------------------------------------------------- */
:root {
  --white: #ffffff;
  --white-glass: #ffffff26;
  --black: #000000;
  --gray: #757575;
  --persian-blue: #003aba;
  --yinmn-blue: #4a5f93;
  --ghost-white-darker: #eff3fe;
  --ghost-white: #f6f7fb;
  --delft-blue: #344067;
  --delft-blue-2: #192f5d;
  --selective-yellow: #ffb200;
  --dark-yellow: #db9900;
  --light-yellow: #fff6e9;
  --lavander: #dadfeb;
  --gray: #757575;
  --powder-blue: #9faac5;
  --resolution-blue: #0b2f80;
  --dark-blue: #01396e;
  --dark-gray: #1f1f1f;
  --light-blue: #d5f2ff;
  --very-light-blue: #ecf3ff;
  --dark-gray: #1f1f1f;
  --light-gray: #cecece;
  --medium-dark-blue: #015db3;
  --medium-light-blue: #dfeafc;
  --very-light-orange: #ffcdb2;
  --dark-orange: #bf511a;
  --orange: #f1851a;
  --light-orange: #e99b71;
  --light-blue: #d5f2ff;
  --blue: #0786ff;
  --medium-dark-blue: #015db3;
  --very-light-sage-green: #f3f9f2;
  --sage-green: #8ea58b;
  --darker-sage-green: #738a6e;
  --blue-1: #0786ff;
  --blue-2: #003aba;
  --slightly-dark-gray: #3d3d3d;

  --blue-gradient: linear-gradient(
    90deg,
    rgba(1, 98, 187, 1) 0%,
    rgba(10, 137, 255, 1) 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%
  );

  --blue-gradient-conferences: linear-gradient(
    274.59deg,
    #003aba 0%,
    #275fdc 99.6%
  );
}
* {
  font-family: "Poppins", sans-serif !important;
}
*::-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;
  }
}
html,
body {
  background-color: var(--white);
  overflow-x: hidden;
}
.container--custom {
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  padding-left: var(--bs-gutter-x, 0.75rem);
  padding-right: 0;
}
.cards-swiper__pagination {
  left: 50% !important;
  transform: translateX(-50%);
  width: fit-content !important;
  margin-top: 3.5rem;

  gap: 0.375rem;
}
.swiper-pagination-bullet {
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--powder-blue);
  border-radius: 50%;
  margin: 0 !important;
}
.swiper-pagination-bullet-active {
  width: 3.5rem;
  border-radius: 3.125rem;
}
.section-margin {
  margin: 3rem 0;
}
/* ------------------------------------------------------------------------------- */
/* CSS */
/* ------------------------------------------------------------------------------- */
.intro-section {
  background-color: transparent;
  z-index: 1;
}
.intro-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;
}
.intro-section__img-container {
  background-color: var(--blue-2);
  height: 80%;
}
.intro-section__img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.container__input-wrapper {
  margin-top: 2rem;
  margin-bottom: 1.25rem;
}
.gray-badge {
  font-size: 0.813rem !important;
  font-weight: 400;
  line-height: 100%;
  color: var(--dark-gray);
  background-color: var(--very-light-blue);
  padding: 0.5rem 2.5rem;
  border-radius: 0.625rem;
  width: fit-content;
  margin-bottom: 1.5rem;
  text-align: center;
}
.container__input-wrapper input[type="text"] {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 100%;
  color: var(--black);
  box-sizing: border-box;
  padding: 0.75rem 2.25rem 0.75rem 3.5rem;
  background-image: url("https://www.nysora.com/wp-content/uploads/2025/10/Search-icon.png") !important;
  background-position: 1rem center;
  background-repeat: no-repeat;
  background-size: 1.5rem;
  border: 0.063rem solid var(--medium-light-blue);
  border-radius: 0.5rem;
  box-shadow:
    0px 2.77px 2.21px 0px rgba(38, 57, 138, 0.04),
    0px 6.65px 5.32px 0px rgba(38, 57, 138, 0.055);
}
.container__input-wrapper input[type="text"]::placeholder {
  color: var(--gray);
}
#input-wrapper__live-search-results {
  position: absolute;
  top: 9.5rem;
  left: 0;
  right: 0;
  background: var(--white);
  border: 0.063rem solid var(--medium-light-blue);
  border-radius: 1.25rem;
  max-height: 20rem;
  overflow-y: auto;
  display: none;
  z-index: 9999;
  padding: 1rem;
}
.live-search-results__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-bottom: 0.063rem solid #f2f2f2;
  cursor: pointer;
  transition: background 0.2s;
  border-radius: 0.5rem;
  align-items: start;
}
.live-search-results__item:hover {
  background-color: var(--ghost-white);
}
.live-search-results__item:hover .item__live-search-category {
  background-color: var(--white);
}
.live-search-results__item img {
  width: 6.25rem;
  height: 3rem;
  border-radius: 0.25rem;
  object-fit: cover;
}
.item__live-search-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: 1;
  flex-wrap: wrap;
}
.item__live-search-info p {
  margin-bottom: 0rem;
}
.item__live-search-title {
  font-size: 0.75rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
  color: #222;
  margin-top: 0rem;
}
.item__live-search-category {
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 100%;
  color: var(--yinmn-blue);
  background-color: var(--ghost-white);
  border-radius: 0.25rem;
  padding: 0.156rem 0.5rem;
  width: fit-content;
  margin-top: 1rem;
}
.input-wrapper__nysora-logo {
  margin-bottom: 1.75rem;
}
.input-wrapper__paragraph {
  font-size: 1rem;
  font-weight: 600;
  line-height: 110%;
  color: var(--delft-blue-2);
  margin-bottom: 1.25rem;
}
.container__btn-badge-wrapper {
  margin-bottom: 1.75rem;
  position: relative;
  z-index: 3;
}
.btn-badge-wrapper__btn {
  font-size: 1rem;
  font-weight: 500;
  line-height: 110%;
  color: var(--black);
  background-color: var(--white);
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.375rem;
  width: fit-content;
  gap: 1.25rem;
  text-decoration: none;
}
.btn-badge-wrapper__btn:hover {
  color: var(--black);
  background-color: var(--ghost-white-darker);
  border: none;
}
.btn-badge-wrapper__badge {
  font-size: 1rem;
  font-weight: 500;
  line-height: 110%;
  color: var(--black);
  background-color: var(--white-glass);
  padding: 0.75rem 1.25rem;
  border-radius: 0.625rem;
  backdrop-filter: blur(2.5rem);
  white-space: nowrap;
}
.container__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;
}
.content-wrapper__left-block {
  height: fit-content;
}
.content-wrapper__left-block h1 {
  font-size: 1.625rem;
  font-weight: 600;
  line-height: 110%;
  color: var(--black);
  margin-bottom: 1rem;
}
.left-block__paragraph {
  font-size: 1rem;
  font-weight: 400;
  line-height: 120%;
  color: #000000;
  margin-bottom: 2rem;
}
.content-wrapper__left-block ul li {
  font-size: 1rem;
  font-weight: 400;
  line-height: 120%;
  color: #000000;
}
.left-block__icon-text-wrapper {
  gap: 1.5rem;
  margin-bottom: 2.75rem;
}
.icon-text-wrapper__item {
  font-size: 1rem;
  font-weight: 500;
  line-height: 110%;
  color: var(--black);

  gap: 0.75rem;
}
.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);

  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);
}
.content-wrapper__right-block {
  width: 100%;
}
.content-wrapper__right-block img {
  object-fit: cover;
  border-radius: 1.25rem;
}
.content-wrapper__right-block--leuven-img {
  margin-bottom: 2rem;
}
.content-wrapper__right-block--leuven-img img {
  object-position: 60% center;
}
.workshops-highlights-section {
}
.container__heading {
  margin-bottom: 2.75rem;
}
.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 2.5rem;
  width: fit-content;
  text-align: center;
  z-index: 1;
}
.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;
}
.swiper-slide__card {
  position: relative;
}
.card__back {
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 1.625rem;
  padding: 2rem 2.25rem;
  opacity: 0;
}
.card__back p {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 110%;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.card__back p:last-of-type {
  margin-bottom: 0rem;
}
.swiper-slide__card:hover .front__content {
  opacity: 0;
}
.swiper-slide__card:hover .card__back {
  opacity: 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: 50%;
  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: 110%;
  color: var(--white);
  margin-bottom: 1rem;
}
.content__text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 110%;
  color: var(--white);
}
.upcoming-workshops-table {
  z-index: 1;
}
.container__table-wrapper {
  border-radius: 0.5rem;
  border: 0.063rem solid var(--ghost-white-darker);
}
.table-wrapper__body {
  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__badge {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.1;
  color: var(--black);
  background-color: var(--light-blue);
  padding: 0.25rem 0.75rem;
  border-radius: 0.25rem;
  margin-bottom: 1.25rem;
  width: fit-content;
}
.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__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;
}
.bottom__btn {
  font-size: 1rem;
  font-weight: 500;
  line-height: 110%;
  color: var(--persian-blue);
  background-color: transparent;
  border: none;
}
.bottom__btn img {
  transform: rotate(0deg);
  transition: transform 0.3s ease;
}
.bottom__btn[aria-expanded="true"] img {
  transform: rotate(180deg);
}
.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;
}
.clinical-discussions-section {
}
.clinical-discussions-section__background {
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.35) 0%,
    rgba(158, 170, 237, 0.35) 51.92%,
    rgba(255, 255, 255, 0.35) 100%
  );
  filter: blur(9.75rem);
}
.container__card-wrapper {
  margin-top: 1.5rem;
  gap: 0.5rem;
}
.card-wrapper__card {
  width: 80%;
  background:
    radial-gradient(
        circle at 100% 100%,
        #ffffff 0,
        #ffffff 27px,
        transparent 27px
      )
      0% 0% / 28px 28px no-repeat,
    radial-gradient(circle at 0 100%, #ffffff 0, #ffffff 27px, transparent 27px)
      100% 0% / 28px 28px no-repeat,
    radial-gradient(circle at 100% 0, #ffffff 0, #ffffff 27px, transparent 27px)
      0% 100% / 28px 28px no-repeat,
    radial-gradient(circle at 0 0, #ffffff 0, #ffffff 27px, transparent 27px)
      100% 100% / 28px 28px no-repeat,
    linear-gradient(#ffffff, #ffffff) 50% 50% / calc(100% - 2px)
      calc(100% - 56px) no-repeat,
    linear-gradient(#ffffff, #ffffff) 50% 50% / calc(100% - 56px)
      calc(100% - 2px) no-repeat,
    linear-gradient(
      40deg,
      transparent 0%,
      rgba(215, 221, 249, 0.11) 57%,
      #d7ddf9 100%
    ),
    linear-gradient(197deg, transparent 58%, #d7ddf9 100%);
  padding: 0.063rem;
  border-radius: 1.75rem;
}
.card__wrapper {
  background-color: var(--white);
  padding: 2rem;
  border-radius: calc(1.75rem - 0.063rem);
}
.card__wrapper h3 {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.1;
  color: var(--black);
}
.wrapper__img-wrapper {
  width: 4.5rem;
  height: 4.5rem;
  background-color: var(--ghost-white);
  border-radius: 0.75rem;
  box-shadow:
    0px 2.9px 2.32px 0px rgba(87, 119, 215, 0.0197),
    0px 6.96px 5.57px 0px rgba(87, 119, 215, 0.0283),
    0px 13.11px 10.49px 0px rgba(87, 119, 215, 0.035),
    0px 23.39px 18.71px 0px rgba(87, 119, 215, 0.0417),
    0px 43.74px 35px 0px rgba(87, 119, 215, 0.0503),
    0px 104.71px 83.77px 0px rgba(87, 119, 215, 0.07);
  margin-bottom: 3.25rem;
}
.container__cds-paragraph {
  font-size: 1rem;
  font-weight: 400;
  line-height: 120%;
  color: var(--black);
  margin-top: 2.25rem;
}
.faculty-section {
  z-index: 1;
}
.container__fs-content-wrapper {
  gap: 2.25rem;
}
.container__fs-content-wrapper img {
  width: 100%;
  height: 16rem;
  border-radius: 1.25rem;
  object-fit: cover;
}
.heading__custom-paragraph {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.1;
  color: var(--black);
  margin-top: 1.25rem;
}
.heading__custom-list {
}
.heading__custom-list li {
  font-size: 1rem;
  font-weight: 400;
  line-height: 120%;
  color: var(--black);
}
.heading__custom-list li:before {
}
.illustration-section {
}
.container__is-swiper-wrapper {
}
.illustrationSwiper {
  border-radius: 2rem;
}
.illustration-img {
  height: 14rem;
  overflow: hidden;
  border-radius: 2rem;
  background: rgba(0, 0, 0, 0.2);
  border: 0.063rem solid rgba(215, 221, 248, 1);
}
.illustration-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  scale: 1.3;
}
.ill-nav {
  padding: 0 2rem 1.5rem 2.75rem;
  border: 0.063rem solid rgba(215, 221, 248, 1);
  overflow: hidden;
  border-radius: 2rem;
}
.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);
}
.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%);
}
.faq-section {
}
.container__faq-items-wrapper .accordion {
  gap: 0.75rem;
}
.container__faq-items-wrapper .accordion-item {
  border-radius: 0.5rem !important;
  overflow: hidden;
  border: 0.063rem solid #dadfeb !important;
  background: #ffffff;
  box-shadow:
    0 2.63px 10.017px 0 rgba(69, 79, 157, 0.03),
    0 1.397px 5.32px 0 rgba(69, 79, 157, 0.02),
    0 0.581px 2.214px 0 rgba(69, 79, 157, 0.01);
}
.container__faq-items-wrapper {
}
.container__faq-items-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://www.nysora.com/wp-content/uploads/2026/03/accordion-chevron.svg");
  background-size: 0.75rem;
  background-position: center;
  margin-left: 0.25rem;
}
.container__faq-items-wrapper .accordion-button {
  color: #000;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.1;
  padding: 1.25rem 2rem;
}
.container__faq-items-wrapper .accordion-body {
  color: #000;
  font-size: 1rem;
  font-weight: 400;
  line-height: 120%;
  padding: 0rem 2rem 1.25rem 2rem;
}
.workshops-numbers {
}
.column__card {
  border-radius: 1.75rem;
  padding: 0.063rem;
  height: 100%;
  background:
    radial-gradient(
        circle at 100% 100%,
        #ffffff 0,
        #ffffff 27px,
        transparent 27px
      )
      0% 0% / 28px 28px no-repeat,
    radial-gradient(circle at 0 100%, #ffffff 0, #ffffff 27px, transparent 27px)
      100% 0% / 28px 28px no-repeat,
    radial-gradient(circle at 100% 0, #ffffff 0, #ffffff 27px, transparent 27px)
      0% 100% / 28px 28px no-repeat,
    radial-gradient(circle at 0 0, #ffffff 0, #ffffff 27px, transparent 27px)
      100% 100% / 28px 28px no-repeat,
    linear-gradient(#ffffff, #ffffff) 50% 50% / calc(100% - 2px)
      calc(100% - 56px) no-repeat,
    linear-gradient(#ffffff, #ffffff) 50% 50% / calc(100% - 56px)
      calc(100% - 2px) no-repeat,
    linear-gradient(
      40deg,
      transparent 0%,
      rgba(215, 221, 249, 0.11) 57%,
      #d7ddf9 100%
    ),
    linear-gradient(197deg, transparent 58%, #d7ddf9 100%);
}
.card__inner {
  padding: 1.5rem;
}
.inner__number {
  font-size: 1.875rem;
  font-weight: 700;
  color: #ffffff;
  border-radius: 0.75rem;
  display: inline-block;
  background: var(--blue-gradient-conferences);
  padding: 1rem 1.5rem;
}
.inner__title {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 120%;
  color: var(--black);
  margin-top: 0.875rem;
}
.workshops-numbers__background {
  top: -25%;
  transform: translate(-50%, -50%);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.35) 0%,
    rgba(158, 170, 237, 0.35) 51.92%,
    rgba(255, 255, 255, 0.35) 100%
  );
  filter: blur(9.75rem);
}
.conference-overview-section {
}
.conference-overview-section .container {
  height: fit-content;
}
.conference-overview-section__right-block {
  height: fit-content;
  width: fit-content;
}
.conference-overview-section__right-block h3 {
  color: var(--black);
}
.conference-overview-section__right-block p {
  color: var(--dark-gray);
  margin-bottom: 2rem;
}
.conference-overview-section__left-block {
  height: 35vh;
  margin-bottom: 2rem;
}
.conference-overview-section h3 {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 110%;
  color: var(--black);
  margin-top: 1.25rem;
  margin-bottom: 1rem;
}
.conference-overview-section__right-block h4 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 110%;
  margin-top: 2.25rem;
}
.left-block__img-1 {
  height: 60%;
  border-radius: 1.5rem;
}
.left-block__img-1 img {
  object-position: center;
  object-fit: cover;
}
.left-block__img-2 {
  height: 40%;
  border-radius: 1.5rem;
}
.left-block__img-2 img {
  object-position: center;
  object-fit: cover;
}
.left-block__img-3 {
  height: 100%;
  border-radius: 1.5rem;
}
.left-block__img-3 img {
  object-position: -14rem center;
  object-fit: cover;
}
.blue-badge {
  font-size: 0.813rem !important;
  font-weight: 400;
  line-height: 100%;
  color: var(--yinmn-blue);
  background-color: var(--ghost-white-darker);
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  width: fit-content;
  top: 1.25rem;
  margin-top: 2rem;
}
.blue-badge {
  color: var(--white) !important;
  background: var(--blue-gradient);
}
.blue-badge img {
  margin-right: 0.75rem;
}
.right-block__icon-text-wrapper {
  gap: 1.25rem;
}
.icon-text-wrapper__right-block .text-medium {
  font-size: 1rem;
  font-weight: 500;
  line-height: 110%;
  color: var(--black);
}
.icon-text-wrapper__right-block .text-normal {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 110%;
  color: var(--black);
  margin-top: 0.75rem;
}
.icon-text-wrapper__right-block .text-medium {
  font-size: 1rem;
  font-weight: 500;
  line-height: 110%;
  color: var(--black);
}
.icon-text-wrapper__right-block .text-normal {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 110%;
  color: var(--black);
  margin-top: 0.75rem;
}
.icon-text-wrapper__right-block .text-gray {
  color: var(--gray);
}
.conference-overview-section .item__agenda-link {
  margin-top: 1.5rem;
}
.newyork-cards-section {
}
.newyork-cards-image {
  border-radius: 1.25rem;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.newyork-cards-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.newyork-cards-image--360 img {
  object-position: left center;
}
.newyork-cards-text {
  margin-top: 2rem;
}
.newyork-cards-text h3 {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 120%;
}
.newyork-cards-text p {
  font-size: 1rem;
  line-height: 120%;
  margin-top: 10px;
}
.newyork-cards-text a:hover {
  color: var(--persian-blue);
}
.event-section {
  background-color: var(--white);
  padding: 4rem 0rem;

  z-index: 1;
}
.event-section__bg {
  height: 150%;
  width: 150%;
  top: 15%;
  left: 130%;
  transform: translate(-50%, -50%);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.35) 0%,
    rgba(158, 170, 237, 0.35) 51.92%,
    rgba(255, 255, 255, 0.35) 100%
  );
  filter: blur(9.75rem);
}
.event-section__logo-wrapper {
  margin-bottom: 24px;
}
.content__left-block h2 {
  font-size: 40px;
  font-weight: 600;
  line-height: 110%;
  margin-bottom: 36px;
}
.links__item {
  font-size: 18px;
  font-weight: 400;
  line-height: 110%;
}
.links__item:hover {
  color: var(--black);
}
.links__item.active {
  font-weight: 600;
}
.links__item img {
  transform: rotate(-90deg);
}
.links__item.active img {
  transform: rotate(0deg);
}
.links__item img {
  transition: transform 0.3s ease;
  margin-left: 8px;
}
.left-block__horizontal-separator {
  height: 1px;
  background-color: var(--powder-blue);
  margin: 32px 0;
}
.content__right-block {
  font-size: 16px;
  font-weight: 400;
  line-height: 120%;
}
.content__right-block a {
  color: var(--persian-blue);
}
.content__right-block .text-bold {
  font-weight: 600;
}
.content__right-block .tab-pane {
  height: fit-content;
}
.tab-pane__logo-wrapper {
  margin-bottom: 2rem;
}
.tab-pane__logo-wrapper img {
  width: 8rem;
}
.testimonials-section {
  z-index: 0;
}
.testimonials-section .container {
  z-index: 1;
}
.testimonials-section .swiper-button-next:hover,
.testimonials-section .swiper-button-prev:hover {
  background: linear-gradient(to right, #275fdc, #003aba);
  border: 1px solid transparent;
}
.testimonials-section .as-title h2 {
  margin-bottom: 32px;
}
.testimonials-section::after {
  content: "";
  pointer-events: none;
  position: absolute;
  width: 80%;
  height: 180%;
  top: 0%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.35) 0%,
    rgba(158, 170, 237, 0.35) 51.92%,
    rgba(255, 255, 255, 0.35) 100%
  );
  border-radius: 50%;
  filter: blur(9.75rem);
  z-index: -1;
}
.testimonials-fraction {
  font-size: 1rem;
  line-height: 1.1;
  color: #4a5f93;
  width: auto;
  position: static;
  margin-bottom: 2rem;
}
.swiper-slide__content-wrapper {
  gap: 1rem;
}
.card__img-wrapper {
  border-radius: 50%;
  overflow: hidden;
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  box-shadow:
    0 66.84px 53.472px 0 rgba(47, 8, 8, 0.08),
    0 27.924px 22.339px 0 rgba(47, 8, 8, 0.06),
    0 14.93px 11.944px 0 rgba(47, 8, 8, 0.05),
    0 8.369px 6.696px 0 rgba(47, 8, 8, 0.04),
    0 4.445px 3.556px 0 rgba(47, 8, 8, 0.03),
    0 1.85px 1.48px 0 rgba(47, 8, 8, 0.02);
}
.card__img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.content-wrapper__card {
  padding: 20px 20px 16px 20px;
  border-radius: 16px;
  border: 0.668px solid rgba(109, 144, 232, 0.2);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(3px);
}
.content__text span {
  color: #3d3d3d;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 9px;
  display: inline-block;
}
.content__text h5 {
  color: #000;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 13px;
}
.testimonials-progress {
  height: 3px;
  background-color: #dadfeb;
  border-radius: 8px;
  width: 100%;
  max-width: 311px;
}
.testimonials-progress .swiper-scrollbar-drag {
  background: linear-gradient(275deg, #003aba 0%, #275fdc 99.6%);
}
.testimonials-progress {
  margin-top: 32px;
}
.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__event-item {
  height: fit-content;
  border-radius: 0;
}
.container__event-item {
  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: 125%;
  color: var(--powder-blue);
  gap: 0.75rem;
}
.events-section .tab-pane {
  height: fit-content !important;
}
.faq-section .accordion-body a {
  color: var(--blue);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-decoration-style: solid;
  text-decoration-color: var(--blue);
  text-underline-offset: 2px;
}
.faq-section .accordion-body a:hover {
  color: var(--persian-blue);
  text-decoration-color: var(--persian-blue);
}
.price-info {
  width: 5.75rem;
}
.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;
}
.regbtn_disabled {
  background-color: #a1a1a1 !important;
  pointer-events: none !important;
}
.disabledagenda {
  background-color: #a1a1a1 !important;
  pointer-events: none !important;
}
/* ------------------------------------------------------------------------------- */
/* VERY SMALL DEVICES */
/* ------------------------------------------------------------------------------- */
@media (max-width: 348px) {
}
@media (min-width: 400px) {
  .card-wrapper__card {
    width: 50%;
  }
  .item__register-link,
  .item__agenda-link {
    width: 50%;
  }
}
/* ------------------------------------------------------------------------------- */
/* MOBILE LAYOUT */
/* ------------------------------------------------------------------------------- */
@media (min-width: 576px) {
  .container--custom {
    max-width: calc(540px + ((100% - 540px) / 2));
  }
  .cards-swiper__pagination {
    left: calc(50% - ((100vw - 540px) / 4)) !important;
  }
  .front__content {
    height: 41.5%;
  }
}
/* ------------------------------------------------------------------------------- */
/* TABLET LAYOUT */
/* ------------------------------------------------------------------------------- */
@media (min-width: 768px) {
  .container--custom {
    max-width: calc(720px + ((100% - 720px) / 2));
  }
  .section-margin {
    margin: 3.75rem 0;
  }
  .intro-section {
    margin-top: 2rem;
  }
  .container__input-wrapper {
    margin-bottom: 4.75rem;
  }
  .container__input-wrapper input[type="text"] {
    font-size: 1rem;
    padding: 2.25rem 4.75rem 2.25rem 7.25rem;
    background-position: 4.75rem center;
    border-radius: 1.25rem;
  }
  #input-wrapper__live-search-results {
    top: 13rem;
  }
  .live-search-results__item {
    align-items: center;
  }
  .item__live-search-info {
    flex-wrap: nowrap;
  }
  .item__live-search-title {
    font-size: 1rem;
  }
  .item__live-search-category {
    margin-top: 0rem;
  }
  .container__content-wrapper {
    padding: 1.75rem 3.75rem;

    gap: 2rem;
  }
  .content-wrapper__left-block {
  }
  .content-wrapper__left-block h1 {
    font-size: 1.875rem;
    margin-bottom: 2.25rem;
  }
  .left-block__paragraph {
    margin-bottom: 2.25rem;
  }
  .left-block__icon-text-wrapper {
    margin-bottom: 2rem;
  }
  .left-block__button-wrapper a {
    padding: 0.75rem 1.5rem;
  }
  .left-block__icon-text-wrapper {
    width: 27rem;
  }
  .icon-text-wrapper__item {
    width: 12.5rem;
  }
  .container__heading {
    margin-bottom: 3.25rem;
  }
  .container__heading h1 {
    font-size: 1.875rem;
  }
  .card__front {
    height: 26rem;
  }
  .front__content {
    height: 30.5%;
  }
  .content__title {
    font-size: 1.5rem;
  }
  .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;
  }
  .container__card-wrapper {
    margin-top: 4.5rem;
    gap: 1.5rem;
  }
  .card-wrapper__card {
    width: 33.3%;
  }
  .container__cds-paragraph {
    margin-top: 2.5rem;
    width: 26rem;
  }
  .container__fs-content-wrapper {
    gap: 2rem;
  }
  .container__fs-content-wrapper img {
    width: 100%;
    height: 18.5rem;
  }
  .container__is-swiper-wrapper {
  }
  .illustration-img {
    height: 16rem;
  }
  .faq-section {
  }
  .container__faq-items-wrapper .accordion {
    gap: 1.25rem;
  }
  .container__faq-items-wrapper .accordion-button {
    font-size: 1.125rem;
    padding: 2rem 1rem;
    justify-content: space-between;
  }
  .container__faq-items-wrapper .accordion-body {
    padding: 0rem 1rem 2rem 1rem;
  }
  .conference-overview-section__left-block {
    width: 100%;
    height: 50vh;
    margin-bottom: 3.25rem;
  }
  .conference-overview-section h3 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
  }
  .conference-overview-section__badge {
    margin-bottom: 1.25rem;
  }
  .conference-overview-section-padding {
    padding: 4rem 0;
  }
  .conference-overview-section__right-block h4 {
    margin-top: 2.75rem;
  }
  .conference-overview-section .item__agenda-link {
    margin-top: 2.75rem;
  }
  .event-section {
    padding: 5rem 0rem;
  }
  .event-section__logo-wrapper {
  }
  .content__left-block h2 {
    margin-bottom: 32px;
  }
  .left-block__links {
    gap: 2.25rem;
  }
  .left-block__horizontal-separator {
    margin: 2rem 0;
  }
  .swiper-slide__content-wrapper {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "card-2 card-1"
      "card-2 card-3";
    gap: 1.25rem;

    justify-items: center;
    align-items: center;
  }
  .content-wrapper__card {
    padding: 30px 30px 24px 30px;
    width: 100%;
    height: fit-content;
    max-width: 400px;
    margin-left: auto;

    grid-area: card-1;
  }
  .content-wrapper__card:nth-child(2) {
    margin-left: 0;
    transform: initial;

    grid-area: card-2;
  }
  .content-wrapper__card:nth-child(3) {
    transform: initial;

    grid-area: card-3;
  }
  .content__text h5 {
    font-size: 18px;
  }
  .content__text span {
    font-size: 14px;
  }
  .events-section {
  }
  .container__heading-link-navigation h1 {
    font-size: 1.25rem;
    line-height: 120%;
  }
  .swiper--events {
    margin-top: 2.25rem;
  }
  .item__register-link {
    width: initial;
  }
  .item__agenda-link {
    width: initial;
  }
  .cards-swiper__pagination {
    left: calc(50% - ((100vw - 720px) / 4)) !important;
  }
  .blue-badge {
    margin-top: 0rem;
  }
  .left-block__img-3 img {
    object-position: -21rem center;
  }
}
@media (max-width: 991.98px) {
  .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);
  }
  .testimonials-section {
  }
  .testimonials-section .as-title h2 {
    margin-bottom: 45px;
  }
}
/* ------------------------------------------------------------------------------- */
/* DESKTOP LG LAYOUT */
/* ------------------------------------------------------------------------------- */
@media (min-width: 992px) {
  .container--custom {
    margin-right: auto;
    max-width: 960px;
    padding-right: var(--bs-gutter-x, 0.75rem);
  }
  .section-margin {
    margin: 7.5rem 0;
  }
  .intro-section {
    margin-top: 0rem;
  }
  .intro-section .container {
    padding-top: 8.75rem;
    margin-top: 0rem;
  }
  .container__content-wrapper {
    padding: 0rem;

    gap: 1.25rem;
  }
  .content-wrapper__left-block {
    width: 60%;
  }
  .content-wrapper__left-block {
    padding: 3rem 0rem 3rem 4rem;
  }
  .content-wrapper__left-block h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }
  .left-block__paragraph {
    margin-bottom: 1.75rem;
  }
  .left-block__icon-text-wrapper {
    gap: 1.25rem;
    margin-bottom: 2.25rem;
  }
  .content-wrapper__right-block {
    padding: 1.25rem;
    width: 40%;
  }
  .container__heading {
    margin-bottom: 4.25rem;
  }
  .container--custom__cards-swiper {
    padding-left: 4.25rem;
    padding-right: 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__register-link {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.1;
    color: var(--white);
    background: none;
    background-color: var(--blue);
    border: 0.125rem solid transparent;
    padding: 1rem;
    border-radius: 0.625rem;
    text-wrap: nowrap;
  }
  .item__register-link:hover {
    color: var(--blue);
    background-color: var(--white);
    border-color: var(--blue);
  }
  .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;
  }
  .container__card-wrapper {
    margin-top: 3rem;
    gap: 2.25rem;
  }
  .card-wrapper__card {
    width: 27.5%;
  }
  .container__cds-paragraph {
    width: 42rem;
    margin-top: 2.75rem;
  }
  .container__fs-content-wrapper {
    gap: 3.75rem;
  }
  .container__fs-content-wrapper img {
    width: 50%;
    height: 32rem;
  }
  .illustration-section .container__heading h2 {
    width: 36rem;
  }
  .container__is-swiper-wrapper {
  }
  .faq-section {
  }
  .container__faq-items-wrapper {
  }
  .conference-overview-section__right-block {
    padding: 1.75rem 0rem;
  }
  .conference-overview-section__right-block h3 {
    margin-top: 2rem !important;
  }
  .conference-overview-section__left-block,
  .conference-overview-section__right-block {
    width: 50% !important;
  }
  .conference-overview-section h3 {
    margin-bottom: 2rem;
  }
  .conference-overview-section__left-block {
    height: auto;
    margin-bottom: 0;
  }
  .conference-overview-section-padding {
    padding: 3.25rem 0;
  }
  .conference-overview-section__right-block h4 {
    margin-top: 3.5rem;
  }
  .right-block__icon-text-wrapper:first-of-type {
    margin-top: 0rem !important;
  }
  .right-block__icon-text-wrapper {
    margin-top: 2rem !important;
  }
  .event-section {
    padding: 3.25rem 0rem;
  }
  .event-section__logo-wrapper {
  }
  .content__left-block h2 {
    margin-bottom: 40px;
  }
  .left-block__links {
    gap: 0;
  }
  .links__item {
  }
  .links__separator {
    width: 15rem;
    height: 0.063rem;
    background-color: var(--lavander);
    margin: 1rem 0rem;
  }
  .links__separator:last-of-type {
    margin-bottom: 0rem;
  }
  .links__item img {
    transform: rotate(0deg);
  }
  .links__item.active img {
    transform: rotate(-90deg);
  }
  .tab-pane__logo-wrapper {
    margin-bottom: 2.5rem;
  }
  .testimonials-section {
  }
  .testimonials-section .as-title h2 {
    margin-bottom: 42px;
  }
  .testimonial-swiper-container {
    flex-shrink: 0;
  }
  .events-section {
    background-color: var(--white);
  }
  .container__heading-link-navigation h1 {
    font-size: 2rem;
    line-height: 100%;
  }
  .heading-link-navigation__right-block a {
    font-size: 1.125rem;
  }
  .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;
  }
  .left-block__img-1 img {
    object-position: -26rem center;
  }
  .left-block__img-3 img {
    object-position: -33rem center;
  }
  .front__content {
    height: 41%;
  }
}
/* ------------------------------------------------------------------------------- */
/* DESKTOP XL LAYOUT */
/* ------------------------------------------------------------------------------- */
@media (min-width: 1200px) {
  .container--custom {
    max-width: 1140px;
  }
  .content-wrapper__left-block {
    width: 65%;
  }
  .content-wrapper__right-block {
    width: 35%;
  }
  .table__body-container .bottom__btn,
  .table__body-container .card_body {
    font-size: 1rem;
  }
  .card-wrapper__card {
    width: 25%;
  }
  .container__faq-items-wrapper .accordion-button {
    padding: 1.75rem 2.5rem;
  }
  .container__faq-items-wrapper .accordion-body {
    padding: 0rem 2.5rem 2.5rem 2.5rem;
  }
  .left-block__img-1 img {
    object-position: -22rem center;
  }
  .left-block__img-3 img {
    object-position: -30rem center;
  }
  .container--custom__cards-swiper {
    padding-left: 10rem;
    padding-right: 10rem;
  }
  .testimonial-swiper-container {
    width: 72%;
  }
  .content-wrapper__card:nth-child(2) {
    transform: translateX(3rem) translateY(1rem);
  }
  .content-wrapper__card:nth-child(3) {
    transform: translateY(0);
  }
}
/* ------------------------------------------------------------------------------- */
/* DESKTOP XXL LAYOUT */
/* ------------------------------------------------------------------------------- */
@media (min-width: 1400px) {
  .container--custom {
    max-width: 1320px;
  }
  .container--custom__cards-swiper {
    padding-left: 12rem;
    padding-right: 12rem;
  }
  .content-wrapper__right-block {
    margin-left: auto;
    width: 30%;
  }
  .card-wrapper__card {
    width: 20%;
  }
  .left-block__img-1 img {
    object-position: -16rem center;
  }
  .left-block__img-3 img {
    object-position: -25rem center;
  }
  .front__content {
    height: 36.5%;
  }
}
