/* =====================
  SECTION: COUNTDOWN
  ====================== */
#countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  width: 100%;
  justify-items: center;
}

#countdown .time-wrapper {
  position: relative;

  text-align: center;
  padding: 10px;
  color: #000;
  background-color: #f7efd3;
  border-radius: 1rem;
  backdrop-filter: blur(10px);
  transition: 0.2s ease-in-out;
  width: 100%;
  max-width: 150px;
  z-index: 3;
}

#countdown .time-wrapper::before,
#countdown .time-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  z-index: -5;
}

#countdown .time-wrapper::before {
  background: var(--secondary-color);
  transform: rotate(1deg);
}

#countdown .time-wrapper::after {
  background: var(--primary-color);
  transform: rotate(14deg);
}

#countdown .time-wrapper:hover {
  box-shadow: 0 15px 20px rgba(0, 0, 0, 0.2);
}

#countdown .time {
  font-size: 20px;
  color: #fff;
  font-weight: 800;
}

#countdown .text {
  font-size: 12px;
  color: #fff;
  font-weight: 600;
}

/* =====================
  UTILITIES : SLICK
====================== */

.my-slider-section {
  width: 90%;
  margin: 40px auto;
}

.my-slider img {
  width: 100%;
  border-radius: 10px;
  display: block;
}

.my-slider .slick-slide {
  margin: 0 15px;
}

.my-slider .slick-list {
  margin: 0 -15px;
}

.slick-prev,
.slick-next {
  width: 40px;
  height: 40px;
  background: #000;
  border-radius: 50%;
  display: flex !important;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.slick-prev:before,
.slick-next:before {
  color: var(--primary-color) !important;
  font-size: 1.5rem !important;
}

.slick-prev {
  left: -50px;
}

.slick-next {
  right: -50px;
}

.slick-dots {
  bottom: -40px;
}

.slick-dots li button:before {
  font-size: 12px;
  color: #bbb;
  opacity: 1;
}

.slick-dots li.slick-active button:before {
  color: #000;
}

/* =====================
    UTILITIES : COUNTER
    ====================== */

.counter__info {
  position: relative;
  z-index: 5;

  border-radius: 18px;
  background: rgba(255 220 220 / 0.8);
  height: 100%;
  text-align: center;
}

.counter__section .section__subtitle {
  background: rgba(255 220 220 / 0.8);
}

/* =====================
    UTILITIES : CURSOR
    ====================== */

.cursor {
  position: fixed;
  width: 50px;
  height: 50px;
  border: 1px solid var(--primary-color);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform 0.5s;
  transition: 0.1s;
  z-index: 9999;
}

.cursor2 {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--primary-color);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: 0.2s;
  z-index: 9999;
}

/* =====================
  UTILITIES: SCROLL TOP
====================== */
.scrollToTop {
  position: fixed;
  bottom: 4rem;
  right: 1rem;
  background-color: rgba(var(--secondary-color-rgb), 0.5);
  color: var(--bs-light);
  border: none;
  border-radius: 50%;
  padding: 1rem;
  line-height: 1;
  z-index: -1;
  transform: translateY(1rem);
  opacity: 0;
  transition: 500ms ease-in-out 150ms;
}

.scrollToTop.show {
  z-index: 1111;
  transform: translateY(0);
  opacity: 1;
}

/* =====================
    COMING SOON
    ====================== */

.wave-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  color: #000;
}

.wave-text span {
  display: inline-block;
  font-size: 4rem;
  animation: wave 2s linear infinite;
}

.wave-text span:nth-child(1) {
  animation-delay: 0s;
}

.wave-text span:nth-child(2) {
  animation-delay: 0.1s;
}

.wave-text span:nth-child(3) {
  animation-delay: 0.2s;
}

.wave-text span:nth-child(4) {
  animation-delay: 0.3s;
}

.wave-text span:nth-child(5) {
  animation-delay: 0.4s;
}

.wave-text span:nth-child(6) {
  animation-delay: 0.5s;
}

.wave-text span:nth-child(7) {
  animation-delay: 0.6s;
}

.wave-text span:nth-child(8) {
  animation-delay: 0.7s;
}

