:root {
  --bs-breakpoint-xxl: 1440px;
  --bs-primary: #1c414c;
  --bs-primary-rgb: 28, 65, 76;
  --bs-secondary: #DDDCD6;
  --bs-secondary-rgb: 221, 220, 214;
  --bs-success: #00AB8B;
  --bs-success-rgb: 0, 171, 139;
  --bs-light: #f5f5f5;
  --bs-light-rgb: 245, 245, 245;
  --bs-warning: #DDE785;
  --bs-warning-rgb: 221, 231, 133;
  --bs-dark: #555555;
  --bs-dark-rgb: 85, 85, 85;
  --bs-gray: #999999;
  --bs-gray-rgb: 153, 153, 153;
  --bs-light-green: #eff6f7;
  --bs-light-green-rgb: 239, 246, 247;
  --bs-light-blue: #e8f7ff;
  --bs-light-blue-rgb: 232, 247, 255;
  --bs-light-yellow: #fef5e5;
  --bs-light-yellow-rgb: 254, 245, 229;
}

h3,
h4 {
  font-weight: 500;
}

.text-gray {
  color: var(--bs-gray) !important;
}

.bg-light-green {
  background-color: var(--bs-light-green) !important;
}

.bg-light-blue {
  background-color: rgba(var(--bs-light-blue-rgb), 1) !important;
}

.bg-light-blue-transparent {
  background-color: rgba(var(--bs-light-blue-rgb), 0.5) !important;
}

.bg-light-yellow {
  background-color: var(--bs-light-yellow) !important;
}

.bg-light-yellow-transparent {
  background-color: rgba(var(--bs-light-yellow-rgb), 0.5) !important;
}

.bg-secondary-transparent {
  background-color: rgba(var(--bs-secondary-rgb), 0.5) !important;
}

.text-gradient {
  font-size: 2.5rem;
  background: linear-gradient(135deg, var(--bs-primary) 0%, var(--bs-success) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.large-icon {
  font-size: 2.5rem;
  color: var(--bs-primary);
}

@media (min-width: 1200px) {
  .stat-divider {
    border-right: 1px solid rgba(var(--bs-gray-rgb), 0.5);
  }
}

.vr {
  width: 1.5px;
}

.lh-1-8 {
  line-height: 1.8;
}

.no-scrollbar {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.no-scrollbar::-webkit-scrollbar {
  display: none;
}

hr.dashed {
  border-top: 2px dashed gray;
}

.gap-y-3 > * + * {
  margin-top: 1rem;
}

.empty-icon {
  width: 20px;
}

.subtitle {
  font-size: 1.25rem;
  color: var(--bs-primary);
}
.subtitle i {
  margin-right: 0.5rem;
}

.company-name {
  font-size: 15px;
  display: flex;
  align-items: center;
}
.company-name::before {
  content: "";
  width: 3px;
  height: 20px;
  background-color: var(--bs-primary);
  margin-right: 0.5rem;
}

p.small {
  font-size: 15px;
}

.navbar {
  transition: all 0.3s ease;
  --bs-navbar-color: rgba(var(--bs-light-rgb), 0.55);
  --bs-navbar-hover-color: rgba(var(--bs-light-rgb), 0.7);
  --bs-navbar-disabled-color: rgba(var(--bs-light-rgb), 0.3);
  --bs-navbar-brand-color: rgba(var(--bs-light-rgb), 0.9);
  --bs-navbar-active-color: rgba(var(--bs-light-rgb), 0.9);
  --bs-navbar-brand-hover-color: rgba(var(--bs-light-rgb), 0.9);
  box-shadow: none;
}
.navbar .navbar-toggler {
  border: 0;
  padding: 0;
  color: rgba(var(--bs-light-rgb), 1);
}
.navbar .navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}
.navbar .navbar-toggler i {
  font-size: 2rem;
}
.navbar .navbar-brand {
  padding: 16.5px 0;
}
.navbar.bg-primary {
  border-bottom: rgba(var(--bs-dark-rgb), 0.6) 1px solid;
}

.navbar-nav .nav-link.active {
  font-weight: bold;
}

#menu .nav-link.active,
.show > .nav-link {
  color: var(--bs-success);
}

.nav-item .nav-link {
  color: white;
}

.bg-empty {
  background-color: transparent !important;
}
.bg-empty::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bs-primary);
  opacity: 0;
  z-index: -1;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.bg-empty.scrolled {
  border-bottom: rgba(var(--bs-dark-rgb), 0.6) 1px solid;
}
.bg-empty.scrolled::before {
  opacity: 1;
}

.nav-primary .nav-link {
  color: var(--bs-dark);
}
.nav-primary .nav-link:hover:not(.active) {
  color: var(--bs-primary);
  background-color: var(--bs-light);
}
.nav-primary .nav-link.active,
.nav-primary .show > .nav-link {
  background-color: var(--bs-primary);
}

.nav-success .nav-link {
  color: var(--bs-dark);
}
.nav-success .nav-link:hover:not(.active) {
  color: var(--bs-success);
  background-color: var(--bs-light);
}
.nav-success .nav-link.active,
.nav-success .show > .nav-link {
  background-color: var(--bs-success);
  color: var(--bs-light);
}

li.nav-item.dropdown .dropdown-menu {
  --bs-dropdown-link-active-bg: rgba(var(--bs-primary-rgb), 0.9);
}
li.nav-item.dropdown .dropdown-menu li a {
  line-height: 2;
}
li.nav-item.dropdown:hover .dropdown-menu {
  display: block;
}
li.nav-item.dropdown:hover .dropdown-toggle.disabled + .dropdown-menu {
  display: none;
}

.nav-bg {
  background-color: #f8f8f8;
  position: fixed;
  width: 100vw;
  z-index: 1000;
  top: 0;
}
.nav-bg.bg-empty {
  background-color: transparent;
}

.nav-backdrop {
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  top: 0;
}
.nav-backdrop.collapsed {
  display: none;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  --bs-gutter-x: 2rem;
}

@media (min-width: 1400px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1320px;
  }
  .container-xxl {
    max-width: 1440px;
  }
}
.page-content {
  min-height: calc(100vh - 130px);
  padding-top: 66px;
  position: relative;
}
@media only screen and (max-width : 768px) {
  .page-content {
    min-height: calc(100vh - 66px - 130px);
  }
}

