/* ------------------------------------------------------------------------------- */
/* 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;
  --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;
  --slightly-dark-gray: #3d3d3d;
  --dark-sage-green: #324d3e;

  --blue-gradient-conferences: linear-gradient(
    274.59deg,
    #003aba 0%,
    #275fdc 99.6%
  );
  --blue-gradient: linear-gradient(
    90deg,
    rgba(1, 98, 187, 0.95) 0%,
    rgba(10, 137, 255, 0.95) 100%
  );
  --blue-gradient-1: linear-gradient(
    90deg,
    rgb(1, 98, 187) 0%,
    rgb(10, 137, 255) 100%
  );
  --orange-gradient: linear-gradient(
    90deg,
    rgba(255, 144, 0, 1) 0%,
    rgba(219, 115, 63, 1) 100%
  );

  --sage-green-gradient: linear-gradient(
    90deg,
    rgba(115, 138, 110, 1) 0%,
    rgba(50, 77, 62, 1) 100%
  );
}
* {
  font-family: "Poppins", sans-serif !important;
}
*::-webkit-scrollbar {
  width: 8px;
}
*::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 35px;
}
*::-webkit-scrollbar-thumb {
  background: var(--powder-blue);
  border-radius: 35px;
}
*::-webkit-scrollbar-button {
  display: none;
}
@supports not selector(::-webkit-scrollbar) {
  * {
    scrollbar-color: var(--powder-blue) transparent;
  }
}
html,
body {
  background-color: var(--white);
  overflow-x: hidden;
}
a:hover,
button:hover {
  cursor: pointer;
}
.year-divider-events__custom {
  width: 100%;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
  color: var(--white);
  background: var(--blue-gradient-1);
  padding: 13px 34px;
  border: none;
  border-radius: 10px;
  margin-bottom: 12px !important;
}
@media (max-width: 767.98px) {
  .modal-content {
    position: fixed;
  }
}
/* ------------------------------------------------------------------------------- */
/* page-new-events-main.php */
/* ------------------------------------------------------------------------------- */
.intro-section {
  background-color: transparent;
}
.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 {
  height: 60%;
}
.intro-section__img-container img {
  object-fit: cover;
}
.intro-section__container {
  background-color: var(--white);
  box-shadow:
    0px 2.77px 2.21px rgba(0, 0, 0, 0.056),
    0px 6.65px 5.32px rgba(0, 0, 0, 0.081);
  border-radius: 28px;
  z-index: 1;
  padding: 20px 20px 30px 20px;
  margin-top: 32px;
}
.container__left-block {
  height: fit-content;
}
.container__left-block h1 {
  font-size: 40px; /* 30px default */
  font-weight: 700;
  line-height: 110%;
  color: var(--black);
}
.container__left-block h2 {
  font-size: 30px;
  font-weight: 700;
  line-height: 110%;
  color: var(--black);
}
.container__left-block h1 span {
  font-weight: 500;
}
.container__left-block h2 span {
  font-weight: 500;
}
.left-block__paragraph {
  font-size: 1rem;
  font-weight: 400;
  line-height: 120%;
  color: var(--gray);
}
.left-block__cards {
  margin-top: 24px;
  gap: 24px;
}
.item__stat-container {
  margin-left: 6px;
}
.stat-container__number {
  font-size: 18px;
  font-weight: 600;
  line-height: 110%;
  color: var(--yinmn-blue);
}
.stat-container__text {
  font-size: 13px;
  font-weight: 400;
  line-height: 100%;
  color: var(--yinmn-blue);
}
.container__right-block {
  height: 20rem;
  border-radius: 24px;
}
.container__right-block img {
  object-fit: cover;
}
.left-block__badge {
  font-size: 13px;
  font-weight: 400;
  line-height: 100%;
  color: var(--yinmn-blue);
  background-color: var(--ghost-white-darker);
  padding: 8px 16px;
  border-radius: 3px;
  width: fit-content;
  top: 22px;
  margin-top: 32px;
}
.badge__left {
  left: 18px;
}
.badge__right {
  right: 18px;
}
.upcoming-events-section {
  background-color: var(--ghost-white);
  padding: 64px 0;
}
.section-margin {
  margin: 3rem 0;
}
.section-heading {
  font-size: 30px;
  font-weight: 600;
  line-height: 110%;
  margin: auto;
}
.section-paragraph {
  font-size: 18px;
  font-weight: 400;
  line-height: 110%;
  margin: auto;
  margin-top: 16px;
}
.upcoming-events-section__slider {
  padding-bottom: 1px;
  margin-top: 68px;
}
.swiper-controls__swiper-btn-container {
  gap: 12px;
}
.swiper-btn-container__swiper-btn-prev,
.swiper-btn-container__swiper-btn-next {
  width: 44px;
  height: 44px;
  background-image: url("https://www.nysora.com/wp-content/uploads/2025/08/small-arrow.svg");
  background-position: center;
  background-size: auto;
  background-repeat: no-repeat;
  background-color: var(--lavander);
  border-radius: 50%;
}
.swiper-btn-container__swiper-btn-prev {
  transform: rotate(180deg);
}
.swiper-controls__pagination {
  font-size: 14px;
  font-weight: 500;
  line-height: 100%;
  color: var(--gray);
}
.swiper-slide-card {
  padding: 14px;
  background-color: var(--white);
  border: 1px solid var(--lavander);
  border-radius: 26px;
  height: stretch;
}
.swiper-slide-card__img-container {
  height: 206px;
  border-radius: 19px;
}
.swiper-slide-card__img-container img {
  object-fit: cover;
}
.img-container__icon {
  width: 20px;
  height: 20px;
}
.img-container__badge {
  font-size: 13px;
  font-weight: 400;
  line-height: 100%;
  padding: 8px 24px;
  color: var(--white) !important;
  background-color: rgba(0, 0, 0, 0.5);
  border: 1px solid var(--ghost-white-darker);
  border-radius: 100px;
  width: fit-content;
  text-decoration: none !important;
  top: 16px;
}
.swiper-slide-card h3 {
  font-size: 18px;
  font-weight: 500;
  line-height: 110%;
  margin-top: 20px;
  height: calc(18px * 1.1 * 2);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.swiper-slide-card__event-location {
  font-size: 12px;
  font-weight: 500;
  line-height: 100%;
  height: 24px;
  color: var(--delft-blue);
  margin-top: 10px;
}
.swiper-slide-card__event-location img {
  margin-right: 8px;
}
.swiper-slide-card__event-date {
  font-size: 12px;
  font-weight: 500;
  line-height: 100%;
  height: 24px;
  color: var(--delft-blue);
  margin-bottom: 74px;
}
.swiper-slide-card__event-date img {
  margin-right: 8px;
}
.swiper-slide-card__register-date-container {
  position: absolute;
  left: 50%;
  bottom: 14px;

  transform: translateX(-50%);

  width: calc(100% - 28px);
}
.swiper-slide-card__register-date-container p {
  font-size: 12px;
  font-weight: 500;
  line-height: 110%;
  color: var(--delft-blue);
}
.swiper-slide-card__register-date-container p img {
  margin-right: 6px;
}
.register-date-container__link {
  font-size: 12px !important;
  font-weight: 500 !important;
  line-height: 110% !important;
  color: var(--delft-blue) !important;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-decoration-color: var(--delft-blue);
}
.main-btn {
  font-size: 12px;
  font-weight: 500;
  line-height: 100%;
  color: var(--white);
  background-color: var(--persian-blue);
  padding: 10px 11px;
  border: none;
  border-radius: 10px;
  white-space: nowrap;
  transition: background-position 0.4s ease;
}
.main-btn__fit-content {
  width: fit-content !important;
  height: fit-content;
}
.yellow-btn {
  color: var(--black);
  background-color: var(--selective-yellow);
}
.register-btn-swiper {
  overflow: hidden;
  position: relative;
  background: var(--persian-blue);
  background-size: 200% 100%;
  font-size: 16px !important;
}
.register-btn-swiper:hover {
  color: #ffffff;
}

.cards-swiper__pagination--highlights {
  width: fit-content !important;
  left: 50% !important;
  transform: translateX(-50%);
}
.register-btn-swiper::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
}
.register-btn-swiper:hover::before {
  animation: shine 0.7s forwards;
}
@keyframes shine {
  0% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}
