.cursor {
  position: fixed;
  width: 50px;
  height: 50px;
  border: 1px solid var(--violet-color);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform 0.5s;
  z-index: 9999;
}

.cursor2 {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--violet-color);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: 0.1s;
  z-index: 9999;
}

/* =====================
  SECTION: PROPERTIES
  ====================== */
.section-title {
  /* font-size: var(--fs-title); */
  font-size: var(--fs-large-banner);
  font-family: var(--heading-font);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 0.33em;
  background: -webkit-linear-gradient(var(--gradient-text));
  background: -moz-linear-gradient(var(--gradient-text));
  background: linear-gradient(var(--gradient-text));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-title-alt {
  font-size: var(--fs-large-banner);
  font-family: var(--heading-font);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 0.33em;
  /* background: -webkit-linear-gradient(var(--gradient-text-alt));
  background: -moz-linear-gradient(var(--gradient-text-alt));
  background: linear-gradient(var(--gradient-text-alt));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; */
  color: var(--accent-color);
}

.section__subtitle {
  font-size: var(--fs-lead);
  text-transform: uppercase;
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
  display: inline-block;
  padding: 0 10px;
}

.section__subtitle::before {
  position: absolute;
  top: 50%;
  left: 100%;
  content: "";
  height: 100%;
  width: 100%;
  background: url(../images/abstract/subhead-left.png);
  background-repeat: no-repeat;
  background-size: 100px;
  background-position: left center;
  margin-top: -13px;
}

.section__subtitle::after {
  position: absolute;
  top: 50%;
  right: 100%;
  content: "";
  height: 100%;
  width: 100%;
  background: url(../images/abstract/subhead-right.png);
  background-repeat: no-repeat;
  background-size: 100px;
  background-position: right center;
  margin-top: -13px;
}

.section__subtitle_white {
  font-size: var(--fs-lead);
  text-transform: uppercase;
  color: var(--bs-light);
  font-weight: 500;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
  display: inline-block;
  padding: 0 10px;
}

.section__subtitle_white::before {
  position: absolute;
  top: 50%;
  left: 100%;
  content: "";
  height: 100%;
  width: 100%;
  background: url(../images/abstract/subhead-left-white.png);
  background-repeat: no-repeat;
  background-size: 100px;
  background-position: left center;
  margin-top: -13px;
}

.section__subtitle_white::after {
  position: absolute;
  top: 50%;
  right: 100%;
  content: "";
  height: 100%;
  width: 100%;
  background: url(../images/abstract/subhead-right-white.png);
  background-repeat: no-repeat;
  background-size: 100px;
  background-position: right center;
  margin-top: -13px;
}

/* =====================
  SECTION: Hero
  ====================== */

.hero {
  position: relative;
  background: linear-gradient(300deg, #026659, #47ba9a, #e3ff04);
  background-size: 180% 180%;
  animation: gradient-animation 18s ease infinite;
  z-index: 1;
  /* background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(../images/bg/banner_background.webp) center / cover no-repeat; */
}



.hero::before {
  position: absolute;
  content: '';
  inset: 0;
  z-index: -1;
  background: url(../images/teeth.jpg);
  background-repeat: repeat;
  background-attachment: fixed;
  opacity: 0.2;
}

@keyframes gradient-animation {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.hero video {
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  object-fit: cover;
  z-index: -2;
}

.hero-title {
  margin-bottom: 0;
  color: var(--body-color);
  font-weight: 600;
  letter-spacing: -0.03em;
  font-size: 120px;
}

.logo {
  width: 160px;
  max-width: 100%;
  height: auto;
}

/* Medium Large devices */
@media (max-width: 1399px) {
  .hero-title {
    font-size: 100px;
  }
}

/* Medium Large devices */
@media (max-width: 1299px) {
  .hero-title {
    font-size: 90px;
  }
}

/* Large devices */
@media (max-width: 1199px) {
  .hero-title {
    font-size: 80px;
  }
}

/* Medium devices */
@media (max-width: 991px) {
  .hero-title {
    font-size: 70px;
  }

  .logo {
    width: 100px;
  }
}

/* Small devices */
@media (max-width: 767px) {
  .hero-title {
    font-size: 56px;
  }
}

/* Extra small devices */
@media (max-width: 575px) {
  .hero-title {
    font-size: 39px;
    letter-spacing: normal;
  }
}

/* Extra small devices */
@media (max-width: 375px) {
  .hero-title {
    font-size: 34px;
  }
}

/* BUBBLES */

.bubbles {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  top: 0;
  left: 0;
  z-index: -1;
}

.bubble {
  position: absolute;
  bottom: -100px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0),
    inset 1px -7px 13px rgba(255, 255, 255, 0.54);
  border-radius: 50%;
  opacity: 0.5;
  animation: rise 10s infinite ease-in;
}

.bubble:nth-child(1) {
  width: 40px;
  height: 40px;
  left: 10%;
  animation-duration: 8s;
}

.bubble:nth-child(2) {
  width: 20px;
  height: 20px;
  left: 20%;
  animation-duration: 5s;
  animation-delay: 1s;
}

.bubble:nth-child(3) {
  width: 50px;
  height: 50px;
  left: 35%;
  animation-duration: 7s;
  animation-delay: 2s;
}

.bubble:nth-child(4) {
  width: 80px;
  height: 80px;
  left: 50%;
  animation-duration: 11s;
  animation-delay: 0s;
}

.bubble:nth-child(5) {
  width: 35px;
  height: 35px;
  left: 55%;
  animation-duration: 6s;
  animation-delay: 1s;
}

.bubble:nth-child(6) {
  width: 45px;
  height: 45px;
  left: 65%;
  animation-duration: 8s;
  animation-delay: 3s;
}

.bubble:nth-child(7) {
  width: 90px;
  height: 90px;
  left: 70%;
  animation-duration: 12s;
  animation-delay: 2s;
}

.bubble:nth-child(8) {
  width: 25px;
  height: 25px;
  left: 80%;
  animation-duration: 6s;
  animation-delay: 2s;
}

.bubble:nth-child(9) {
  width: 15px;
  height: 15px;
  left: 70%;
  animation-duration: 5s;
  animation-delay: 1s;
}

.bubble:nth-child(10) {
  width: 90px;
  height: 90px;
  left: 25%;
  animation-duration: 10s;
  animation-delay: 4s;
}

@keyframes rise {
  0% {
    bottom: -100px;
    transform: translateX(0);
  }

  50% {
    transform: translate(100px);
  }

  100% {
    bottom: 1080px;
    transform: translateX(-200px);
  }
}

@keyframes vswing {
  0% {
    -webkit-transform: rotate(25deg);
    -ms-transform: rotate(25deg);
    transform: rotate(25deg);
  }

  100% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 0;
  }

  30% {
    opacity: 0.4;
  }

  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(var(--rotate-angle, 360deg));
  }
}