.login-banner {
  background: linear-gradient(35deg, rgb(6, 77, 88), rgba(197, 169, 30, 0)), url("../images/login-banner.png");
  background-size: cover;
  background-position: center center;
  width: 100vw;
  display: flex;
  align-items: center;
  color: var(--bs-secondary);
}
.login-banner .title {
  font-size: 76px;
  font-weight: bold;
  line-height: 1;
}
@media only screen and (max-width : 768px) {
  .login-banner .title {
    font-size: 56px;
  }
}

.login-card {
  max-width: 460px;
  margin: 0 auto;
}

.footer {
  background-color: var(--bs-secondary);
  height: 130px;
}
@media only screen and (max-width : 768px) {
  .footer {
    height: 232px;
  }
  .footer .container {
    margin-top: -50px;
  }
}

.bd-layout {
  display: block;
  margin-bottom: 2rem;
}

.bd-sidebar {
  display: none;
}

.bd-main {
  grid-area: main;
  overflow-y: auto;
  order: 1;
}

.list-group a.active {
  font-weight: bold;
}

.wave-layout {
  display: block;
}
@media (min-width: 992px) {
  .wave-layout {
    display: grid;
    grid-template-areas: "sidebar main main";
    grid-template-rows: 1fr auto;
    grid-template-columns: 1fr 4fr;
    gap: 2rem;
  }
}

.wave-main {
  grid-area: main;
  margin-top: 0;
  width: auto;
}

.wave-sidebar {
  grid-area: sidebar;
  top: 5rem;
  right: 0;
  overflow-y: auto;
  position: -webkit-sticky;
  position: sticky;
  height: auto;
}
@media (min-width: 992px) {
  .wave-sidebar {
    height: 300px;
  }
}
.wave-sidebar .side-buttons .btn {
  background-color: none;
  text-align: center;
}
.wave-sidebar .side-buttons .btn.active {
  background-color: var(--bs-primary);
  color: var(--bs-light);
}
.wave-sidebar .side-buttons .btn:hover:not(.active) {
  background-color: var(--bs-light);
  color: var(--bs-primary);
}
@media (min-width: 992px) {
  .wave-sidebar .side-buttons {
    display: block !important;
  }
  .wave-sidebar .side-buttons .btn {
    text-align: left;
  }
}