.swiper-slide-card h3 {
  /*min-height: 44px;*/
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.view-more-btn {
  font-size: 12px;
  font-weight: 500;
  line-height: 110%;
  color: var(--persian-blue);
  background-color: var(--white);
  padding: 10px 16px;
  border: 1px solid var(--powder-blue);
  border-radius: 6px;
  width: fit-content;
  text-decoration: none;
}
.view-more-btn:hover {
  color: var(--white);
  background-color: var(--persian-blue);
  border: 1px solid transparent;
}
.view-more-btn svg {
  color: var(--persian-blue);
  margin-left: 8px;
}
.view-more-btn:hover svg {
  color: var(--white);
}
.educational-events-section {
}
.container__card-wrapper {
  gap: 24px;
  padding-top: 50px;
}
.card-wrapper__card {
  border: 1px solid var(--lavander);
  border-radius: 21px;
}
.swiper-slide__img {
  height: 184px;
  object-fit: cover;
}
.card-wrapper__card .card__img {
  height: 300px;
  object-fit: cover;
}
.card-wrapper__text-wrapper {
  flex: 1;
  padding: 1.5rem;
}
.text-wrapper__heading {
  font-size: 18px;
  font-weight: 600;
  line-height: 110%;
  color: var(--black);
  margin-bottom: 16px;
  overflow: hidden;
  height: 39.6px;
}
.text-wrapper__paragraph {
  font-size: 16px;
  font-weight: 400;
  line-height: 110%;
  color: var(--black);
  margin-bottom: 20px;
  overflow: hidden;
  /*height: 70.4px;*/
}

.camp-info-block {
  background-color: #ffffff;
  border-radius: 14px;
  padding: 30px 15px;
  border: 1px solid #c7c7c7;
  background-image: url("../assets/hero-apps-bg.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.camp-info-block-title {
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 20px;
  line-height: 1.2;
}
.camp-info-block-text {
  padding-left: 25px;
}
.camp-info-block-text ul {
  list-style-type: none;
  padding-left: 0;
}
.camp-info-block-text ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
}
.camp-info-block-text ul li::before {
  position: absolute;
  top: 6px;
  left: 0;
  content: "";
  width: 10px;
  height: 10px;
  border: 2px solid #000000;
  border-radius: 50%;
}
.text-wrapper__btn {
  font-size: 16px;
  font-weight: 500;
  line-height: 110%;
  color: var(--black);
  background-color: var(--ghost-white);
  padding: 13px 23px;
  border: none;
  border-radius: 6px;
  width: fit-content;
  align-self: flex-end;
}
.text-wrapper__btn:hover {
  color: var(--black);
  background-color: var(--ghost-white-darker);
}
.text-wrapper__btn img {
  filter: brightness(0) invert(0);
}
.events-schedule-section {
  background-color: var(--ghost-white);
  padding: 64px 0;
}
.events-schedule-section__filter-sort-btn {
  gap: 8px;
  font-size: 16px;
  font-weight: 500;
  line-height: 110%;
  color: var(--white);
  background-color: var(--persian-blue);
  padding: 16px 25px;
  border: none;
  border-radius: 5px;
  margin-top: 48px;
  margin-bottom: 33px;
}
.events-schedule-section__filter-sort-container {
  padding: 24px 40px;
  background-color: var(--white);
  border: 1px solid var(--powder-blue);
  border-radius: 17px;
  margin-bottom: 32px;
}
.events-schedule-section__events-container {
  background-color: var(--white);
  border: 1px solid var(--ghost-white-darker);
  overflow-y: auto;
  height: 70vh;
}
.btn-events-schedule img.rotated {
  transform: rotate(180deg);
}
.filter-sort-container__heading {
  font-size: 16px;
  font-weight: 600;
  line-height: 110%;
  gap: 8px;
}
.filter-sort-container__separator {
  height: 1px;
  background-color: var(--lavander);
  margin: 30px 0;
}
.filter-sort-container__dropdown-container .dropdown-menu {
  transition: none !important;
}
.dropdown-container__heading {
  font-size: 16px;
  font-weight: 500;
  line-height: 110%;
  color: var(--black);
  margin-bottom: 16px;
}
.dropdown-btn {
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: 110% !important;
  color: var(--black) !important;
  background-color: var(--ghost-white-darker) !important;
  border: 1px solid var(--powder-blue) !important;
  border-radius: 8px !important;
  padding: 16px 18px !important;
  text-decoration: none !important;
}
.dropdown-toggle::after {
  display: none !important;
}
.events-schedule-section__events-container {
  border-radius: 12px;
}
.events-schedule-section__table {
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--powder-blue);
  border-radius: 17px;
  overflow: hidden;
  table-layout: fixed;
  width: 100%;
}
.table__head {
  background-color: var(--persian-blue);

  padding: 1.5rem 2.5rem;
}
.table__main-row {
  font-size: 16px;
  font-weight: 600;
  line-height: 110%;
  color: var(--white);
}
.table__body {
  max-height: 736px;
  overflow-y: auto;
  background-color: var(--white);

  border-top: 1.5rem solid transparent;
  border-bottom: 1.5rem solid transparent;

  padding: 0rem 2.5rem;
}
.table__secondary-row {
  font-size: 16px;
  font-weight: 400;
  line-height: 110%;
  color: var(--black);

  display: flex;
  align-items: start;
}
.secondary-row__first-cell {
  white-space: nowrap;
}
.secondary-row__clamped-text {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5em;
  color: var(--black);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.secondary-row__clamped-text a {
  line-height: 1.5em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
}
.secondary-row__table-badge {
  font-size: 16px;
  font-weight: 400;
  line-height: 110%;
  color: var(--black);
  background-color: var(--ghost-white-darker);
  padding: 5px 12px;
  border-radius: 4px;
  width: fit-content;
  white-space: nowrap;
}
.table-message {
  height: 200px;
}
.secondary-row__image-text-wrapper img {
  margin-right: 10px;
  width: 24px;
  height: 24px;
}
.mb-18 {
  margin-bottom: 18px !important;
}
.mt-18 {
  margin-top: 18px !important;
}
.secondary-row__full-width-cell {
  overflow: hidden;
  margin-top: 20px;
}
.full-width-cell {
  display: block;
  width: 90%;
}
.full-width-cell__btn {
  font-size: 16px;
  font-weight: 500;
  line-height: 110%;
  color: var(--persian-blue);
  background-color: transparent;
  border: none;
}
.full-width-cell__separator {
  height: 1px;
  background-color: var(--lavander);
  margin-top: 12px;
}
.text-yinmn-blue {
  color: var(--yinmn-blue);
}
.swiper-slide-custom {
  width: 287px;
  height: 412px;
  background-position: center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  overflow: hidden;
}
.swiper-slide-custom img {
  width: 100%;
  height: 100%;
  object-position: center;
  object-fit: cover;
}
.event-gallery-swiper {
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
}
.event-gallery-swiper .swiper-slide {
  border-radius: 9.77px;
}
.event-gallery-swiper {
  margin-top: 56px;
}
.swiper-slide-item {
  width: 100%;
  height: 100%;
}
.event-gallery-section__swiper-controls {
  margin-top: 72px;
  gap: 12px;
}
.swiper-controls__swiper-btn-prev,
.swiper-controls__swiper-btn-next {
  width: 44px;
  height: 44px;
  border: 1px solid var(--powder-blue);
  border-radius: 50%;
}
.swiper-controls__swiper-btn-prev:hover,
.swiper-controls__swiper-btn-next:hover {
  background-color: var(--resolution-blue);
}
.arrow {
  color: var(--yinmn-blue);
}
.left-arrow {
  transform: rotate(180deg);
}
.swiper-controls__swiper-btn-prev:hover .arrow,
.swiper-controls__swiper-btn-next:hover .arrow {
  color: var(--white);
}
.world-map-section__image {
  margin-top: 32px;
  width: 110%;
  height: auto;
}
.faq-section {
  margin-bottom: 84px;
}
.faq-section .section-paragraph {
  margin-bottom: 34px;
}
.accordion-item {
  margin-top: 20px;
  border-radius: 9px;
  background-color: var(--white);
  border: 1px solid var(--lavander) !important;
}
.accordion-body {
  padding: 20px 40px 32px 40px;
}
.accordion-button {
  font-size: 18px;
  font-weight: 500;
  line-height: 100%;
  padding: 32px 40px;
}
.accordion-button::after {
  display: none !important;
}
.accordion-btn__icon {
  transition: transform 0.3s ease;
}
.accordion-button:not(.collapsed) .accordion-btn__icon {
  transform: rotate(180deg);
}
.full-width-cell__btn img {
  transform: rotate(0deg);
  transition: transform 0.3s ease;
}
.full-width-cell__btn[aria-expanded="true"] img {
  transform: rotate(180deg);
}
.btn__animation img {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}
.btn__animation:not(.collapsed) img {
  transform: rotate(0deg);
}
.faq-section .accordion-button {
  font-size: 16px;
  font-weight: 500;
  line-height: 110%;
}
.faq-section .accordion-body {
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}
.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);
}
.custom-dots-pagination-container {
  gap: 4px;
  margin-top: 42px;
}
.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: var(--powder-blue);
  border-radius: 50%;
  margin: 0 !important;
}
.swiper-pagination-bullet-active {
  width: 56px;
  border-radius: 50px;
}
.events-schedule-year {
  margin-top: 1rem;
  margin-bottom: 1rem;
  z-index: 9999;
}
.events-schedule-year:first-of-type {
  margin-top: initial;
}
@media (max-width: 460px) {
  .badge__right {
    left: 18px;
    top: 52px;
  }
}
@media (max-width: 767.98px) {
  .events-container__item,
  .events-schedule-year {
    padding: 16px;
  }
  .events-container__btn {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 13px 15px;
  }
  .educational-events-section__slider {
    margin-top: 32px;
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  .section-margin {
    margin-top: 52px;
  }
  .intro-section__container {
    padding: 20px 20px 56px 20px;
  }
  .container__left-block {
    padding: 42px 42px 0 42px;
  }
  .container__left-block h1 {
    font-size: 40px;
  }
  .container__left-block h2 {
    font-size: 34px;
  }
  .left-block__cards {
  }
  .cards__item {
    background-color: var(--ghost-white);
    padding: 16px 24px;
    border-radius: 6px;
  }
  .section-heading {
    font-size: 40px;
    width: 75%;
  }
  .section-paragraph {
    width: 75%;
    margin-top: 16px;
  }
  .upcoming-events-section__slider {
    margin-top: 64px;
  }
  .main-btn {
    font-size: 16px;
    padding: 10px 14px;
  }
  .left-block__badge {
    margin-top: 0;
  }
  .swiper-slide-card {
  }
  .swiper-slide-card h3 {
    font-size: 20px;
    height: calc(20px * 1.1 * 2);
  }
  .swiper-slide-card__event-location {
    font-size: 16px;
    height: 32px;
    margin-top: 12px;
  }
  .swiper-slide-card__event-date {
    font-size: 16px;
    height: 32px;
    margin-bottom: 86px;
  }
  .img-container__icon {
    width: 24px;
    height: 24px;
  }
  .swiper-slide-custom {
    width: 432px !important;
    height: 620px !important;
  }
  .events-schedule-section__filter-sort-container {
    padding: 36px 56px;
  }
  .events-schedule-section__filter-sort-btn {
    margin-top: 70px;
  }
  .swiper-slide-card__register-date-container {
    bottom: 16px;

    width: calc(100% - 32px);
  }
  .swiper-slide-card__register-date-container p {
    font-size: 16px;
  }
  .swiper-slide-card__register-date-container p img {
    margin-right: 8px;
  }
  .swiper-slide-card__register-date-container a {
    font-size: 16px !important;
  }
  .custom-dots-pagination-container {
    margin-top: 56px;
  }
  .educational-events-section__slider {
    margin-top: 68px;
    margin-bottom: 0;
  }
  .events-schedule-section__events-container {
    padding: 47px 53px;
    background-color: var(--white);
    border-radius: 8px;
    height: 737px;
  }
  .event-gallery-swiper {
    margin-top: 56px;
  }
  .world-map-section__image {
    margin-top: 77px;
  }
  .faq-section .accordion-button {
    font-size: 18px;
  }
  .mb-36 {
    margin-bottom: 36px !important;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .intro-section {
    margin-top: 32px;
  }
  .container__right-block {
  }
}
@media (max-width: 991.98px) {
  .mb-16 {
    margin-bottom: 16px;
  }
}
@media (max-width: 991.98px) {
  .secondary-row__clamped-text {
    line-height: 1.5em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
  }
}
@media (min-width: 768px) {
  .container__right-block {
    height: 18rem;
  }
}
@media (min-width: 992px) {
  .section-margin {
    margin-top: 100px;
  }
  .camp-info-block {
    padding: 40px 65px 15px 90px;
  }
  .intro-section .container {
    padding-top: 140px;
    margin-top: 0;
  }
  .intro-section__container {
  }
  .container__left-block {
    padding: 68px 64px;
  }
  .left-block__cards {
    gap: 16px;
  }
  .cards__item {
    padding: 8px 16px;
  }
  .container__right-block {
    height: initial;
  }
  .section-heading {
    width: 100%;
  }
  .section-paragraph {
    width: 100%;
    margin-top: 12px;
  }
  .upcoming-events-section__slider {
    margin-top: 0px;
    margin-bottom: 74px;
  }
  .educational-events-section__slider {
    margin-bottom: 74px;
  }
  .secondary-row__clamped-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 110%;
    min-height: calc(1.1em * 2);
    margin-top: 0;
  }
  .events-schedule-section__filter-sort-container {
    margin-top: 56px;
    margin-bottom: 22px;
  }
  .secondary-row__table-badge {
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
  }
  .event-gallery-swiper {
    position: static;
    left: auto;
    right: auto;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    margin-top: 38px;
  }
  .swiper-slide-custom {
    width: 353px !important;
    height: 506px !important;
  }
  .world-map-section__image {
    margin-top: 50px;
  }
  .view-more-btn {
    font-size: 16px;
    padding: 12px 32px;
  }
  .card-wrapper__text-wrapper {
    padding: 2.25rem 3rem 2.75rem 3rem;
  }
}
@media (min-width: 1200px) {
  .intro-section__container {
  }
  .container__right-block {
  }
  .swiper-slide-custom {
    /*width: 432px !important;
    height: 620px !important;*/
  }
  .camp-info-block {
    padding: 60px 85px 30px 120px;
  }
  .camp-info-block-title {
    font-size: 34px;
    margin-bottom: 40px;
  }
  .camp-info-block-text ul li {
    margin-bottom: 20px;
  }
  .container__left-block {
  }
  .left-block__cards {
    gap: 20px;
  }
  .cards__item {
    padding: 12px 20px;
  }
}
@media (min-width: 1400px) {
  .intro-section__container {
  }
  .container__left-block {
  }
  .container__right-block {
  }
}
/* ------------------------------------------------------------------------------- */
/* page-conferences-overview.php */
/* ------------------------------------------------------------------------------- */
.intro-section__btn-badge-container {
  margin-bottom: 27px;
  position: relative;
  z-index: 3;
}
.btn-badge-container__btn {
  font-size: 16px;
  font-weight: 500;
  line-height: 110%;
  color: var(--black);
  background-color: var(--white);
  padding: 13px 23px;
  border: none;
  border-radius: 6px;
  width: fit-content;
  gap: 20px;
  text-decoration: none;
}
.btn-badge-container__btn:hover {
  color: var(--black);
  background-color: var(--ghost-white-darker);
  border: none;
}
.btn-badge-container__badge {
  font-size: 16px;
  font-weight: 500;
  line-height: 110%;
  color: var(--white);
  background-color: var(--white-glass);
  padding: 14px 20px;
  border-radius: 10px;
  backdrop-filter: blur(40px);
  white-space: nowrap;
}
.blue-badge {
  font-size: 13px !important;
  font-weight: 400;
  line-height: 100%;
  color: var(--yinmn-blue);
  background-color: var(--ghost-white-darker);
  padding: 8px 16px;
  border-radius: 3px;
  width: fit-content;
  top: 22px;
  margin-top: 32px;
}
.blue-badge {
  color: var(--white) !important;
  background: var(--blue-gradient);
}
.conference-overview-section {
  background-color: var(--ghost-white);
  padding-top: 52px;
  padding-bottom: 52px;
}
.conference-overview-section .container {
  height: fit-content;
}
.left-block__img-1 {
  height: 60%;
  border-radius: 23px;
}
.left-block__img-2 {
  height: 40%;
  border-radius: 23px;
}
.left-block__img-3 {
  height: 100%;
  border-radius: 23px;
}
.left-block__img-1 img,
.left-block__img-2 img,
.left-block__img-3 img {
  object-fit: cover;
}
.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: 32px;
}
.video-section img {
  margin-top: 22px;
}
.recent-conferences-section {
  background-color: var(--ghost-white);
  padding-top: 64px;
}
.recent-conferences-section__slider {
  padding-bottom: 1px;
  margin-top: 44px;
  overflow-x: hidden;
}
.swiper-slide-card a {
  font-size: 13px;
  font-weight: 500;
  line-height: 110%;
}
.upcoming-conferences-list-section__btn-container {
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  gap: 12px;
}
.upcoming-conferences-list-section__btn-container::-webkit-scrollbar {
  display: none;
}
.conference-overview-section__left-block {
  height: 35vh;
  margin-bottom: 32px;
}
.upcoming-conferences-list-section__btn-container a {
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  line-height: 110%;
  color: var(--black);
  padding: 13px 15px;
  border-radius: 7px !important;
  border: 1px solid var(--light-blue) !important;
  background: transparent;
  overflow: hidden;
  transition:
    color 0.3s ease,
    border-color 0.3s ease;
}
.upcoming-conferences-list-section__btn-container a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: var(--blue-gradient);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  z-index: -1;
  border: none;
  outline: none;
  box-shadow: none;
  appearance: none;
}
.upcoming-conferences-list-section__btn-container a:hover {
  color: var(--white);
  border-color: transparent;
}
.upcoming-conferences-list-section__btn-container a:hover::before {
  opacity: 1;
}
.btn-container__active {
  margin: 1px;
  color: var(--white) !important;
  background: var(--blue-gradient) !important;
  border: none;
  outline: none;
  box-shadow: none;
  appearance: none;
}
.upcoming-conferences-list-section__item-container {
  height: 55rem;
  overflow-y: auto;
}
.item-container__item {
  margin-bottom: 12px;
  padding: 28px 68px;
  border: 1px solid var(--lavander);
  border-radius: 16px;
}
.upcoming-conferences-list-section__item-container
  .item-container__item:last-child {
  margin-bottom: 0;
}
.content-wrapper__about {
  gap: 24px;
}
.about__badge {
  font-size: 14px;
  font-weight: 500;
  line-height: 100%;
  color: var(--black);
  background-color: var(--ghost-white-darker);
  padding: 12px 20px;
  border-radius: 10px;
  white-space: nowrap;
}
.details__paragraph {
  font-size: 22px;
  font-weight: 500;
  line-height: 120%;
  color: var(--black);
  width: 75%;
}
.details__conference-info {
  margin-top: 12px;
}
.conference-info__wrapper {
  font-size: 14px;
  font-weight: 500;
  line-height: 100%;
  color: var(--yinmn-blue);
  margin-right: 20px;
  gap: 8px;
  white-space: nowrap;
}
.conference-info__wrapper img {
  width: 16px;
  height: 16px;
}
.content-wrapper__btn-wrapper {
  gap: 20px;
}
.btn-wrapper__view-details-btn {
  font-size: 16px;
  font-weight: 500;
  line-height: 110%;
  color: var(--black);
  background-color: var(--ghost-white-darker);
  padding: 13px 18px;
  border: none;
  border-radius: 10px;
  white-space: nowrap;
}
.btn-wrapper__register-btn {
  font-size: 16px;
  font-weight: 500;
  line-height: 110%;
  color: var(--white);
  background: var(--blue-gradient);
  padding: 13px 34px;
  border: none;
  border-radius: 10px;
}
.btn-wrapper__register-btn:hover {
  color: #ffffff;
}
.btn-wrapper__img-btn img {
  width: 16rem;
  height: auto;

  border-radius: 0.75rem;
}
.img-btn__text {
  font-size: 16px;
  font-weight: 500;
  line-height: 110%;
  color: var(--white);
  background: var(--blue-gradient-1);
  padding: 12px 20px;
  border: none;
  border-radius: 10px;

  bottom: 0.5rem;
  right: 0.5rem;
}
.img-btn__text::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
}
.btn-wrapper__img-btn:hover .img-btn__text::before {
  animation: shine 0.7s forwards;
}
@keyframes shine {
  0% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}