@keyframes slideinup {
  0% {
    opacity: 0;
    transform: translateY(70px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes slideindown {
  0% {
    opacity: 0;
    transform: translateY(-70px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes slideinleft {
  0% {
    opacity: 0;
    transform: translateX(-70px);
  }

  100% {
    transform: translateX(0);
  }
}

@keyframes slideinright {
  0% {
    opacity: 0;
    transform: translateX(70px);
  }

  100% {
    transform: translateX(0);
  }
}

@keyframes fadein-custom {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes jumpping {

  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  40% {
    transform: translate3d(0, var(--jump-y, 20px), var(--jump-x, 0));
  }
}

/* =====================
  SECTION: COUNTDOWN
  ====================== */

.countdown__box {
  padding: 20px;
  border-radius: 1rem;
  border: solid 1px rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
  z-index: 1;
  backdrop-filter: blur(10px);
  transition: all 0.2s ease-in-out;
}

.countdown__box:hover {
  border: solid 1px var(--accent-color);
}

#countdown .time-wrapper {
  text-align: center;
}

#countdown .time {
  font-size: var(--fs-small-banner);
  color: var(--bs-light);
  font-weight: 600;
}

#countdown .text {
  font-size: var(--fs-lead);
  color: var(--bs-light);
  font-weight: 600;
}

.gradient-edge-bottom {
  /* background: linear-gradient(0deg, rgba(var(--secondary-color-rgb), 1) 0%, rgba(var(--secondary-color-rgb), 0) 100%); */
  background: linear-gradient(0deg, rgba(var(--violet-color-rgb), 1) 0%, rgba(var(--violet-color-rgb), 0) 100%);
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.5;
  z-index: -1;
  position: absolute;
  left: 0 !important;
  bottom: 0;
  width: 100%;
  height: 30%;
}

/* =====================
  SECTION: SCROLL
  ====================== */

.scroll-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100vw;
  padding: 10px 0;
  box-sizing: border-box;
  background: var(--primary-dark-color);
}

#scroller {
  display: flex;
  column-gap: 4rem;
  width: max-content;
  white-space: nowrap;
  will-change: transform;
  /* smoother on mobile */
}

#scroller .scroll-items {
  display: flex;
  column-gap: 1rem;
  width: max-content;
}

#scroller .scroll-items div {
  flex: 1 0 auto;
  font-size: 1rem;
  white-space: nowrap;
  color: var(--bs-light);
  text-shadow: 2px 1px var(--bs-dark);
}