@media (min-width: 992px) {
  .bd-layout {
    display: grid;
    grid-template-areas: "main sidebar";
    grid-template-rows: auto 1fr;
    grid-template-columns: 4fr 1fr;
    gap: 2rem;
    margin-bottom: 0;
  }
  .bd-sidebar {
    grid-area: sidebar;
    top: 5rem;
    right: 0;
    overflow-y: auto;
    position: -webkit-sticky;
    position: sticky;
    height: 650px;
    display: block;
  }
}
.alert .card-title {
  font-size: 1.125rem;
  font-weight: bold;
}

section {
  margin-bottom: 2rem;
}
section h5 {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}
section.page-header {
  padding-top: 20px;
  padding-bottom: 20px;
  background: url("../images/header-bg.png") no-repeat 70% center;
  background-size: cover;
  color: var(--bs-light);
}
@media only screen and (max-width : 992px) {
  section.page-header {
    margin-bottom: 1.5rem;
  }
}
section.page-header h3 {
  font-size: 22px;
  margin-bottom: 0;
  color: var(--bs-light);
}

td,
th {
  vertical-align: middle;
}

.td-list ul {
  margin-bottom: 0;
  list-style-type: decimal;
}

.wave-bg {
  position: relative;
  color: var(--bs-primary);
}
.wave-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../images/wave-bg.png") no-repeat center center;
  background-size: cover;
  z-index: -1;
}

.wave-stage {
  position: relative;
  color: var(--bs-primary);
}
.wave-stage::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(0, 169, 157, 0.9) 0%, rgba(147, 39, 143, 0.9) 100%), url("../images/stage1.jpeg") no-repeat center center;
  background-size: cover;
  z-index: -1;
}

.green-linear {
  background: linear-gradient(225deg, #184e68 0%, #00220a 100%);
  color: var(--bs-light);
}

section.content {
  padding: 3rem 0;
  margin-bottom: 0;
}
section.content h3 {
  margin-bottom: 40px;
}
section.content p {
  font-size: 1.125rem;
}
section.content .wave-card {
  background: var(--bs-gray-400);
  color: var(--bs-light);
  border: none;
  min-width: 300px;
  overflow: hidden;
}
section.content .wave-card .card-title {
  color: var(--bs-primary);
}
section.content .wave-card p {
  color: var(--bs-dark);
  font-size: 1rem;
}
section.content .wave-card:hover {
  background: var(--bs-light);
}

#ad {
  width: 25%;
}
#ad img {
  width: 100%;
}
@media only screen and (max-width : 992px) {
  #ad {
    width: 100%;
  }
  #ad img {
    min-width: 320px;
  }
}