.dropdown__btn {
  font-size: 16px;
  font-weight: 500;
  line-height: 110%;
  color: var(--yinmn-blue);
  background-color: transparent;
  margin-top: 36px;
  padding: 13px 0;
  padding-top: 1.5rem;

  border-top: 0.063rem solid var(--lavander);
  border-right: none;
  border-bottom: none;
  border-left: none;
}
.dropdown__btn img {
  transform: rotate(0deg);
  transition: transform 0.3s ease;
}
.dropdown__btn[aria-expanded="true"] img {
  transform: rotate(180deg);
}
.card-body {
  padding-top: 16px !important;
  padding-bottom: 12px !important;
}
.column__img-text-wrapper {
  font-size: 16px;
  font-weight: 500;
  line-height: 110%;
  color: var(--black);
  gap: 12px;
}
.column__img-text-wrapper img {
  width: 16px;
  height: 16 px;
}
.column__list li {
  font-size: 14px;
  font-weight: 400;
  line-height: 160%;
  color: var(--black);
}
.column__paragraph {
  font-size: 14px;
  font-weight: 400;
  line-height: 160%;
  color: var(--black);
}
.column__speakers-wrapper {
  margin-top: 12px;
  gap: 12px;
}
.column__speakers-wrapper img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
}
.speakers-wrapper__text h5 {
  font-size: 14px;
  font-weight: 400;
  line-height: 160%;
  color: var(--black);
}