#scroller .scroll-items div a {
  color: #000000;
  letter-spacing: 0.75px;
  color: var(--accent-color);
}

@media (max-width: 768px) {
  #scroller {
    column-gap: 2rem;
  }

  #scroller .scroll-items {
    column-gap: 0.5rem;
  }

  #scroller .scroll-items div {
    font-size: 0.9rem;
  }
}

/* =====================
  SECTION: ABOUT
  ====================== */
#fadeCarousel .carousel-inner {
  /* border-radius: 89px 13px 13px 94px; */
  border-radius: 1rem;
}

/* =====================
  SECTION: COMMITTEE
  ====================== */

.committee {
  text-align: center;
}

.committee__img {
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
}

.committee__img img {
  border-radius: 100%;
  padding: 10px;
  width: 150px;
  box-shadow: 5px 3px 4px #d2e2fc, 5px -3px #d2e2fc;
  box-shadow: 5px 3px 4px var(--primary-color), 5px -3px var(--primary-color);
}

.committee_section .committee .committee__img img {
  border-radius: 15px;
  padding: 10px;
  width: 150px;
  box-shadow: 5px 3px 4px #d2e2fc, 5px -3px #d2e2fc;
  box-shadow: 5px 3px 4px #00000073, 5px -3px #00000024;
  box-shadow: none;
  border: 1px solid #8103fa;
}

/* =====================
  SECTION: MESSAGE
  ====================== */

.message__section {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: url(../images/bg2.webp);
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
}

/* .message__section video {
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  object-fit: cover;
  z-index: -2;
  opacity: 0.05;
} */

/* .message__section::before {
  content: "";
  position: absolute;
  top: -10px;
  right: -20px;
  background: url(../images/abstract/leaf.png);
  background-size: cover;
  width: 410px;
  height: 330px;
  z-index: -1;
}

.message__section::after {
  content: "";
  position: absolute;
  top: -10px;
  left: -20px;
  background: url(../images/abstract/leaf.png);
  background-size: cover;
  width: 410px;
  height: 330px;
  z-index: -1;
  transform: scale(-1, 1);
} */

.message__box {
  background: #f7f7f8;
  border: 1px solid #f7f7f8;
  border-radius: 1rem;
  padding: 1.5rem;
  transition: background 0.3s ease;
}

.message__box-one {
  background: #d5f8ef;
  border: 1px solid #00ffbf;
}

.message__box-two {
  background: #ffe5f4;
  border: 1px solid #ff0095;
}

.message__box-three {
  background: #e7e5ff;
  border: 1px solid #1500ff;
}

/* =====================
  SECTION: REGISTRATION
  ====================== */

.registration__section {
  /* background: url(../images/bg/banner_background.webp); */
  /* background: linear-gradient(90deg, #4e1097, #581293, rgba(237, 221, 83, 1) 100%); */
  background: linear-gradient(to top right, var(--primary-dark-color), var(--primary-color));
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  background-attachment: fixed;
}

.divider_shape img {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
}

.divider_shape_bottom img {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
}

.registration__section .table> :not(caption)>*>* {
  padding: 1rem !important;
  border-color: #ffffff;
}

.table-bg {
  background: var(--primary-color) !important;
  color: var(--bs-light) !important;
}

.table-responsive th,
.table-responsive td {
  vertical-align: middle;
}

/* =====================
  SECTION: INTERNATIONAL FACULTY
  ====================== */