.wave-text span:nth-child(9) {
  animation-delay: 0.8s;
}

.wave-text span:nth-child(10) {
  animation-delay: 0.9s;
}

.wave-text span:nth-child(11) {
  animation-delay: 1s;
}

.wave-text span:nth-child(12) {
  animation-delay: 1.01s;
}

@keyframes wave {
  0% {
    transform: translateY(0);
  }

  25% {
    transform: translateY(-10px);
  }

  50% {
    transform: translateY(-20px);
    color: var(--accent-color);
  }

  75% {
    transform: translateY(-10px);
    color: var(--accent-color);
  }

  100% {
    transform: translateY(0);
  }
}

/* =====================
    SECTION : HERO
    ====================== */
.hero {
  position: relative;
  z-index: 1;
  background: #fff;
}

.hero video {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
  opacity: 0.2;
  z-index: -1;
}

.spk_det {
  text-align: center;
}

.spk_det h5 {
  font-size: 16px;
}

.spk_det p {
  font-size: 14px;
  margin-bottom: 0;
}

.message img {
  border: 10px inset #d9d9d9;
  padding: 5px;
  width: 215px !important;
  border-radius: 50% !important;
}

/* =====================
    SECTION : SPEAKER
    ====================== */
.speaker {
  background: url("../images/bg/bg2.webp");
  background-position: center bottom;
  background-size: cover;
}

/* =====================
    SECTION : Links
    ====================== */

.quick__link {
  height: 100%;
  width: 100%;
  background: #ffffff;
  border-radius: 1rem;
  padding: 1rem;
  display: flex;
  text-align: start;
  justify-content: center;
  gap: 10px;
  transition: all 800ms ease-in-out;
}

.quick__link:hover {
  background: var(--primary-color);
  color: #fff;
}

/*About Logo*/
@media only screen and (min-width: 1025px) {
  .conf-lgo {
    position: relative;
  }

  .conf-lgo img {
    position: relative;
    z-index: 2;
  }

  .conf-lgo::before {
    content: "";
    position: absolute;
    inset: -15px;
    border-radius: 50%;
    background: rgba(var(--secondary-color-rgb), 0.5);
    animation: pulse 2.5s infinite ease-out;
    z-index: 1;
  }

  @keyframes pulse {
    0% {
      transform: scale(0.8);
      opacity: 0.8;
    }

    100% {
      transform: scale(1.2);
      opacity: 0;
    }
  }
}

/* =====================
    SECTION : HIGHLIGHTS
    ====================== */
.highlights {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.highlights::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: url("../images/bg/bg1.webp");
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  z-index: -2;
}

.highlights {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.highlights::before {
  filter: brightness(0.7);
}

.highlights video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  z-index: -1;
  object-fit: cover;
  mix-blend-mode: plus-lighter;
  pointer-events: none;
}

.first_high {
  border-radius: 60px 0 0 0;
}

.second_high {
  border-radius: 0 0 0 60px;
}

.fourth_high {
  border-radius: 0 60px 0 0;
}

.fifth_high {
  border-radius: 0 0 60px 0;
}