.stage-list {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.stage-list .stage-content {
  display: flex;
  gap: 0.5rem;
}
@media (max-width: 768px) {
  .stage-list .stage-content {
    flex-direction: column;
  }
}
.stage-list .stage-content .stage-title {
  flex: 0 0 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  border-radius: 0.5rem;
  word-break: break-word;
  overflow-wrap: break-word;
  text-align: center;
  padding: 0.5rem;
}
.stage-list .stage-content .stage-bg1 {
  background: url(../images/svg/stage-bg.svg) no-repeat center/cover, linear-gradient(to bottom, #00537e 0%, #3aa17e 100%);
}
.stage-list .stage-content .stage-bg2 {
  background: url(../images/svg/stage-bg.svg) no-repeat center/cover, linear-gradient(to bottom, #3e7c8a 0%, #93278f 100%);
}
.stage-list .stage-content .stage-bg3 {
  background: url(../images/svg/stage-bg.svg) no-repeat center/cover, linear-gradient(to bottom, #852d91 0%, #312a6c 99%);
}
.stage-list .stage-content .stage-content-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}
.stage-list .stage-content .stage-item {
  display: flex;
  gap: 0.5rem;
  flex: 1;
}
.stage-list .stage-content .stage-item .stage-item-time {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--bs-secondary-rgb), 0.5);
  border-radius: 0.5rem;
  padding: 1rem;
  flex: 0 0 160px;
}
@media (max-width: 992px) {
  .stage-list .stage-content .stage-item .stage-item-time {
    display: none;
  }
}
.stage-list .stage-content .stage-item .stage-item-detail {
  background: rgba(var(--bs-secondary-rgb), 0.5);
  border-radius: 0.5rem;
  padding: 1.25rem 1rem;
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
@media (max-width: 992px) {
  .stage-list .stage-content .stage-item .stage-item-detail {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}
.stage-list .stage-content .stage-item .item-time {
  display: none;
}
@media (max-width: 992px) {
  .stage-list .stage-content .stage-item .item-time {
    display: block;
  }
}
.stage-list .stage-content .stage-item .item-title {
  margin-bottom: 0.5rem;
  font-weight: bold;
}
.stage-list .stage-content .stage-item .stage-speaker {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.news-card .card-title {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 4px;
}

.news-img {
  flex: 0 0 200px;
}
@media only screen and (max-width : 768px) {
  .news-img {
    flex: 0 0 auto;
  }
}
.news-img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

.detail-content {
  width: 100%;
  margin-top: 1.5rem;
  text-align: justify;
}
.detail-content img {
  width: 100%;
  max-width: 800px;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.date-line {
  display: flex;
  align-items: center;
  font-size: 21px;
}
.date-line::after {
  content: "";
  flex: 1;
  border-top: 2px solid var(--bs-primary);
  margin-left: 0.75rem;
}

.card-check {
  display: flex;
  padding: 1rem;
  border: rgba(var(--bs-secondary-rgb), 0.8) 1px solid;
  border-radius: 8px;
}
.card-check .check-title {
  font-size: 20px;
  margin-bottom: 0.5rem;
  color: var(--bs-primary);
}
.card-check .check-info {
  font-size: 15px;
}
.card-check .form-check-input {
  margin-top: 0.5rem;
  margin-left: 0;
  margin-right: 0.75rem;
  transform: scale(1.3);
}
.card-check.active {
  background-color: rgba(var(--bs-primary-rgb), 0.1);
  border: rgba(var(--bs-primary-rgb), 0.3) 1px solid;
}
.card-check:hover:not(.active) {
  background-color: rgba(var(--bs-light-rgb), 0.7);
}

.form-check-input:checked {
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
}

.video {
  max-width: 1040px;
}

.video-carousel {
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.video-carousel .video-item {
  scroll-snap-align: start;
  width: 100%;
}
@media (min-width: 768px) {
  .video-carousel .video-item {
    width: calc(50% - 0.5rem);
  }
}
@media (min-width: 992px) {
  .video-carousel .video-item {
    width: calc(33.333% - 0.667rem);
  }
}

.video-carousel-prev,
.video-carousel-next {
  width: 40px;
  height: 40px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  opacity: 0.9;
  border-color: lightgrey;
}
.video-carousel-prev:hover,
.video-carousel-next:hover {
  opacity: 1;
}
.video-carousel-prev i,
.video-carousel-next i {
  font-size: 1.25rem;
}

.video-carousel-prev {
  margin-left: -20px;
}

.video-carousel-next {
  margin-right: -20px;
}

#video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-top: -66px;
  position: relative;
}
#video .text-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -30%);
  text-align: center;
  z-index: 1;
}
#video h1 {
  font-size: 4rem;
}
@media only screen and (max-width : 992px) {
  #video h1 {
    font-size: 2.5rem;
  }
}
@media only screen and (max-width : 768px) {
  #video h1 {
    font-size: 2rem;
  }
}
#video h2 {
  font-size: 3rem;
}
@media only screen and (max-width : 992px) {
  #video h2 {
    font-size: 2rem;
  }
}
@media only screen and (max-width : 768px) {
  #video h2 {
    font-size: 1.5rem;
  }
}
#video .video-cover {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}