.accomodation-include img {
  width: 32px;
  height: 32px;
}
.speakers-wrapper__text p {
  font-size: 14px;
  font-weight: 400;
  line-height: 160%;
  color: var(--gray);
}
.btn-container__conference-btn {
  padding: 13px 34px;
  font-size: 16px;
}
.btn-container__conference-secondary-btn {
  font-size: 16px;
  padding: 13px 34px;
  color: var(--black);
  background-color: var(--ghost-white-darker);
}
.conferences-btn-container {
  gap: 16px;
}
.conferences-btn-container a {
  width: 50%;
}
.recent-conferences-section__pagination {
  margin-bottom: 40px;
}
.upcoming-conferences-list-section {
  height: fit-content;
}
#allConferencesSmallSection,
#anesthesiaSmallSection,
#painManagementSmallSection {
  max-height: 70vh;
  padding-bottom: 10px;
}
.border-radius-12 {
  border-radius: 12px;
}
.video-section .container .ratio {
  margin-top: 24px;
}
.events-schedule-section__events-container::-webkit-scrollbar-track {
  margin: 10px 0;
}
@media (min-width: 510px) {
}
@media (min-width: 768px) {
  .blue-badge {
    margin-top: 0;
  }
  .recent-conferences-section__slider {
    margin-top: 32px;
    margin-bottom: 74px;
  }
  .conference-overview-section__left-block {
    width: 100%;
    height: 50vh;
    margin-bottom: 54px;
  }
  .recent-conferences-section__pagination {
    margin: 32px 0;
  }
  .conferences-btn-container a {
    width: 100%;
  }
  .video-section .container .ratio {
    margin-top: 40px;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .conferences-btn-container {
    position: absolute;
    top: 0;
    right: 0;
  }

  .view-more-btn {
    font-size: 16px;
  }
}
@media (min-width: 992px) {
  .recent-conferences-section__slider {
    margin-top: 16px;
    margin-bottom: 74px;
  }
  .conference-overview-section__right-block h3 {
    margin-top: 32px !important;
  }
  .upcoming-conferences-list-section__btn-container {
    margin: 64px 0 !important;
    gap: 10px;
  }
  .recent-conferences-section {
    background-color: var(--ghost-white);
    padding-bottom: 64px;
  }
  .conference-overview-section__left-block,
  .conference-overview-section__right-block {
    width: 50% !important;
  }
  .h-lg-auto {
    height: auto !important;
  }
  .video-section .container .ratio {
    margin-top: 20px;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
}
/* ------------------------------------------------------------------------------- */
/* page-conference-overview.php */
/* ------------------------------------------------------------------------------- */
.swiper--hero-section-swiper .swiper-slide p {
  font-size: 16px;
  font-weight: 500;
  line-height: 110%;
  color: var(--black);
  background-color: var(--white);
  padding: 8px 16px;
  border-radius: 8px;

  right: 16px;
  bottom: 16px;

  z-index: 1;
}
.date__badge {
  right: initial !important;
  bottom: initial !important;
  top: 16px;
  left: 16px;
}
.left-block__info {
  margin-top: 32px;
  gap: 36px;
}
.info__date,
.info__location {
  font-size: 16px;
  font-weight: 500;
  line-height: 110%;
  color: var(--black);
  gap: 12px;
}
.left-block__button-container {
  margin-top: 36px;
}
.button-container__item {
  font-size: 16px;
  font-weight: 500;
  line-height: 110%;
  color: var(--white);
  background: var(--blue-gradient);
  padding: 12px 48px;
  border-radius: 7px;
  width: fit-content;
  position: relative;
  text-wrap: nowrap;
}
.button-container__item:hover {
  color: #ffffff;
}
.button-container__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
}
.button-container__item:hover::before {
  animation: shine 0.7s forwards;
}
.deadline-section__heading {
  font-size: 18px;
  font-weight: 500;
  line-height: 100%;
  color: var(--black);
  margin-bottom: 24px;
}
.deadline-section__timer-container {
  gap: 24px;
}
.item-wrapper__item-wrapper {
  width: 100%;
}
.item-wrapper__item {
  width: 130px;
  height: 130px;
  border-radius: 22px;
  background-color: var(--ghost-white);
}
.item-wrapper__item h3 {
  font-size: 40px;
  font-weight: 600;
  line-height: 110%;
  color: var(--black);
  margin-bottom: 4px;
}
.item-wrapper__item p {
  font-size: 18px;
  font-weight: 500;
  line-height: 100%;
  color: var(--black);
}
.conference-info-section__container-wrapper {
  background-color: var(--white);
  border: 1px solid var(--lavander);
  border-radius: 28px;
  box-shadow:
    0px 2.77px 2.21px rgba(0, 0, 0, 0.056),
    0px 6.65px 5.32px rgba(0, 0, 0, 0.081);
  padding: 44px 48px;
}
.conference-info-section__container-wrapper h4 {
  font-size: 40px;
  font-weight: 600;
  line-height: 100%;
  color: var(--black);
  margin-bottom: 40px;
}
.conference-info-section__container-wrapper p {
  font-size: 16px;
  font-weight: 400;
  line-height: 110%;
  color: var(--black);
  margin-bottom: 24px;
}
.right-container__details {
  line-height: 150%;
  margin-bottom: 0;
}
.container-wrapper__left-container {
  max-height: 19.75rem;
  overflow-y: auto;
}
.container-wrapper__left-container a {
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
  color: var(--black);
  background-color: var(--very-light-blue);
  text-decoration: none;
  border-radius: 10px;
  padding: 13px 18px;
  display: inline-block;
}
.container-wrapper__right-container {
  height: fit-content;
}
.container-wrapper__right-container a {
  font-size: 14px;
  font-weight: 400;
  line-height: 110%;
  color: var(--gray);
  text-decoration: none;
}
.agenda-section__container {
  background-color: var(--white);
  border: 1px solid var(--lavander);
  border-radius: 34px;
}
.agenda-section__info-block {
  box-shadow: rgba(99, 105, 121, 0.25) 0px 4px 25px 0px;
  padding: 36px 32px 24px 32px;
}
.day-btn-wrapper__btn {
  font-size: 16px;
  font-weight: 600;
  line-height: 110%;
  color: var(--yinmn-blue) !important;
  padding: 13px 15px;
  border: 1px solid var(--powder-blue) !important;
  border-radius: 8px !important;
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
}
.day-btn-wrapper__btn.active {
  color: var(--white) !important;
  background-color: var(--medium-dark-blue) !important;
  border: 1px solid transparent !important;
}
.day-btn-wrapper__btn:hover {
  color: var(--white) !important;
  background-color: var(--medium-dark-blue) !important;
  border: 1px solid transparent !important;
}
.btn-wrapper__download-btn {
  font-size: 16px;
  font-weight: 500;
  line-height: 110%;
  color: var(--white);
  background-color: var(--dark-gray);
  padding: 13px 15px;
  border-radius: 8px;
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
  text-decoration: none;
  gap: 12px;
  width: fit-content;
}
.btn-wrapper__download-btn:hover {
  color: var(--white);
  background-color: var(--black);
}
.info-block__right-block {
  padding: 32px 56px;
  /*box-shadow: rgba(99, 105, 121, 0.25) 0px -4px 25px 0px;*/
}
.info-block__right-block a {
  font-size: 16px;
  font-weight: 500;
  line-height: 110%;
  color: var(--black);
  background-color: var(--selective-yellow);
  border: 1px solid var(--dark-yellow);
  border-radius: 8px;
  padding: 12px 36px;
  margin-top: -20px;
  width: fit-content;
  text-wrap: nowrap;
}
.info-block__right-block a img {
  margin-left: 8px;
}
.left-block__btn-wrapper {
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.info-block__left-block h4,
.right-block__registration-info h4 {
  font-size: 30px;
  font-weight: 600;
  line-height: 110%;
  color: var(--black);
  margin-bottom: 12px;
}
.info-block__left-block p {
  font-size: 16px;
  font-weight: 400;
  line-height: 110%;
  color: var(--black);
}
.right-block__registration-info p {
  font-size: 18px;
  font-weight: 500;
  line-height: 100%;
  color: var(--black);
}
.agenda-section__horizontal-separator {
  height: 1px;
  background-color: var(--light-gray);
}
.agenda-section__session-wrapper {
  overflow: hidden;
  padding: 0 32px;
  height: 17rem;

  overflow-y: auto;
  border-top: 2rem solid transparent;
  border-bottom: 2rem solid transparent;
}
.agenda-section__session-wrapper--conferences-single-thumb::-webkit-scrollbar-thumb {
  background-color: var(--medium-dark-blue);
}
.session-wrapper__block {
  height: 100%;
  margin-right: -32px;
  padding-right: 32px;
  box-sizing: content-box;
}
.badge-wrapper__badge {
  font-size: 16px;
  font-weight: 600;
  line-height: 110%;
  color: var(--white);
  background-color: var(--medium-dark-blue);
  border-radius: 8px;
  padding: 12px 16px;
  width: fit-content;

  text-wrap: nowrap;
}
.session-info__time {
  font-size: 18px;
  font-weight: 500;
  line-height: 100%;
  color: var(--gray);
}
.session-block__session-info {
  margin: 40px 0;
}
.session-block__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 110%;
  color: var(--black);
  margin-bottom: 1rem;
}
.session-block__bullet {
  width: 8.44px;
  height: 8.44px;
  background-color: var(--medium-dark-blue);
  border-radius: 50%;
}
.session-block__bullet.secondary {
  background-color: initial;

  border: 0.063rem solid var(--medium-dark-blue);
}
.session-block__bullet.secondary.green {
  background-color: initial;

  border: 0.063rem solid var(--sage-green);
}
.session-wrapper__block::-webkit-scrollbar-track {
  background: transparent;
}
.session-wrapper__block::-webkit-scrollbar-thumb {
  background: var(--medium-dark-blue);
}
.event-section {
  background-color: var(--ghost-white);
  padding: 64px 0;
}
.event-section__logo-wrapper {
  margin-bottom: 24px;
}
.tab-pane__logo-wrapper {
  margin-bottom: 24px;
}
.content__left-block {
}
.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: 110%;
}
.content__right-block a {
  color: var(--persian-blue);
}
.content__right-block .text-bold {
  font-weight: 600;
}
.content__right-block .tab-pane {
  height: fit-content;
}
.blue-badge img {
  margin-right: 12px;
}
.right-block__icon-text-wrapper {
  gap: 20px;
}
.icon-text-wrapper__right-block {
}
.icon-text-wrapper__right-block a,
.icon-text-wrapper__right-block a:hover {
  color: var(--persian-blue);
}
.icon-text-wrapper__right-block .text-medium {
  font-size: 16px;
  font-weight: 500;
  line-height: 110%;
}
.icon-text-wrapper__right-block .text-normal {
  font-size: 14px;
  font-weight: 400;
  line-height: 110%;
  margin-top: 12px;
}
.icon-text-wrapper__right-block .text-gray {
  color: var(--gray);
}
.conference-overview-section h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 110%;
  color: var(--black);
  margin-bottom: 16px;
}
.conference-overview-section__right-block h4 {
  font-size: 20px;
  font-weight: 700;
  line-height: 110%;
  margin-top: 36px;
}
.right-block__download-btn {
  font-size: 16px;
  font-weight: 500;
  line-height: 110%;
  padding: 16px 42px;
  background-color: var(--ghost-white-darker);
  border: 1px solid var(--powder-blue);
  border-radius: 8px;
  width: fit-content;
  margin-top: 32px;
}
.right-block__download-btn img {
  margin-right: 12px;
}
.right-block__img-1 {
  border-radius: 23px;
  height: 60% !important;
}
.right-block__img-2 {
  height: 40% !important;
  border-radius: 23px;
}
.right-block__img-3 {
  border-radius: 23px;
}
.right-block__img-1 img,
.right-block__img-2 img,
.right-block__img-3 img {
  object-fit: cover;
}
.accommodation-info-section__left-block {
  border-radius: 28px;
  margin-bottom: 32px;
}
.accommodation-info-section__left-block,
.accommodation-info-section__right-block {
  width: 100%;
}
.left-block__accommodation-informations img {
  width: 104px;
  height: 104px;
}
.accommodation-informations__text {
}
.accommodation-informations__text h6 {
  font-size: 20px;
  font-weight: 500;
  line-height: 110%;
  margin-bottom: 24px;
}
.accommodation-informations__text p {
  font-size: 16px;
  font-weight: 500;
  line-height: 110%;
  margin-bottom: 16px;
  gap: 16px;
}
.accommodation-informations__text p img,
.left-block__price-info p img {
  width: 24px;
  height: 24px;
}
.left-block__price-info {
  padding: 32px 24px;
  border-radius: 10px;
  background-color: var(--very-light-blue);
  margin: 32px 0;
}
.left-block__price-info p {
  font-size: 16px;
  font-weight: 500;
  line-height: 110%;
  color: var(--persian-blue);
}
.left-block__price-info p span.text-normal {
  font-weight: 400;
}
.left-block__price-info p img {
  margin-left: 16px;
  margin-right: 12px;
}
.price-info__amount {
  font-size: 40px !important;
  font-weight: 600 !important;
  line-height: 110% !important;
  color: var(--black) !important;
}
.left-block_accommodation-btn-wrapper {
}
.left-block_accommodation-btn-wrapper a {
  font-size: 16px;
  font-weight: 500;
  line-height: 110%;
  padding: 18px 16px;
  color: var(--white);
  background: var(--blue-gradient);
  border: 1px solid var(--medium-light-blue);
  border-radius: 8px;
  gap: 12px;
  text-wrap: nowrap;
  width: 80%;
}
.left-block_accommodation-btn-wrapper a.bg-none {
  background: none;
}
.left-block_accommodation-btn-wrapper a img {
  width: 16px;
  height: 16px;
}
.accommodation-info-section__right-block {
  height: 35vh;
}
.pricing-info-section {
  padding: 32px 0;
  background: var(--blue-gradient);
  gap: 32px;
  z-index: 1;
}
.pricing-info-section__first-info p {
  font-size: 18px;
  font-weight: 400;
  line-height: 110%;
  color: var(--white);
  background-color: var(--white-glass);
  padding: 24px 16px;
  border-radius: 12px;
  gap: 12px;
  margin-bottom: 32px;
}
.pricing-info-section__first-info p span {
  font-size: 50px;
  font-weight: 600;
  line-height: 100%;
  color: var(--white);
}
.pricing-info-section__second-info p {
  font-size: 18px;
  font-weight: 400;
  line-height: 110%;
  color: var(--white);
}
.first-info__bigger-text {
  font-size: 40px !important;
  font-weight: 600 !important;
}
.pricing-info-section__btn {
  font-size: 20px;
  font-weight: 500;
  line-height: 110%;
  color: var(--resolution-blue);
  background-color: var(--white);
  padding: 20px 32px;
  border-radius: 7px;
  margin-top: 32px;
  width: fit-content;
}

.container--custom {
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  padding-left: var(--bs-gutter-x, 0.75rem);
  padding-right: 0;
}