.highlit {
  background: #fff;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.third_high {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

.third_high img {
  filter: invert(69%) sepia(89%) saturate(937%) hue-rotate(347deg) brightness(102%) contrast(98%);
}

.first_high:hover,
.second_high:hover,
.fourth_high:hover,
.fifth_high:hover,
.six_high:hover {
  background-color: var(--primary-color);
  color: #fff;
}

.first_high:hover img,
.second_high:hover img,
.fourth_high:hover img,
.fifth_high:hover img,
.six_high:hover:hover img {
  filter: invert(69%) sepia(89%) saturate(937%) hue-rotate(347deg) brightness(102%) contrast(98%);
  transform: rotateY(180deg);
  transition: transform 0.3s ease-in-out;
}

.first_high:hover h5,
.second_high:hover h5,
.fourth_high:hover h5,
.fifth_high:hover h5,
.six_high:hover h5 {
  color: #fff !important;
}

/* =====================
    SECTION : SCIENTIFIC PROGRAM
    ====================== */
.sc-pgm {
  text-align: center;
  position: relative;
  padding: 50px 0 20px;
  background: url(../images/bg/bg3.jpg) no-repeat;
  background-size: cover;
  overflow: hidden;
}

.sc-pgm h2 {
  color: var(--theme-clr-dark);
  margin-bottom: 10px;
}

.btns-box {
  position: relative;
  display: block;
  margin-bottom: 70px;
}

.tab-buttons {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.tab-buttons li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 125px;
  width: 190px;
  background-color: #ffffff;
  border: 1px solid #ff7c00;
  margin: 0 -1px;
  cursor: pointer;
  -webkit-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.tab-buttons li .day {
  position: absolute;
  left: 35px;
  top: -1px;
  min-width: 120px;
  padding: 10px 20px;
  color: var(--primary-color);
  font-size: 18px;
  line-height: 20px;
  font-weight: 600;
  text-align: center;
  border: 1px solid #ff7c00;
  border-top: 0;
  border-radius: 0 0 10px 10px;
}

.tab-buttons li:hover {
  -webkit-box-shadow: 0 15px 20px rgba(0, 0, 0, 0.2);
  box-shadow: 0 15px 20px rgba(0, 0, 0, 0.2);
}

.tab-buttons li.active-btn .day {
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
  color: #ffffff;
}

.tab-buttons li .date-box {
  position: relative;
  padding-left: 65px;
  min-height: 40px;
  margin-bottom: 15px;
}

.tab-buttons li .date {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 48px;
  line-height: 40px;
  font-weight: 700;
  color: #ffba00;
  font-family: "Exo", sans-serif;
}

.tab-buttons li .month {
  display: block;
  font-weight: 700;
  font-size: 18px;
  color: #000;
  line-height: 1em;
  text-transform: uppercase;
  font-family: "Exo", sans-serif;
}

.tab-buttons li .month .colored {
  display: block;
  font-size: 24px;
  line-height: 1em;
  color: var(--primary-color);
}

/* =====================
    COMMITTEE
    ====================== */
.speak {
  position: relative;
  z-index: 2;
  overflow: hidden;
  color: var(--accent-color);
  text-align: center;
}

.speak img {
  border: 10px inset #d9d9d9;
  padding: 5px;
  width: 215px !important;
}

.speak::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: -14px;
  left: -51px;
  background: url(../images/bg/committee.webp);
  background-position: left;
  background-size: contain;
  background-repeat: no-repeat;
  transform: rotate(35deg);
  z-index: -1;
  opacity: 0.6;
}

.spk_det {
  background-color: #fbf3df;
}

/* =====================
    SIDE_BUTTON_1
    ====================== */
.side_button {
  position: fixed;
  right: 5px;
  top: 30%;
  z-index: 11111;
}

.side_button_1,
.side_button_2 {
  transform: translateY(-50%);
  background: linear-gradient(97.14deg, #bf1f24 7.11%, #fdb416 97.04%);
  color: white;
  padding: 15px 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  text-decoration: none;
  border-radius: 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  z-index: 1000;
  writing-mode: vertical-rl;
  text-align: center;
  margin-bottom: 30px;
}

.side_button_1 span,
.side_button_2 span {
  display: inline-block;
  transform: rotate(-180deg);
  white-space: nowrap;
}

.side_button_2:hover {
  transform: translateY(-50%) scale(1.1);
}

.side_button_1:hover {
  transform: translateY(-50%) scale(1.1);
}

.side_button_1,
.side_button_2 {
  animation: bounce 2s ease infinite;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-30px);
  }

  60% {
    transform: translateY(-15px);
  }
}

.fixed-col {
  width: 150px;
  min-width: 150px;
}

/* =====================
 
    ====================== */
.trade_contact {
  padding: 1.5rem;
  border-radius: 1rem;
  display: block;
  text-align: center;
  text-decoration: none;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
  background: #fff;
}

.trade_contact h4 {
  color: var(--primary-color);
}

.trade_contact h6 {
  margin-bottom: 0;
}

/* =====================
    RESPONSIVE : DESKTOP
    ====================== */

@media only screen and (min-width: 1025px) {}

/* =====================
    RESPONSIVE : TABLET
    ====================== */