.highlight-circle {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  display: flex;
  align-items: start;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 2px dashed rgba(var(--bs-primary-rgb), 0.2);
  background: rgba(var(--bs-light-green-rgb), 0.7);
  padding: 1rem;
}
.highlight-circle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease;
  z-index: 0;
  background: linear-gradient(-121deg, #6e7ff3 0%, #1d4652 0%, #3e7c8a 100%);
}
.highlight-circle .circle-content {
  text-align: center;
  color: var(--bs-primary);
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}
.highlight-circle .circle-icon {
  font-size: 4.5rem;
  transition: opacity 0.3s ease;
  background: var(--bs-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: 1rem;
  color: transparent;
  display: inline-block;
}
.highlight-circle .circle-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.75rem;
  margin-top: 1rem;
  line-height: 1.2;
  position: relative;
  z-index: 2;
  transition: opacity 0.3s ease;
  background: linear-gradient(135deg, var(--bs-primary) 0%, var(--bs-success) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.highlight-circle .circle-subtitle {
  font-size: 15px;
  display: block;
  font-weight: bold;
  position: relative;
  z-index: 2;
  transition: color 0.3s ease, opacity 0.3s ease;
  margin-bottom: 0.5rem;
  padding: 0 2rem;
}
.highlight-circle .circle-desc {
  opacity: 0;
  display: none;
  font-size: 15px;
  line-height: 1.3;
  position: relative;
  z-index: 2;
  padding: 0 1rem;
  transition: opacity 0.3s ease;
}
.highlight-circle.tech-blue {
  background: rgba(var(--bs-light-blue-rgb), 0.5);
  border-color: rgba(125, 190, 243, 0.5);
}
.highlight-circle.tech-blue .circle-content {
  color: #42a5f5;
}
.highlight-circle.tech-blue .circle-icon,
.highlight-circle.tech-blue .circle-title {
  background: linear-gradient(-13deg, #007bcb 0%, #27a3df 100%, #6e7ff3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.highlight-circle.tech-blue::before {
  background: linear-gradient(-13deg, #007bcb 0%, #27a3df 100%, #6e7ff3 100%);
}
.highlight-circle.special-yellow {
  background: rgba(var(--bs-light-yellow-rgb), 0.5);
  border-color: rgba(241, 156, 87, 0.4);
}
.highlight-circle.special-yellow .circle-content {
  color: #f19c57;
}
.highlight-circle.special-yellow .circle-icon {
  background: #edbd39;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.highlight-circle.special-yellow .circle-title {
  background: linear-gradient(-45deg, #d9e021 0%, #fb872b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.highlight-circle.special-yellow::before {
  background: linear-gradient(-45deg, #d9e021 0%, #fb872b 100%);
}
.highlight-circle:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(var(--bs-light-green-rgb), 0.4);
  border-width: 1px;
  border-style: solid;
  align-items: center;
}
.highlight-circle:hover::before {
  width: 97%;
  height: 97%;
}
.highlight-circle:hover .circle-content {
  color: var(--bs-light);
}
.highlight-circle:hover .circle-icon {
  background: var(--bs-light);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.2;
  font-size: 3.75rem;
  display: none;
}
.highlight-circle:hover .circle-title {
  background: var(--bs-light);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transform: scale(0.9);
  margin-bottom: 0.5rem;
  margin-top: 0;
}
.highlight-circle:hover .circle-subtitle {
  opacity: 1;
  display: none;
}
.highlight-circle:hover .circle-desc {
  opacity: 1;
  display: block;
  color: var(--bs-light);
}
@media (max-width: 1200px) {
  .highlight-circle .circle-icon {
    font-size: 3.75rem;
  }
  .highlight-circle .circle-title {
    font-size: 1.25rem;
  }
  .highlight-circle .circle-subtitle {
    font-size: 0.75rem;
  }
  .highlight-circle .circle-desc {
    font-size: 0.7rem;
  }
  .highlight-circle:hover .circle-icon {
    font-size: 2rem;
  }
}
@media only screen and (max-width : 992px) {
  .highlight-circle {
    align-items: center;
  }
  .highlight-circle .circle-icon {
    font-size: 3.25rem;
  }
  .highlight-circle .circle-title {
    font-size: 1.25rem;
  }
  .highlight-circle .circle-subtitle {
    font-size: 1rem;
  }
  .highlight-circle .circle-desc {
    font-size: 14px;
    padding: 0 0.5rem;
  }
  .highlight-circle .circle-content {
    margin-top: -40px;
  }
  .highlight-circle:hover .circle-icon {
    font-size: 2.5rem;
    margin-top: -20px;
  }
  .highlight-circle:hover .circle-content {
    margin-top: -40px;
  }
}

.card {
  position: relative;
  margin-bottom: 1rem;
}
.card.card-bg-1 {
  border: none;
}
.card.card-bg-1::before {
  content: "";
  position: absolute;
  border-radius: 8px;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/card1.png");
  background-size: cover;
  background-position: center;
}
.card.card-bg-2 {
  border: none;
}
.card.card-bg-2::before {
  content: "";
  position: absolute;
  border-radius: 8px;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/card2.png");
  background-size: cover;
  background-position: center;
}
.card.card-bg-3 {
  border: none;
}
.card.card-bg-3::before {
  content: "";
  position: absolute;
  border-radius: 8px;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/card3.png");
  background-size: cover;
  background-position: center;
}
.card.rounded-lg {
  border-radius: 1rem;
}
.card .bg-icon {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 100px;
  color: var(--bs-dark);
  line-height: 1;
  opacity: 0.1;
  z-index: 0;
  pointer-events: none;
}
.card.speaker {
  cursor: pointer;
  border: 1px solid white;
}
.card.speaker img {
  width: 100%;
  aspect-ratio: 3/4;
  -o-object-fit: cover;
     object-fit: cover;
}
.card.speaker::before {
  content: "";
  position: absolute;
  pointer-events: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(1, 1, 1, 0) 60%, var(--bs-dark) 100%);
}
.card.speaker:hover::before {
  background: linear-gradient(180deg, rgba(1, 1, 1, 0) 60%, var(--bs-primary) 100%);
}

.card-title {
  font-size: 1rem;
  font-weight: bold;
  color: var(--bs-primary);
  margin-bottom: 12px;
}
.card-title i.bi {
  margin-right: 0.5rem;
}

.card-text {
  font-size: 1.125rem;
}

.btn {
  --bs-btn-padding-x: 1rem;
  --bs-btn-padding-y: 0.375rem;
  --bs-btn-disabled-opacity: 0.6;
}

.btn-primary {
  --bs-btn-bg: rgba(var(--bs-primary-rgb), 0.85);
  --bs-btn-border-color: rgba(var(--bs-primary-rgb), 0.8);
  --bs-btn-hover-bg: rgba(var(--bs-primary-rgb), 1);
  --bs-btn-hover-border-color: rgba(var(--bs-primary-rgb), 0.9);
  --bs-btn-focus-shadow-rgb: 17, 87, 99;
  --bs-btn-active-bg: rgba(var(--bs-primary-rgb), 1);
  --bs-btn-active-border-color: rgba(var(--bs-primary-rgb), 1);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-bg: rgba(var(--bs-primary-rgb), 1);
  --bs-btn-disabled-border-color: rgba(var(--bs-primary-rgb), 0.8);
}

.btn-outline-primary {
  --bs-btn-color: var(--bs-primary);
  --bs-btn-hover-color: var(--bs-light);
  --bs-btn-bg: transparent;
  --bs-btn-border-color: var(--bs-primary);
  --bs-btn-hover-bg: rgba(var(--bs-primary-rgb), 1);
  --bs-btn-hover-border-color: var(--bs-primary);
  --bs-btn-focus-shadow-rgb: 17, 87, 99;
  --bs-btn-active-bg: rgba(var(--bs-primary-rgb), 1);
  --bs-btn-active-border-color: var(--bs-primary);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: var(--bs-primary);
  --bs-btn-disabled-color: var(--bs-primary);
}

.btn-success {
  --bs-btn-bg: rgba(var(--bs-success-rgb), 0.85);
  --bs-btn-border-color: rgba(var(--bs-success-rgb), 0.8);
  --bs-btn-hover-bg: rgba(var(--bs-success-rgb), 1);
  --bs-btn-hover-border-color: rgba(var(--bs-success-rgb), 0.9);
  --bs-btn-focus-shadow-rgb: 17, 87, 99;
  --bs-btn-active-bg: rgba(var(--bs-success-rgb), 1);
  --bs-btn-active-border-color: rgba(var(--bs-success-rgb), 1);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-bg: rgba(var(--bs-success-rgb), 1);
  --bs-btn-disabled-border-color: rgba(var(--bs-success-rgb), 0.8);
}

.btn-outline-success {
  --bs-btn-color: var(--bs-success);
  --bs-btn-hover-color: var(--bs-light);
  --bs-btn-bg: transparent;
  --bs-btn-border-color: var(--bs-success);
  --bs-btn-hover-bg: rgba(var(--bs-success-rgb), 1);
  --bs-btn-hover-border-color: var(--bs-success);
  --bs-btn-focus-shadow-rgb: 17, 87, 99;
  --bs-btn-active-bg: rgba(var(--bs-success-rgb), 1);
  --bs-btn-active-border-color: var(--bs-success);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: var(--bs-success);
  --bs-btn-disabled-color: var(--bs-success);
}

.text-bg-primary {
  color: #fff !important;
  background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity, 1)) !important;
}

.badge {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: #fff;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  background-image: none;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #333;
}

.carousel-control-next,
.carousel-control-prev {
  width: 10%;
  min-width: 40px;
}

.lightbox-carousel .carousel-control-next-icon {
  background-image: url("../images/svg/arrow-right-circle-fill.svg");
}
.lightbox-carousel .carousel-control-prev-icon {
  background-image: url("../images/svg/arrow-left-circle-fill.svg");
}
.lightbox-carousel .carousel-control-prev-icon,
.lightbox-carousel .carousel-control-next-icon {
  background-color: none;
}

.carousel-multiple .carousel-control-next,
.carousel-multiple .carousel-control-prev {
  width: auto;
}
.carousel-multiple .carousel-inner .carousel-item {
  flex-wrap: nowrap;
}
.carousel-multiple .carousel-inner .card:not(.speaker) {
  margin: 0;
}
.carousel-multiple .carousel-inner .card:not(.speaker):hover {
  border-color: var(--bs-primary);
}
.carousel-multiple .carousel-inner .carousel-item.active,
.carousel-multiple .carousel-inner .carousel-item-next,
.carousel-multiple .carousel-inner .carousel-item-prev {
  display: flex;
}

@media (max-width: 767px) {
  #brands.carousel-multiple .carousel-inner .carousel-item-end.active,
  #brands.carousel-multiple .carousel-inner .carousel-item-next {
    transform: translateX(50%);
  }
  #brands.carousel-multiple .carousel-inner .carousel-item-start.active,
  #brands.carousel-multiple .carousel-inner .carousel-item-prev {
    transform: translateX(-50%);
  }
}
@media (min-width: 768px) {
  #brands.carousel-multiple .carousel-inner .carousel-item-end.active,
  #brands.carousel-multiple .carousel-inner .carousel-item-next {
    transform: translateX(25%);
  }
  #brands.carousel-multiple .carousel-inner .carousel-item-start.active,
  #brands.carousel-multiple .carousel-inner .carousel-item-prev {
    transform: translateX(-25%);
  }
}
@media (min-width: 992px) {
  #brands.carousel-multiple .carousel-inner .carousel-item-end.active,
  #brands.carousel-multiple .carousel-inner .carousel-item-next {
    transform: translateX(20%);
  }
  #brands.carousel-multiple .carousel-inner .carousel-item-start.active,
  #brands.carousel-multiple .carousel-inner .carousel-item-prev {
    transform: translateX(-20%);
  }
}
#brands.carousel-multiple .carousel-inner .carousel-item-end,
#brands.carousel-multiple .carousel-inner .carousel-item-start {
  transform: translateX(0);
}