.speakers-section {
  padding: 48px 0;
  background-color: var(--ghost-white);
}
.speakers-section__swiper {
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
}
.speakers-section__card {
  padding: 32px 48px;
  border-radius: 20px;
  background-color: var(--white);
}
.speakers-section__card img {
  width: 132px;
  height: 132px;
  border-radius: 50%;
  margin-bottom: 38px;
  object-fit: cover;
}
.speakers-section__card h5 {
  font-size: 20px;
  font-weight: 700;
  line-height: 110%;
  color: var(--black);
}
.speakers-section__card p {
  font-size: 16px;
  font-weight: 400;
  line-height: 110%;
  color: var(--black);
}
.speakers-section__card p.text-gray {
  color: var(--gray);
}
.card__day {
  font-weight: 500 !important;
  padding: 8px 16px;
  border-radius: 4px;
  background-color: var(--ghost-white-darker);
  width: fit-content;
}
.speakers-section__btn {
  font-size: 16px;
  font-weight: 500;
  line-height: 110%;
  color: var(--persian-blue);
  background-color: var(--white);
  border: 1px solid var(--powder-blue);
  border-radius: 6px;
  padding: 12px 60px;
  width: fit-content;
  text-wrap: nowrap;
}
.speakers-section__btn:hover {
  color: var(--white);
  background-color: var(--persian-blue);
  border: 1px solid transparent;
}
.speakers-section__btn:hover path {
  stroke: var(--white);
}
.expand-btn__arrow-icon {
  transition: transform 0.3s ease;
}
.expand-btn__arrow-icon.rotated {
  transform: rotate(180deg);
}
.row__child {
  height: unset;
}
.row__child:last-of-type {
  margin-right: 0 !important;
}
.speakers-section__row {
  margin-top: 20px;
}
#facultyModal .modal-content {
  border-radius: 1.25rem;
  border: 0;
}
#facultyModal .modal-body {
  padding-top: 2rem;
}
#facultyModalImg {
  width: 7.5rem;
  height: 7.5rem;
  object-fit: cover;
}
#facultyModal .modal-footer {
  border-top: 0;
  padding-bottom: 2rem;
}
@media (max-width: 348px) {
  .intro-section__container {
    padding: 20px 12px 30px 12px;
  }
  .container__left-block {
    padding: 0;
  }
}
@media (min-width: 576px) {
  .container--custom {
    max-width: calc(540px + ((100% - 540px) / 2));
  }
  .cards-swiper__pagination--highlights {
    left: calc(50% - ((100vw - 540px) / 4)) !important;
  }
  .left-block_accommodation-btn-wrapper a {
    width: 50%;
  }
}
@media (min-width: 768px) {
  .container--custom {
    max-width: calc(720px + ((100% - 720px) / 2));
  }
  .cards-swiper__pagination--highlights {
    left: calc(50% - ((100vw - 720px) / 4)) !important;
  }
  .deadline-section__heading {
    margin-bottom: 20px;
  }
  .container-wrapper__left-container {
    max-height: 16.5rem;
  }
  .container-wrapper__left-container,
  .container-wrapper__right-container {
    width: 100%;
  }
  .agenda-section__info-block {
    padding: 44px 48px 36px 48px;
  }
  .info-block__left-block {
  }
  .info-block__left-block,
  .info-block__right-block {
    width: 100%;
  }
  .info-block__left-block h4,
  .right-block__registration-info h4 {
    font-size: 40px;
  }
  .info-block__left-block p {
    font-size: 1rem;
    font-weight: 400;
  }
  .item-wrapper__item-wrapper {
    width: fit-content;
  }
  .session-block__text {
    font-size: 1rem;
  }
  .session-info__time {
    margin-left: 32px;
  }
  .agenda-section__session-wrapper {
    height: 18rem;
    padding: 0px 44px;
  }
  .session-wrapper__block {
    margin-right: -44px;
    padding-right: 44px;
  }
  .info-block__right-block {
    padding: 44px 36px;
  }
  .right-block__img-3 {
    height: 100%;
  }
  .left-block__links {
    gap: 36px;
  }
  .content__left-block h2 {
    margin-bottom: 32px;
  }
  .left-block__horizontal-separator {
    margin: 32px 0;
  }
  .event-section__logo-wrapper {
    margin-top: 32px;
    margin-bottom: 0;
  }
  .tab-pane__logo-wrapper {
    margin-top: 32px;
    margin-bottom: 0;
  }
  .conference-overview-section h3 {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 20px;
  }
  .conference-overview-section__badge {
    margin-bottom: 20px;
  }
  .conference-overview-section-padding {
    padding: 66px 0;
  }
  .conference-overview-section__right-block h4 {
    margin-top: 44px;
  }
  .right-block__download-btn {
    margin-top: 44px;
  }
  .accommodation-info-section__left-block {
    border: 1px solid var(--lavander);
    padding: 20px 32px 40px 32px;
  }
  .accommodation-info-section__right-block {
    height: 50vh;
  }
  .accommodation-informations__text {
    padding-top: 40px;
  }
  .accommodation-info-section__left-block,
  .accommodation-info-section__right-block {
  }
  .left-block__price-info {
  }
  .left-block__price-info {
    padding: 24px 40px;
  }
  .speakers-section__row {
    margin-top: 40px;
  }
  .row__child {
  }
  .speakers-section {
    padding: 60px 0;
  }
  .left-block_accommodation-btn-wrapper a {
    width: fit-content;
  }
}
@media (min-width: 992px) {
  .container--custom {
    margin-right: auto;
    max-width: 960px;
    padding-right: var(--bs-gutter-x, 0.75rem);
  }
  .cards-swiper__pagination--highlights {
    left: 50% !important;
    transform: translateX(-50%);
  }
  .container--custom__cards-swiper {
    padding-left: 4.25rem;
    padding-right: 4.25rem;
  }
  .deadline-section__heading {
    margin-bottom: 24px;
  }
  .conference-info-section__container-wrapper {
    padding: 0;
  }
  .container-wrapper__left-container {
    max-height: initial;

    width: 60%;
  }
  .container-wrapper__right-container {
    /*border-left: 1px solid var(--blue-1);*/
  }
  .info-block__left-block {
    padding-bottom: 0;
    width: 70%;
  }
  .container-wrapper__right-container {
    width: 40%;
  }
  .info-block__right-block {
    padding: 0;
    width: 30%;
    box-shadow: none;
  }
  .right-block__registration-info {
    margin-bottom: 40px;
  }
  .info-block__left-block p {
    font-weight: 400;
  }
  .agenda-section__info-block {
    padding: 64px 72px 44px 64px;
  }
  .session-block__text {
    margin-bottom: 24px;
  }
  .session-info__time {
    margin-left: 0;
  }
  .agenda-section__session-wrapper {
    height: 22rem;
    padding: 0.75rem 72px;
  }
  .session-wrapper__block {
    margin-right: -72px;
    padding-right: 72px;
  }
  .conference-info-section__container-wrapper {
    padding: 44px 80px;
  }
  .left-block__links {
    gap: 0;
  }
  .links__item img {
    transform: rotate(0deg);
  }
  .links__item.active img {
    transform: rotate(-90deg);
  }
  .content__left-block h2 {
    margin-bottom: 40px;
  }
  .links__item {
    margin-bottom: 32px;
  }
  .event-section__logo-wrapper {
    margin-top: 0;
    margin-bottom: 40px;
  }
  .tab-pane__logo-wrapper {
    margin-top: 0;
    margin-bottom: 40px;
  }
  .event-section__content {
  }
  .right-block__icon-text-wrapper {
    margin-top: 32px !important;
  }
  .conference-overview-section h3 {
    margin-bottom: 32px;
  }
  .conference-overview-section__left-block {
    height: 35rem;
    margin-bottom: 0;
  }
  .conference-overview-section-padding {
    padding: 52px 0;
  }
  .conference-overview-section__right-block h4 {
    margin-top: 56px;
  }
  .right-block__download-btn {
    margin-top: 32px;
  }
  .accommodation-informations__text {
    padding-top: 40px;
  }
  .accommodation-info-section__left-block,
  .accommodation-info-section__right-block {
    width: 50%;
  }
  .accommodation-info-section__right-block {
    margin-bottom: 32px;
    height: initial;
  }
  .pricing-info-section__btn {
    font-weight: 700;
  }
  .pricing-info-section__first-info p {
    margin-bottom: 0;
  }
  .row__child {
  }
  .speakers-section {
    padding: 104px 0;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
}
/* ------------------------------------------------------------------------------- */
/* page-symposiums-overview.php */
/* ------------------------------------------------------------------------------- */
.orange-lg-bg {
  background: var(--orange-gradient) !important;
}
.light-yellow-bg {
  background-color: var(--light-yellow);
}
.dark-gray-text {
  color: var(--dark-gray);
}
.view-more-btn__yellow {
  color: var(--black);
  border: 1px solid var(--selective-yellow);
}
.view-more-btn__yellow:hover {
  color: var(--black);
  background-color: var(--selective-yellow);
  border: 1px solid transparent;
}
.view-more-btn__yellow svg {
  color: var(--black);
}
.view-more-btn__yellow:hover svg {
  color: var(--black);
}
.btn-container__active-1 {
  color: var(--white) !important;
  background: var(--orange-gradient) !important;
}
.orange-btn {
  background-color: transparent !important;
  border: 1px solid var(--very-light-orange) !important;
}
.orange-btn:hover {
  color: var(--white) !important;
  background: var(--orange-gradient) !important;
  border: 1px solid transparent !important;
}
.register-btn-1 {
  background: var(--orange-gradient);
}
.very-light-orange {
  background-color: var(--very-light-orange);
}
.dark-orange {
  color: var(--dark-orange) !important;
}
.very-light-orange-border {
  border: 1px solid var(--very-light-orange);
}
.dark-yellow-bg {
  background-color: var(--dark-yellow);
}
.light-yellow-border {
  border: 1px solid var(--light-yellow);
}
.swiper-controls__swiper-btn-prev.swiper-btn__orange,
.swiper-controls__swiper-btn-next.swiper-btn__orange {
  border: 1px solid var(--light-orange);
}
.swiper-controls__swiper-btn-prev.swiper-btn__orange svg path,
.swiper-controls__swiper-btn-next.swiper-btn__orange svg path {
  color: var(--dark-orange);
}
.swiper-controls__swiper-btn-prev.swiper-btn__orange:hover,
.swiper-controls__swiper-btn-next.swiper-btn__orange:hover {
  background-color: var(--dark-orange);
  border: 1px solid transparent;
}
.swiper-controls__swiper-btn-prev.swiper-btn__orange:hover svg path,
.swiper-controls__swiper-btn-next.swiper-btn__orange:hover svg path {
  color: var(--white);
}
@media (min-width: 768px) {
  .light-yellow-md-bg {
    background-color: var(--light-yellow);
  }
}
/* ------------------------------------------------------------------------------- */
/* page-symposium-overview.php */
/* ------------------------------------------------------------------------------- */
.orange-bg {
  background: none;
  background-color: var(--orange);
}
.right-container__separator {
  width: 100%;
  height: 1px;
  background-color: var(--light-gray);
}
.container-wrapper__left-container h2 {
  font-size: 40px;
  font-weight: 500;
  line-height: 100%;
  color: var(--black);
  margin-bottom: 24px;
}
.container-wrapper__left-container h4 {
  font-size: 30px;
  font-weight: 500;
  line-height: 110%;
  color: var(--black);
}
.container-wrapper__left-container p,
.container-wrapper__right-container ul li {
  font-size: 16px;
  font-weight: 400;
  line-height: 110%;
  color: var(--black);
}
.container-wrapper__right-container h3 {
  font-size: 20px;
  font-weight: 500;
  line-height: 110%;
  color: var(--black);
  margin-top: 40px;
  margin-bottom: 16px;
}
.benefits-section {
  background-color: var(--light-yellow);
  padding: 48px 0;
}
.container__benefits-card {
  background-color: var(--white);
  padding: 36px 24px;
  border: 1px solid var(--very-light-orange);
  border-radius: 17px;
}
.container__benefits-card img {
  width: 40px;
  height: 40px;
  margin-bottom: 32px;
}
.container__benefits-card h5 {
  font-size: 24px;
  font-weight: 500;
  line-height: 110%;
  color: var(--black);
  margin-bottom: 12px;
}
.container__benefits-card p {
  font-size: 16px;
  font-weight: 400;
  line-height: 110%;
  color: var(--gray);
}
.day-btn__active.active-yellow {
  color: var(--white) !important;
  background-color: var(--selective-yellow) !important;
  border: 1px solid transparent !important;
}
.day-btn-wrapper__btn.btn__orange {
  color: var(--dark-orange);
  border: 1px solid var(--orange);
}
.day-btn-wrapper__btn.btn__orange:hover {
  color: var(--white);
  background-color: var(--selective-yellow);
  border: 1px solid transparent;
}
.session-block__bullet.bullet__yellow {
  background-color: var(--selective-yellow);
}
.session-wrapper__block.block__yellow-scroll::-webkit-scrollbar-thumb {
  background: var(--selective-yellow);
}
.dark-orange-border {
  border: 1px solid var(--dark-orange);
}
.orange {
  color: var(--orange);
}
.orange:hover {
  color: var(--white);
  background-color: var(--orange);
}
.orange:hover svg path {
  color: var(--orange);
}
.sponsors-section__logo-container {
  margin: 76px 0;
}
.sponsors-section p {
  font-size: 18px;
  font-weight: 500;
  line-height: 100%;
  gap: 32px;
}
.sponsors-section a {
  font-size: 16px;
  font-weight: 500;
  line-height: 110%;
  color: var(--white);
  background: var(--orange-gradient);
  padding: 16px 24px;
  border-radius: 8px;
}
.active-btn {
  background-color: #e5e5e5;
}
@media (min-width: 768px) {
  .right-container__separator {
    width: 70%;
  }
  .very-light-orange-md-border {
    border: 1px solid var(--very-light-orange);
  }
  .container-wrapper__left-container h4 {
    font-size: 40px;
  }
}
@media (min-width: 992px) {
  .container-wrapper__left-container h4 {
    font-size: 40px;
    font-weight: 600;
  }
}
/* ------------------------------------------------------------------------------- */
/* page-workshops-overview.php */
/* ------------------------------------------------------------------------------- */
.bg-light-blue {
  background-color: var(--light-blue) !important;
}
.bg-blue {
  background-color: var(--blue) !important;
}
.bg-very-light-blue {
  background-color: var(--very-light-blue);
}
.view-more-btn__workshops {
  color: var(--black);
  background-color: var(--white);
  border: 1px solid var(--medium-dark-blue);
}
.view-more-btn__workshops:hover {
  color: var(--white);
  background-color: var(--medium-dark-blue);
  border: 1px solid transparent;
}
.view-more-btn__workshops svg {
  color: var(--black);
  margin-left: 8px;
}
.view-more-btn__workshops:hover svg {
  color: var(--white);
}
.btn-wrapper__badge {
  font-size: 18px;
  font-weight: 500;
  line-height: 100%;
  color: var(--black);
  padding: 12px 24px;
  border: 1px solid var(--medium-light-blue);
  border-radius: 10px;
}
.text-medium-dark-blue {
  color: var(--medium-dark-blue);
}
.bg-light-gray {
  background-color: var(--light-gray);
}
.bg-gray {
  background: none;
  background-color: var(--gray);
}
.bg-gray:hover {
  color: var(--white);
}
.text-gray {
  color: var(--gray);
}
.border-ghost-white-darker {
  border: 1px solid var(--ghost-white-darker);
}
@media (min-width: 768px) {
  .bg-md-light-blue {
    background-color: var(--very-light-blue);
  }
}
@media (min-width: 992px) {
  .border-right-blue {
    border-right: 1px solid var(--blue);
  }
}
/* ------------------------------------------------------------------------------- */
/* page-bootcamps-overview.php */
/* ------------------------------------------------------------------------------- */
.bg-sage-green-gradient {
  background: var(--sage-green-gradient);
}
.bg-very-light-sage-green {
  background-color: var(--very-light-sage-green) !important;
}
.bg-sage-green {
  background-color: var(--sage-green);
}
.view-more-btn__bootcamps {
  color: var(--black);
  background-color: var(--white);
  border: 1px solid var(--sage-green);
}
.view-more-btn__bootcamps:hover {
  color: var(--white);
  background-color: var(--sage-green);
  border: 1px solid transparent;
}
.view-more-btn__bootcamps svg {
  color: var(--black);
  margin-left: 8px;
}
.view-more-btn__bootcamps:hover svg {
  color: var(--white);
}
.text-darker-sage-green {
  color: var(--darker-sage-green);
}
.swiper-controls__swiper-btn-prev.swiper-btn__sage-green,
.swiper-controls__swiper-btn-next.swiper-btn__sage-green {
  border: 1px solid var(--sage-green);
}
.swiper-controls__swiper-btn-prev.swiper-btn__sage-green svg path,
.swiper-controls__swiper-btn-next.swiper-btn__sage-green svg path {
  color: var(--darker-sage-green);
}
.swiper-controls__swiper-btn-prev.swiper-btn__sage-green:hover,
.swiper-controls__swiper-btn-next.swiper-btn__sage-green:hover {
  background-color: var(--sage-green);
  border: 1px solid transparent;
}
.swiper-controls__swiper-btn-prev.swiper-btn__sage-green:hover svg path,
.swiper-controls__swiper-btn-next.swiper-btn__sage-green:hover svg path {
  color: var(--white);
}
.img-container__img-wrapper {
  width: 18rem;
  height: 100%;
  border-radius: 15px;
  background-color: var(--sage-green);
}
.img-container__img-wrapper img {
  top: -2rem;
  left: -4rem;
  width: 150%;
  height: 150%;
  object-fit: contain;
}
.instructor-section {
  z-index: 1;
}
.instructor-section__text-wrapper h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 110%;
  color: var(--black);
  margin-bottom: 20px;
}
.instructor-section__text-wrapper p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 120%;
  color: var(--black);
}
.upcoming-bootcamps-section__table {
  border: 1px solid var(--powder-blue);
  border-radius: 17px;
  margin-top: 32px;
}
.text-darker-sage-green {
  color: var(--darker-sage-green);
}
.text-darker-sage-green:hover {
  color: var(--white);
  background-color: var(--darker-sage-green);
}
.table__head-row {
  background-color: var(--darker-sage-green);
}
.table__head-row > * {
  font-size: 16px;
  font-weight: 600;
  line-height: 110%;
  color: var(--white);
}
.table__body-container {
  height: 55rem;
  overflow-y: auto;
  overflow-x: hidden;
  gap: 32px;
}
.body-container__badge {
  font-size: 16px;
  font-weight: 600;
  line-height: 110%;
  color: var(--white);
  padding: 12px 48px;
  width: fit-content;
  border-radius: 8px;
  margin: 36px auto;
}
.body-container__item {
  font-size: 16px;
  font-weight: 400;
  line-height: 110%;
  color: var(--black);
}
.item__first-col {
  font-size: 16px;
  font-weight: 700;
  line-height: 110%;
  color: var(--darker-sage-green);
}
.item__second-col {
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 20px;
}
.item__second-col p {
  line-height: 1.5em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
}
.item__fifth-col p {
  font-weight: 500;
  padding: 8px 12px;
  background-color: var(--very-light-sage-green);
  border-radius: 4px;
}
.item__sixth-col {
  width: 50%;
}
.item__sixth-col a {
  font-size: 16px;
  font-weight: 500;
  line-height: 110%;
  color: var(--white);
  background-color: var(--dark-gray);
  padding: 12px 20px;
  border-radius: 8px;
}
.item__sixth-col a img {
  margin-right: 12px;
}
.item__seventh-col a {
  font-size: 16px;
  font-weight: 500;
  line-height: 110%;
  color: var(--white);
  background-color: var(--sage-green);
  padding: 15px 20px;
  border-radius: 8px;
}
.right-block__download-agenda-btn {
  font-size: 16px;
  font-weight: 500;
  line-height: 110%;
  color: var(--white);
  background-color: var(--dark-gray);
  padding: 12px 20px;
  border-radius: 8px;
  width: fit-content;
}
.right-block__download-agenda-btn img {
  margin-right: 12px;
}
.table__body-container::-webkit-scrollbar-track {
  margin: 20px 0;
}
.right-block__paragraph {
  font-size: 1rem;
  font-weight: 400;
  line-height: 120%;
  color: var(--black);
  margin-top: 16px;
}
@media (max-width: 767.98px) {
  .instructor-section__img-container {
    overflow: hidden;
  }
  .camp-info-block-text ul li {
    font-size: 14px;
  }
  .camp-info-block-text {
    padding-left: 10px;
  }

  .camp-info-block-text ul li::before {
    width: 8px;
    height: 8px;
    border: 1px solid #000000;
  }
  .instructor-section__text-wrapper {
    width: 100%;
  }
  .right-block__download-agenda-btn {
    margin-top: 32px;
  }
}
@media (min-width: 768px) {
  .bg-md-very-light-sage-green {
    background-color: var(--very-light-sage-green);
  }
  .img-container__img-wrapper {
  }
  .instructor-section__text-wrapper h2 {
    font-size: 30px;
  }
  .item__sixth-col {
    width: 100%;
  }
  .instructor-section {
    overflow: hidden;
  }
  .instructor-section__text-wrapper {
    width: 50%;
  }
  .right-block__download-agenda-btn {
    position: absolute;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .text-md-sage-green-gradient {
    background: linear-gradient(
      to right,
      rgba(115, 138, 110, 1),
      rgba(50, 77, 62, 1)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .right-block__paragraph {
    margin-top: 20px;
    font-size: 18px;
  }
  .mt-md-2 {
    margin-top: 8px;
  }
}
@media (max-width: 991.98px) {
  .btn-container__bootcamps {
    padding: 13px 34px;
  }
  .item__sixth-col a {
    font-size: 16px;
    font-weight: 500;
    line-height: 100%;
    padding: 10px 18px;
  }
  .item__sixth-col a img {
    margin-left: 12px;
    margin-right: 0;
  }
  .my-20 {
    margin: 20px 0;
  }
  .mb-md-32 {
    margin-bottom: 32px;
  }
}
@media (min-width: 992px) {
  .border-right-sage-green {
    border-right: 1px solid var(--sage-green);
  }
  .img-container__img-wrapper {
    width: 25rem;
    height: 34rem;
  }
  .img-container__img-wrapper img {
    top: -3rem;
    left: -5rem;
  }
  .right-block__download-agenda-btn {
    top: -0.5rem !important;
  }
  .instructor-section__text-wrapper h2 {
    font-size: 40px;
  }
  .table__head-row {
    padding: 24px 32px;
  }
  .table__body-container {
    padding: 32px;
  }
  .table__head-row > *,
  .body-container__item,
  .body-container__badge,
  .item__first-col,
  .item__sixth-col a,
  .item__seventh-col a,
  .card-body__custom-font-size {
    font-size: 14px;
  }
  .item__sixth-col {
    width: initial;
  }
  .item__sixth-col a {
    padding: 12px 16px;
  }
  .item__seventh-col a {
    padding: 17px 16px;
  }
  .item__fifth-col p {
    padding: 8px 10px;
  }
  .table__body-container .full-width-cell__btn,
  .table__body-container .card_body {
    font-size: 14px;
  }
}
@media (min-width: 1200px) {
  .container--custom {
    max-width: 1140px;
  }
  .container--custom__cards-swiper {
    padding-left: 10rem;
    padding-right: 10rem;
  }
  .table__head-row {
    padding: 24px 56px;
  }
  .table__body-container {
    padding: 32px 56px;
  }
  .table__head-row > *,
  .body-container__item,
  .body-container__badge,
  .item__first-col,
  .item__sixth-col a,
  .item__seventh-col a,
  .card-body__custom-font-size {
    font-size: 16px;
  }
  .item__sixth-col a {
    padding: 12px 20px;
  }
  .item__seventh-col a {
    padding: 15px 20px;
  }
  .item__fifth-col p {
    padding: 8px 12px;
  }
  .table__body-container .full-width-cell__btn,
  .table__body-container .card_body {
    font-size: 16px;
  }
}
@media (min-width: 1400px) {
  .container--custom {
    max-width: 1320px;
  }
  .container--custom__cards-swiper {
    padding-left: 12rem;
    padding-right: 12rem;
  }
}
/* ------------------------------------------------------------------------------- */
/* page-workshop-overview.php */
/* ------------------------------------------------------------------------------- */
.what-is-included-section {
  padding: 72px 0;
}
.what-is-included-section__container {
  padding: 0 48px;
}
.what-is-included-section h1 {
  font-size: 40px;
  font-weight: 700;
  line-height: 110%;
  color: var(--black);
  margin-bottom: 52px;
}
.items-wrapper__container p {
  font-size: 18px;
  font-weight: 500;
  line-height: 100%;
  color: var(--black);
}
.container__items-wrapper {
  gap: 36px;
}
.items-wrapper__container {
  gap: 36px;
}
.bg-medium-dark-blue {
  background-color: var(--medium-dark-blue);
}
.bg-blue-1 {
  background-color: var(--blue-1);
}
.bg-persian-blue {
  background-color: var(--persian-blue);
}
.text-persian-blue {
  color: var(--persian-blue);
}
.bg-blue-gradient {
  background: var(--blue-gradient);
}
.bg-ghost-white-darker {
  background-color: var(--ghost-white-darker) !important;
}
@media (min-width: 992px) {
  .border-right-blue-1 {
    border-right: 1px solid var(--blue-1);
  }
  .what-is-included-section__container {
    gap: 0;
  }
  .what-is-included-section {
    padding: 48px;
  }
}
/* ------------------------------------------------------------------------------- */
/* Livestreaming */
/* ------------------------------------------------------------------------------- */
.lsc-content-wrapper {
  padding: 0.875rem;
  border-radius: 1.5rem;

  gap: 1.75rem;

  border: 1px solid var(--lavander);
}
.lsc-content-wrapper__left-block {
  width: 100%;
  height: 12.5rem;
  border-radius: 1rem;
}
.lsc-content-wrapper__right-block {
  width: 100%;
  padding: 0 0.625rem;
}
.lsc-content-wrapper__left-block img {
  object-fit: cover;
}
/*
.lsc-content-wrapper__right-block h1 {
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 110%;
  color: var(--black);
  margin-bottom: 0.5rem;
}
*/
.lsc-content-wrapper__right-block h2 {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 110%;
  color: var(--dark-gray);
  margin-bottom: 0.75rem;
}
.lsc-content-wrapper__right-block p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 110%;
  color: var(--dark-gray);
  margin-bottom: 1rem;
}
.lsc-content-wrapper__right-block ul {
  margin-bottom: 1.75rem;
  list-style-position: inside;
  padding-left: 0;
}
.lsc-content-wrapper__right-block ul li {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 110%;
  color: var(--slightly-dark-gray);
}
.right-block__price-btn-wrapper {
  flex-direction: column;
  gap: 0.75rem;
}
.price-btn-wrapper__price-wrapper {
  font-size: 1.875rem;
  font-weight: 500;
  line-height: 110%;
  color: var(--black);
}
.price-btn-wrapper__price-wrapper span {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 110%;
  color: var(--slightly-dark-gray);
}
.price-btn-wrapper__btn {
  font-size: 1rem;
  font-weight: 500;
  line-height: 110%;
  color: var(--white);
  background-color: var(--persian-blue);
  border-radius: 0.75rem;
  padding: 1.125rem 1.75rem;

  gap: 0.75rem;

  width: fit-content;
}
.price-btn-wrapper__btn:hover {
  color: var(--white);
  background-color: var(--black);
}
@media (min-width: 400px) {
  .right-block__price-btn-wrapper {
    flex-direction: row;
  }
}
@media (min-width: 768px) {
  .lsc-content-wrapper__left-block {
    width: 40%;
    height: 26.25rem;
  }
  .lsc-content-wrapper__right-block {
    width: 60%;
    padding: 0;
  }
  .lsc-content-wrapper__right-block h2 {
    margin-bottom: 1rem;
  }
  .lsc-content-wrapper__right-block p {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
  }
  .lsc-content-wrapper__right-block ul {
    margin-bottom: 2rem;
  }
  .right-block__price-btn-wrapper {
    gap: 1.25rem;
  }
}
@media (min-width: 992px) {
  .lsc-content-wrapper {
    border-radius: 2rem;
    gap: 2.75rem;
  }
  .lsc-content-wrapper__right-block {
    padding: 1.125rem;
  }
  .lsc-content-wrapper__left-block {
    width: 50%;
    height: 28.75rem;
  }
  .lsc-content-wrapper__right-block {
    width: 50%;
  }
  .lsc-content-wrapper__right-block ul {
    margin-bottom: 2.25rem;
  }
  .right-block__price-btn-wrapper {
    gap: 1.5rem;
  }
}
/* ------------------------------------------------------------------------------- */
/*  */
/* ------------------------------------------------------------------------------- */
.includes-title {
  display: inline;
  margin-right: 15px;
}
.accomodation-include {
  display: inline;
}

.disabledagenda {
  background-color: #a1a1a1 !important;
  pointer-events: none;
}
/* ------------------------------------------------------------------------------- */
/* NEW Bootcamps Overview */
/* ------------------------------------------------------------------------------- */
.container__heading {
  margin-bottom: 2.75rem;
}
.section-margin {
  margin: 3rem 0;
}
.container__heading h1,
.section-heading {
  font-size: 1.625rem !important;
  font-weight: 600;
  line-height: 110%;
  color: var(--black);
  margin-bottom: 1rem;
}
.container__heading h2 {
  font-size: 1rem;
  font-weight: 400;
  line-height: 110%;
  color: var(--black);
  margin-bottom: 1rem;
}
.container__heading ul li {
  width: fit-content;
}
.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: 80%;
  text-align: center;
}
.agenda-section__session-wrapper--sage-green-thumb::-webkit-scrollbar-thumb {
  background-color: var(--dark-sage-green);
}
.day-btn-wrapper__btn.border-color-sage-green {
  color: var(--dark-sage-green) !important;
  border-color: var(--sage-green) !important;
}
.day-btn-wrapper__btn.bg-color-sage-green:hover {
  color: var(--white) !important;
  background-color: var(--sage-green) !important;
}
.day-btn-wrapper__btn.bg-color-sage-green.active {
  color: var(--white) !important;
  background-color: var(--sage-green) !important;
}
.badge-wrapper__badge.bg-color-sage-green {
  background-color: var(--sage-green) !important;
}
.session-block__bullet.bg-color-sage-green {
  background-color: var(--sage-green) !important;
}
.right-block__list {
  font-size: 1rem;
  font-weight: 400;
  line-height: 120%;
  color: var(--black);
  width: fit-content;
}
.container__card-wrapper {
  gap: 0.75rem;
  width: 100%;
  margin: 0 auto;
}
.card-wrapper__item {
  width: 100%;
  border-radius: 1.5rem;
  box-shadow:
    0px 2.77px 2.21px 0px rgba(0, 0, 0, 0.0084),
    0px 6.65px 5.32px 0px rgba(0, 0, 0, 0.0121),
    0px 12.52px 10.02px 0px rgba(0, 0, 0, 0.015),
    0px 22.34px 17.87px 0px rgba(0, 0, 0, 0.0179),
    0px 41.78px 33.42px 0px rgba(0, 0, 0, 0.0216),
    0px 100px 80px 0px rgba(0, 0, 0, 0.03);
}
.card-wrapper__item img {
  width: 100%;
  height: 13rem;
  border-radius: 0.5rem;
  margin-bottom: 1.25rem;
  object-fit: cover;
}
.card-wrapper__item h3 {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.1;
  color: var(--black);
  height: calc(1.1em * 2);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-wrapper__item p {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.1;
  color: var(--delft-blue);
}
.upcoming-workshops-table {
  z-index: 1;
}
.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(--sage-green-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: 1.3;
  color: var(--black);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-decoration: none;
  height: calc(1.125rem * 1.3 * 2);
}
.item__event-name:hover {
  color: var(--black);
}
.item__meta {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.3;
  color: var(--dark-sage-green);
  gap: 0.75rem;
}
.item__register-link {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.1;
  color: var(--white);
  background: var(--sage-green-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);
}
.bottom__btn {
  font-size: 1rem;
  font-weight: 500;
  line-height: 110%;
  color: var(--dark-sage-green);
  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;
}
.container__is-swiper-wrapper {
}
.illustrationSwiper {
  border-radius: 2rem;
}
.illustration-img-parent {
  background: linear-gradient(135.61deg, #ffffff -12.57%, #8ea58b59 51.92%);
  border-radius: 2rem;
  height: 14rem;
}
.illustration-img {
  overflow: hidden;
  border-radius: calc(2rem - 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%, #8ea58b59 51.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__ellipse {
  top: -16rem;
  left: -24rem;

  width: 36rem;
  height: 22.25rem;
  border-radius: 50%;
  background: linear-gradient(
    180deg,
    rgba(142, 165, 139, 0.35) 0%,
    rgba(142, 165, 139, 0.35) 51.92%,
    rgba(142, 165, 139, 0.35) 100%
  );
  filter: blur(2.5rem);
}
.ill-nav__fraction {
  color: var(--delft-blue);
}
.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(--sage-green-gradient);
  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;
}
.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%);
}
.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(142, 165, 139, 0.35) 0%,
    rgba(142, 165, 139, 0.35) 51.92%,
    rgba(142, 165, 139, 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;
}
.testimonials-section .swiper-button-next:hover,
.testimonials-section .swiper-button-prev:hover {
  background: linear-gradient(to right, #275fdc, #003aba);
  border: 1px solid transparent;
}
.swiper-slide__content-wrapper {
  padding: 0 1.25rem;
  gap: 1rem;
}
.content-wrapper__card {
  border-radius: 1rem;
  background: linear-gradient(99.38deg, #ffffff 9.53%, #d7dfd6 100%);
  padding: 0.063rem;
}
.card__content-wrapper {
  width: 100%;
  height: 100%;
  border-radius: calc(16px - 0.063rem);
  padding: 20px 20px 16px 20px;
}
.content-wrapper__text span {
  color: #3d3d3d;
  font-size: 10px;
  font-weight: 400;
  line-height: 120%;
  margin-bottom: 9px;
  display: inline-block;
}
.content-wrapper__text h5 {
  color: #000;
  font-size: 12px;
  font-weight: 500;
  line-height: 110%;
  margin-bottom: 13px;
}
.content-wrapper__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);
}
.content-wrapper__img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card__text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 110%;
  color: var(--white);
}
.card__text span {
  color: #3d3d3d;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 9px;
  display: inline-block;
}
.card__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;
}
.left-block__img-2 img {
  scale: 1.3;
}
.container__left-block {
  width: 100%;
}
.container__right-block {
  border-radius: initial;
  padding: 1.25rem;
  width: 100%;
}
.container__right-block img {
  object-position: right center;
  object-fit: cover;
  border-radius: 1.25rem;
}
.left-block__button-wrapper {
  margin-top: 2.75rem;
}
.left-block__button-wrapper a {
  font-size: 1rem;
  font-weight: 500;
  line-height: 110%;
  color: var(--white);
  padding: 0.75rem 1.75rem;
  border-radius: 0.5rem;
  width: 14rem;
  height: 3rem;
}
.left-block__button-wrapper a.primary {
  background-color: var(--sage-green);
}
.left-block__button-wrapper a.primary:hover {
  color: var(--white);
  background-color: var(--dark-sage-green);
}
.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);
}
.gray-badge {
  font-size: 0.813rem !important;
  font-weight: 400;
  line-height: 100%;
  color: var(--dark-gray);
  background-color: var(--very-light-sage-green);
  padding: 0.5rem 2.5rem;
  border-radius: 0.625rem;
  width: fit-content;
  margin-bottom: 1.5rem;
  text-align: center;
}
.intro-section__img-container {
  background-color: #003aba;
  height: 80%;
}