@media only screen and (max-width: 1024px) {
  .menu__bar .navbar {
    position: fixed;
    z-index: 1111;
    top: 0;
    right: 0;
    background: none;
  }

  .menu__bar .navbar .navbar-toggler {
    background: var(--secondary-color);
  }

  .offcanvas-body {
    background: var(--primary-color);
  }

  .menu__bar .nav-link {
    color: var(--bs-light);
  }

  /* #countdown {
    grid-template-columns: repeat(2, 1fr);
  } */

  .cursor,
  .cursor2 {
    display: none;
  }

  .highlit {
    border-radius: 0px !important;
  }
}

/* =====================
  RESPONSIVE : ANIMATIONS
====================== */

.a__box {
  animation: translate ease-in-out;
  animation-timeline: view();
  animation-range: entry 0% cover 40%;
}

@keyframes translate {
  from {
    opacity: 0;
    transform: translate(-100px);
  }

  to {
    opacity: 1;
    transform: translate(0px);
  }
}

.a__box {
  animation: scale ease-in-out;
  animation-timeline: view();
  animation-range: entry 0% cover 40%;
}

@keyframes scale {
  from {
    opacity: 0;
    scale: 0.5;
  }

  to {
    opacity: 1;
    scale: 1;
  }
}

/* =====================
  RESPONSIVE : MOBILE
====================== */

@media only screen and (max-width: 576px) {
  .breadcrumb__sc .breadcrumb {
    width: 90%;
  }

  .updates {
    flex-direction: column;
  }

  .updates>* {
    width: 100%;
  }

  .side_button {
    right: 5px;
  }
}

.border-left {
  border-left: 1px solid #055160;
  margin-left: 15px;
  padding-left: 15px;
}

@media only screen and (max-width: 767px) {
  .border-left {
    margin-left: 0;
    padding-left: 0;
    border: none;
  }
}

.product__section .active {
  color: #fff;
  background: var(--primary-color) !important;
  border: 1px solid #fff;
  font-weight: 600;
}

.services__tab .nav-link {
  color: #333333;
}

.services__tab .toc {
  background: rgba(var(--secondary-color-rgb), 0.05);
  padding: 1rem;
  top: var(--menu-height);
}

.services__tab .nav .nav-link:not(:last-of-type) {
  border-bottom: 1px solid rgba(var(--primary-color-rgb), 0.15);
}


.services__tab .accordion-button {
  background: var(--primary-color);
  color: var(--bs-light);
  box-shadow: inset 0 8px 16px rgb(0 0 0 / 15%);
}


@media only screen and (min-width: 1025px) {
  .services__tab .accordion-header {
    display: none;
  }

  .services__tab .accordion-item .collapse:not(.show) {
    display: block;
  }
}


@media only screen and (max-width: 991px) {

  .specialities__tabs {
    flex-direction: column;
  }

  .specialities__tabs .specialities__tab .specialities__heading.display {
    writing-mode: horizontal-tb;
    transform: rotate(0);
  }

  .specialities__tab .tab-content>.tab-pane {
    display: block;
    opacity: 1;
  }

  .text-banner {
    font-weight: 600;
    font-family: var(--heading-font);
    font-size: 14px;
  }

  .services__tab .tab-content>.tab-pane {
    display: block !important;
    opacity: 1;
  }

  .accordion-button {
    background: var(--primary-color);
    color: var(--bs-light);
    box-shadow: inset 0 8px 16px rgb(0 0 0 / 15%);
  }

}

.form-box,
.invoice-box {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
  overflow: hidden;
  background-color: #ffffff;
  position: relative;
}

.form-box .upload {
  border: 2px dashed #dcdcdc;
  padding: 1em;
}

/*notification*/

.notification {
  position: fixed;
  left: 0;
  top: 0;
  background: rgb(0 0 0 / 60%);
  width: 100%;
  height: 100%;
  z-index: 11111;
}

.notify-box-bg {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.notify-box {
  max-width: 600px;
  width: 90%;
  margin: auto;
  font-size: 0.875rem;
  pointer-events: auto;
  background-color: #ffffff;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
  font-size: 16px;
  
  padding: 15px;
}

label.error{
  color: #f00;
}