@media (max-width: 767px) {
  #speakers.carousel-multiple .carousel-inner .carousel-item-end.active,
  #speakers.carousel-multiple .carousel-inner .carousel-item-next {
    transform: translateX(50%);
  }
  #speakers.carousel-multiple .carousel-inner .carousel-item-start.active,
  #speakers.carousel-multiple .carousel-inner .carousel-item-prev {
    transform: translateX(-50%);
  }
}
@media (min-width: 768px) {
  #speakers.carousel-multiple .carousel-inner .carousel-item-end.active,
  #speakers.carousel-multiple .carousel-inner .carousel-item-next {
    transform: translateX(33.33%);
  }
  #speakers.carousel-multiple .carousel-inner .carousel-item-start.active,
  #speakers.carousel-multiple .carousel-inner .carousel-item-prev {
    transform: translateX(-33.33%);
  }
}
@media (min-width: 992px) {
  #speakers.carousel-multiple .carousel-inner .carousel-item-end.active,
  #speakers.carousel-multiple .carousel-inner .carousel-item-next {
    transform: translateX(25%);
  }
  #speakers.carousel-multiple .carousel-inner .carousel-item-start.active,
  #speakers.carousel-multiple .carousel-inner .carousel-item-prev {
    transform: translateX(-25%);
  }
}
@media (min-width: 1200px) {
  #speakers.carousel-multiple .carousel-inner .carousel-item-end.active,
  #speakers.carousel-multiple .carousel-inner .carousel-item-next {
    transform: translateX(20%);
  }
  #speakers.carousel-multiple .carousel-inner .carousel-item-start.active,
  #speakers.carousel-multiple .carousel-inner .carousel-item-prev {
    transform: translateX(-20%);
  }
}
#speakers.carousel-multiple .carousel-inner .carousel-item-end,
#speakers.carousel-multiple .carousel-inner .carousel-item-start {
  transform: translateX(0);
}