.tooltip-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.tooltip-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid #9e9e9e;
  color: #9e9e9e;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  line-height: 1;
  transition: all 0.2s ease;
}

.tooltip-icon:hover {
  background: #9e9e9e;
  color: #fff;
}

.tooltip-box {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 280px;
  max-width: 320px;
  background: #fff;
  color: #333;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14px;
  line-height: 1.5;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.2s ease,
    visibility 0.2s ease;
  z-index: 100;
  text-align: left;
}

.tooltip-box::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 8px;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
  filter: drop-shadow(0 1px 0 #ddd);
}

.tooltip-wrapper:hover .tooltip-box {
  opacity: 1;
  visibility: visible;
}

.tooltip-wrapper.active .tooltip-box {
  opacity: 1;
  visibility: visible;
}

.agenda-section__info-block {
  border-radius: 34px 34px 0 0;
}

.right-block__registration-info span {
  font-size: 1rem;
  line-height: 120%;
}

.item__register-link span:hover {
  color: #8ea58b !important;
}

.item__register-link:hover span {
  color: #8ea58b !important;
}

.regbtn_disabled {
  background-color: #a1a1a1 !important;
  pointer-events: none !important;
}
.disabledagenda {
  background-color: #a1a1a1 !important;
  pointer-events: none !important;
}
@media (min-width: 400px) {
  .item__register-link,
  .item__agenda-link {
    width: 50%;
  }
}
@media (min-width: 576px) {
  .heading__badge {
    width: 60%;
  }
}
@media (min-width: 768px) {
  .container__heading {
    margin-bottom: 3.25rem;
  }
  .container__heading h1,
  .section-heading {
    font-size: 1.875rem !important;
  }
  .heading__badge {
    width: fit-content;
  }
  .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;
  }
  .upcoming-workshops-table .main__buttons {
    width: fit-content;
  }
  .item__register-link {
    width: initial;
  }
  .item__agenda-link {
    width: initial;
  }
  .container__is-swiper-wrapper {
  }
  .illustration-img-parent {
    height: 16rem;
  }
  .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 {
    width: 100%;
    height: fit-content;
    max-width: 400px;
    margin-left: auto;

    grid-area: card-1;
  }
  .card__content-wrapper {
    padding: 30px 30px 24px 30px;
  }
  .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;
  }
  .card__text h5 {
    font-size: 18px;
  }
  .card__text span {
    font-size: 14px;
  }
  .section-margin {
    margin: 3.75rem 0;
  }
  .left-block__button-wrapper a {
    padding: 0.75rem 1.5rem;
  }
  .content-wrapper__text h5 {
    font-size: 18px;
  }
  .content-wrapper__text span {
    font-size: 14px;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .right-block__list {
    font-size: 18px;
  }
}
@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;
  }
}
@media (min-width: 992px) {
  .section-margin {
    margin: 7.5rem 0;
  }
  .container__left-block {
    padding: 3rem 0rem 3rem 4rem;
    width: 60%;
  }
  .container__right-block {
    width: 40%;
  }
  .container__heading {
    margin-bottom: 4.25rem;
  }
  .container__card-wrapper {
    margin: 0;
  }
  .card-wrapper__item {
    width: 33%;
  }
  .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(--sage-green);
    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: 1.1;
    color: var(--dark-sage-green);
  }
  .item__event-name {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.3;
    height: calc(1rem * 1.3 * 2);
  }
  .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(--sage-green);
    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(--sage-green);
  }
  .item__agenda-link {
    border-radius: 0.5rem;
  }
  .item__location {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.1;
    color: var(--black);
  }
  .item__time {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.1;
    color: var(--black);
  }
  .item__price {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.1;
    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;
  }
  .illustration-section .container__heading h2 {
    width: 36rem;
  }
  .container__is-swiper-wrapper {
  }
  .testimonials-section {
  }
  .testimonials-section .as-title h2 {
    margin-bottom: 42px;
  }
  .testimonial-swiper-container {
    width: 100%;
    flex-shrink: 0;
  }
}
@media (min-width: 1200px) {
  .container__left-block {
    width: 65%;
  }
  .container__right-block {
    width: 35%;
  }
  .table__body-container .bottom__btn,
  .table__body-container .card_body {
    font-size: 1rem;
  }
  .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);
  }
}
@media (min-width: 1400px) {
  .container__left-block {
    width: 70%;
  }
  .container__right-block {
    width: 30%;
  }
}
/***BOOTCAMPS NEW SENID***/
.what-makes {
  padding-top: 150px;
  line-height: 1.2;
}