.international__faculty__section {
  position: relative;
  background: #fff;
}

.city {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

/* =====================
  SECTION: CTA
  ====================== */

.cta__section {
  background: radial-gradient(circle at center, #8f1a6a, #5100ff), url(../images/bg/cta-alt.webp) no-repeat center / cover;
  background-blend-mode: hard-light;
}

/* .cta__section {
  background: linear-gradient(var(--gradient-text-alt));
  background: linear-gradient(300deg, #4e1097, #ff0a54, #e3ff04);
  background-size: 180% 180%;
  animation: gradient-animation 18s ease infinite;
} */

/* =====================
  SECTION: CONFERENCE HIGHLIGHT
  ====================== */

.conference__highlights__section {
  /* background-color: #f2f2f2; */
  background-image: linear-gradient(100.62deg,
      rgba(249, 215, 175, 0.3) 0%,
      rgba(214, 202, 245, 0.3) 24.03%,
      rgba(198, 241, 255, 0.3) 45.73%,
      rgba(248, 242, 222, 0.3) 69.05%,
      rgba(212, 179, 253, 0.3) 100.44%);
}

.conference__highlights {
  position: relative;
  overflow: hidden;
  min-height: 253px;
  background: var(--color-white);
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border: 1px solid #cbcad3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
}

.conference__highlights__text {
  max-width: 350px;
  padding-left: 30px;
}

/* =====================
  SECTION: VENUE
  ====================== */

.venue__section {
  background: url(../images/bg/bg-2.png);
  background-repeat: repeat;
}

/* =====================
  SECTION: 
  ====================== */

.ul-2-banner-socials {
  right: clamp(40px, 4.2vw, 80px);
  border-radius: 0;
  background-color: transparent;
  gap: clamp(8px, 0.84vw, 16px);
  overflow: visible;
}

.ul-banner-socials {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 100px;
  display: flex;
  flex-direction: column;
  border-radius: 30px 0 0 30px;
}

.ul-2-banner-socials::before,
.ul-2-banner-socials::after {
  content: "";
  position: absolute;
  width: clamp(29px, 1.68vw, 32px);
  height: 110%;
  background: linear-gradient(180deg, #ffffff 0%, #0d6dfd 80.8%);
  opacity: 0.12;
  border-radius: 100px 100px 0px 0px;
  transform: matrix(1, 0, 0, -1, 0, 0) translateX(-50%);
  bottom: calc(100% + 40px);
  left: 50%;
}

.ul-2-banner-socials a {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
}

.ul-banner-socials a {
  width: clamp(45px, 2.52vw, 48px);
  aspect-ratio: 1 / 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--bs-white);
}

.ul-2-banner-socials::after {
  top: calc(100% + 40px);
  transform: translateX(-50%);
  left: 50%;

}

/* =====================
      SECTION: 
      ====================== */

.reg-plan {
  background: var(--bs-white);
  border-radius: 1rem;
  padding: 0;
  transition: all 0.5s;
  /* overflow: hidden; */
  background: #ffffff !important;
  box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset,
    rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
    rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
  position: relative;
  z-index: 1;
}

.reg-plan:hover {
  box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset,
    rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
    rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

/* .reg-plan table td {
    padding: 1rem 0;
  } */

.reg-plan table tr:last-child td {
  border: 0;
}

.reg-plan h4 {
  color: #ffffff;
  position: relative;
  padding: 10px;
  z-index: 1;
  background-color: var(--secondary-color);
  text-align: center;
}

.early-reg h4::after {
  background: linear-gradient(90deg, #4caf50, #cddc39);
}

.regular-reg h4::after {
  background: linear-gradient(90deg, #ffc107, #ff9800);
}


.reg-plan::before {
  position: absolute;
  content: "";
  inset: -3px;
  background: conic-gradient(from var(--angle), transparent 50%, rgb(255, 145, 0));
  z-index: -1;
  border-radius: 1rem;
  animation: circle 3s linear infinite;
}


@property --angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

@keyframes circle {
  from {
    --angle: 0deg;
  }

  to {
    --angle: 360deg;
  }
}

table.table td,
table.table th {
  background: transparent;
  color: var(--bs-dark);
}

.table-bottom {
  background: #ecfffa !important;
}