.ratio-news {
  --bs-aspect-ratio: 67.5%;
}

.ratio {
  position: relative !important;
  overflow: hidden;
}
.ratio > * {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
}
.ratio img {
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 8px;
  transform: translateZ(0);
}

@supports (-webkit-appearance: none) and (not (-webkit-touch-callout: none)) {
  .ratio {
    display: block !important;
  }
  .ratio img {
    display: block !important;
    max-width: none !important;
  }
}
.image-ratio {
  position: relative;
  overflow: hidden;
  display: block;
}
.image-ratio.ratio-16x9::before {
  content: "";
  display: block;
  padding-bottom: 56.25%;
}
.image-ratio.ratio-4x3::before {
  content: "";
  display: block;
  padding-bottom: 75%;
}
.image-ratio.ratio-1x1::before {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.image-ratio.ratio-21x9::before {
  content: "";
  display: block;
  padding-bottom: 42.857143%;
}
.image-ratio.ratio-3x4::before {
  content: "";
  display: block;
  padding-bottom: 130%;
}
.image-ratio img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: translateZ(0);
}

.timeline {
  border-left: 3px solid rgba(var(--bs-primary-rgb), 0.9);
  border-bottom-right-radius: 8px;
  border-top-right-radius: 8px;
  background: rgba(var(--bs-primary-rgb), 0.1);
  margin: 0 0 0 auto;
  letter-spacing: 0.2px;
  position: relative;
  line-height: 1.4em;
  padding: 2rem;
  list-style: none;
  text-align: left;
  max-width: calc(100% - 150px);
}
@media (max-width: 767px) {
  .timeline {
    max-width: 98%;
    padding: 25px;
  }
}
.timeline h1 {
  font-weight: 300;
  font-size: 1.4em;
}
.timeline h2,
.timeline h3 {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 10px;
}
.timeline .event {
  border-bottom: 1px dashed var(--bs-primary);
  padding-bottom: 25px;
  margin-bottom: 25px;
  position: relative;
}
@media (max-width: 767px) {
  .timeline .event {
    padding-top: 30px;
  }
}
.timeline .event:last-of-type {
  padding-bottom: 0;
  margin-bottom: 0;
  border: none;
}
.timeline .event:before, .timeline .event:after {
  position: absolute;
  display: block;
  top: 0;
}
.timeline .event:before {
  left: -180px;
  content: attr(data-date);
  text-align: right;
  min-width: 120px;
}
@media (max-width: 767px) {
  .timeline .event:before {
    left: 0px;
    text-align: left;
  }
}
.timeline .event:after {
  box-shadow: 0 0 0 3px rgba(var(--bs-primary-rgb), 0.9);
  left: -38px;
  background: var(--bs-light);
  border-radius: 50%;
  height: 9px;
  width: 9px;
  content: "";
  top: 5px;
}
@media (max-width: 767px) {
  .timeline .event:after {
    left: -31.8px;
  }
}

.rtl .timeline {
  border-left: 0;
  text-align: right;
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
  border-right: 3px solid #727cf5;
}
.rtl .timeline .event::before {
  left: 0;
  right: -170px;
}
.rtl .timeline .event::after {
  left: 0;
  right: -55.8px;
}

.fixed-bar {
  position: fixed;
  display: flex;
  gap: 1rem;
  flex-direction: column;
  z-index: 1000;
  top: 40%;
  right: 0;
  background-color: rgba(var(--bs-dark-rgb), 1);
  padding: 0.5rem 0.25rem;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px 0 0 10px;
}
.fixed-bar .btn {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  flex: 1;
}
.fixed-bar .btn:hover {
  background-color: rgba(var(--bs-light-rgb), 0.2);
}
@media only screen and (max-width : 768px) {
  .fixed-bar {
    gap: 0.5rem;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    flex-direction: row;
    justify-content: space-around;
    padding: 0;
    border-radius: 0;
  }
}