.what-makes img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 24px;
}

.what-makes h3 {
  font-size: 1.875rem;
  font-weight: 600;
}

.newyork-cards {
  padding-top: 100px;
  padding-bottom: 100px;
}
.bootcamps-cards-image {
  border-radius: 1.25rem;
  aspect-ratio: 1 / 0.6;
  overflow: hidden;
}

.bootcamps-cards-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.newyork-cards-text {
  margin-top: 2rem;
}

.newyork-cards-text h3 {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.1;
}

.newyork-cards-text p {
  font-size: 1rem;
  line-height: 1.1;
  margin-top: 10px;
}

.table-wrapper-bootcamps {
  max-height: 26.5rem;
}

.table-wrapper-bootcamps .table-wrapper__item {
  padding-left: 15px;
  padding-right: 15px;
}

@media (max-width: 992px) {
  .table-wrapper-bootcamps .table-wrapper__item {
    border-bottom: 1px solid #c0c0c0;
    padding-bottom: 20px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .table-wrapper-bootcamps .item__register-link {
    width: fit-content;
    background: var(--sage-green);
  }

  .table-wrapper-bootcamps .item__event-name {
    height: auto;
  }

  .table-wrapper-bootcamps {
    max-height: 30.5rem;
  }

  .what-makes img {
    height: 320px;
  }
}

.complimentary-app-access .badge-wrapper__content {
  font-weight: 600;
  text-transform: uppercase;
}
.container__caa-content-wrapper {
  padding: 0.063rem;
  border-radius: 2rem;
  background: linear-gradient(to right, #ffffff 0%, #8ea58b3b 100%);
}
.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(--very-light-sage-green);
  border-radius: calc(1rem - 0.063rem);
}
.inner__left-block-img img {
  scale: 1.3;
}
.inner__content-wrapper {
  width: 100%;
}
.inner__content-wrapper .badge-wrapper {
  margin-bottom: 2.25rem;
}
.inner__content-wrapper h2 {
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.07;
  color: var(--black);
  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;
}
.badge-wrapper {
  padding: 0.063rem;
  border-radius: 1.25rem;
  background: linear-gradient(to right, #ffffff 0%, #8ea58b3b 100%);
  width: fit-content;
  height: fit-content;
  margin-bottom: 2.25rem;
}
.badge-wrapper__content {
  font-size: 0.813rem;
  font-weight: 400;
  line-height: 1.1;
  color: var(--black);
  padding: 0.75rem 1.75rem;
  border-radius: calc(1.25rem - 0.063rem);
  width: fit-content;
  height: fit-content;
}
.complimentary-app-access .badge-wrapper__content {
  font-weight: 600;
  text-transform: uppercase;
}
.inner__content-wrapper .badge-wrapper__badge {
  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(to right, #ffffff 0%, #8ea58b3b 100%);
}
.icon-outer__inner {
  padding: 1.125rem;
  border-radius: calc(1.125rem - 0.063rem);
}
@media (min-width: 768px) {
  .inner__content-wrapper h2 {
    margin-bottom: 2.25rem;
  }
}
@media (min-width: 992px) {
  .caa-content-wrapper__inner {
    padding: 2.5rem;
    gap: 5.75rem;
  }
  .inner__left-block-img {
    border-radius: 3rem;
  }
  .badge-wrapper {
    margin-bottom: 3rem;
  }
  .badge-wrapper__content {
    padding: 0.75rem 2.5rem;
  }
  .badge-wrapper {
    margin-bottom: 1.25rem;
  }
  .inner__benefits-item {
    font-weight: 600;
  }
}
@media (min-width: 1200px) {
  .inner__left-block-img {
    width: 50%;
  }
  .inner__left-block-img img {
    scale: 1.5;
  }
  .inner__content-wrapper {
    width: 50%;
  }
}

.container__heading-wrapper {
  margin-bottom: 2.75rem;
}
.container__heading-wrapper h1 {
  font-size: 1.625rem;
  font-weight: 600;
  line-height: 110%;
  color: var(--black);
  margin-bottom: 1rem;
}
.container__heading-wrapper h2 {
  font-size: 1rem;
  font-weight: 400;
  line-height: 120%;
  color: var(--black);
  margin-bottom: 1rem;
}
.illustrationSwiper {
  border-radius: 2rem;
}
.illustration-img-parent {
  background: linear-gradient(135.61deg, #ffffff -12.57%, #d7ddf8 56.92%);
  border-radius: 2rem;
  height: 14rem;
}
.illustration-img {
  overflow: hidden;
  border-radius: calc(2rem - 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%);
}
@media (min-width: 768px) {
  .container__heading-wrapper {
    margin-bottom: 3.25rem;
  }
  .container__heading-wrapper h1 {
    font-size: 1.875rem;
  }
  .illustration-img-parent {
    height: 16rem;
  }
}
@media (min-width: 992px) {
  .container__heading-wrapper {
    margin-bottom: 4.25rem;
  }
  .container__heading-wrapper h2 {
    width: 36rem;
  }
}

.section-title h3 {
  color: #000000;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 16px;
  max-width: 263px;
}
.hear-community-video-container {
  border-radius: 20px;
}
@media (min-width: 992px) {
  .section-title h3 {
    font-size: 30px;
    margin-bottom: 24px;
    max-width: 100%;
  }
}
.loading-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.85);
  z-index: 999;

  height: 734.4px;
}

.dropdown-menu {
  z-index: 99999;
}
