.loading {
  position: relative;
}
.loading::after {
  content: url("../images/loading.svg");
  position: absolute;
  right: 0;
  left: 0;
  top: 50%;
  height: 30px;
  transform: translateY(-50%);
}

.form-loading {
  position: relative;
}
.form-loading::before {
  content: "";
  position: absolute;
  background-color: rgba(255, 255, 255, 0.8);
  width: 100%;
  height: 100%;
  z-index: 1;
}
.form-loading::after {
  content: url("../images/form-loading.svg");
  position: absolute;
  right: 50%;
  top: 50%;
  height: 30px;
  transform: translateY(-50%);
  z-index: 2;
}

.uploaded-file-card {
  background-color: #fcfaff;
  border: 1px solid #e9ecef;
  border-radius: 12px;
}
.uploaded-file-card .file-name-display {
  width: 80%;
}

.btn-close-custom {
  background: none;
  border: none;
  padding: 0;
  line-height: 1;
  transition: 0.2s;
}

.btn-close-custom:hover i {
  color: #dc3545 !important;
}

.upload-box.hidden {
  display: none !important;
}

.text-gold {
  color: #c5a059;
  font-weight: 500;
}
.text-gold:hover {
  color: #b08e4d;
}

.btn-gold {
  background-color: #c5a059;
  color: #2b2b2b;
  border: none;
  border-radius: 25px;
  transition: 0.3s;
}
.btn-gold:hover {
  background-color: #b08e4d;
  color: white;
}

.upload-wrapper .invalid-feedback {
  display: none;
}

.upload-wrapper.has-error .upload-box {
  border-color: #dc3545 !important;
}

.stepper-container {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
}

.stepper-wrapper {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.progress-bar-background {
  position: absolute;
  top: 55px;
  left: 50%;
  width: 100%;
  height: 4px;
  background: var(--text-color-2);
  z-index: 1;
  max-width: 800px;
  transform: translateX(-50%);
}

.progress-bar-fill {
  height: 100%;
  width: 0%;
  background: #c5a059;
  transition: width 0.4s ease-in-out;
}

.stepper-item.active .step-counter {
  background: #c5a059;
  color: white;
  border: 2px solid #c5a059;
}

.btn-theme-switcher {
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px;
  transition: all 0.3s ease;
  background-color: transparent;
  margin-inline-start: 3.125rem;
}

.sm-line::after {
  content: "";
  width: 6.25rem;
  height: 0.125rem;
  display: block;
  margin: 0 auto 2.375rem auto;
}
@media (max-width: 767px) {
  .sm-line::after {
    width: 100%;
  }
}

.shaping-line::after {
  content: "";
  width: 100%;
  height: 0.125rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  margin: 0.875rem auto 1.5rem auto;
}

[data-theme=light] .btn-theme-switcher {
  background-image: url("../images/light-theme-btn.png");
}
[data-theme=light] .sm-line::after {
  content: url("../images/sm-line-light.png");
}
[data-theme=light] .shaping-line::after {
  background-image: url("../images/shaping-line-light.png");
}

[data-theme=dark] .btn-theme-switcher {
  background-image: url("../images/dark-theme-btn.png");
}
[data-theme=dark] .sm-line::after {
  content: url("../images/sm-line-dark.png");
}
[data-theme=dark] .shaping-line::after {
  background-image: url("../images/shaping-line-dark.png");
}
[data-theme=dark] .navbar-toggler {
  background-color: #fff;
}

:root {
  --bg-body: #fff;
  --bg-card: #ffffff;
  --text-main: #526366;
  --border-color: #dee2e6;
  --input-bg: #ffffff;
  --secondary-color: #526366;
  --secondary-bg: #526366;
  --text-color: #fff;
  --btn-bg: #CDA44C;
  --about-bg: #D9D9D9;
  --light-gray-2: #f1f1f1;
  --page-title-color: #12313A;
  --text-color-2: #474747;
  --gray-a5: #A5A5A5;
  --gold-color: #c5a059;
}

[data-theme=dark] {
  --bg-body: #111516;
  --bg-card: #1e1e1e;
  --text-main: #e0e0e0;
  --border-color: #333333;
  --input-bg: #2d2d2d;
  --secondary-color: #fff;
  --secondary-bg: #CDA44C;
  --text-color: #0e1618;
  --btn-bg: #fff;
  --about-bg: #fff;
  --light-gray-2: #fff;
  --page-title-color: #fff;
  --text-color-2: #fff;
  --gray-a5: #fff;
}

body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background-color: var(--bg-body);
  color: var(--text-main);
  transition: background 0.3s ease;
}

.registration {
  margin-top: 5.3125rem;
}
.registration .registration-title {
  font-size: 2rem;
  font-weight: 600;
  color: #526366;
}
.registration .registration-card {
  border: 1px solid #4a4a4a;
  border-radius: 30px;
}
.registration .registration-card.successStep h3 {
  color: var(--secondary-color);
}
.registration .registration-card.successStep p {
  color: var(--secondary-color);
}
.registration {
  /* Stepper Styling */
}
.registration .stepper-wrapper {
  display: flex;
  justify-content: space-between;
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
.registration .stepper-wrapper::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: #ccc;
  z-index: 1;
}
.registration .stepper-item {
  position: relative;
  z-index: 2;
  padding: 0 15px;
}
.registration .step-counter {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #4a4a4a;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}
.registration .stepper-item.active .step-counter {
  background: #c5a059;
}
.registration {
  /* Form Styling */
}
.registration .section-title {
  color: var(--secondary-color);
  font-size: 1.5rem;
  font-weight: 600;
  border-bottom: 1px solid var(--light-border);
  padding-bottom: 10px;
  text-align: start;
  margin-top: 0;
}
.registration .form-section-text {
  color: var(--secondary-color);
  font-size: 1.0625rem;
  font-weight: 600;
}
.registration .upload-box {
  border: 1px dashed #ccc;
  border-radius: 15px;
  padding: 40px;
  text-align: center;
  color: var(--secondary-color);
  cursor: pointer;
  transition: 0.3s;
  background-color: transparent;
}
.registration .upload-box:hover {
  border-color: #c5a059;
}
.registration {
  /* Buttons */
}
.registration .btn-nav {
  border-radius: 25px;
  padding: 0.625rem 1.875rem;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .registration .btn-nav i {
    display: none;
  }
}
.registration .btn-nav.btn-secondary {
  background-color: var(--gray-a5);
  outline: 1px solid var(--gray-a5);
  outline-offset: 2px;
  color: var(--bg-body);
}
.registration .btn-nav.btn-secondary i {
  margin-inline-end: 0.9375rem;
}
.registration .btn-gold {
  background-color: #c5a059;
  color: #474747;
  border: none;
  outline: 1px solid #c5a059;
  outline-offset: 2px;
}
.registration .btn-gold i {
  margin-inline-start: 0.9375rem;
}
.registration .btn-gold:hover {
  background-color: #b08e4d;
  color: #474747;
}
.registration .form-control.is-invalid {
  border-color: #dc3545;
  background-image: none;
}
.registration .invalid-feedback {
  font-size: 0.8rem;
  color: #dc3545;
}
.registration .is-invalid-box {
  border: 2px dashed #dc3545 !important;
  background-color: transparent;
}
.registration .is-invalid-box .invalid-feedback {
  display: block !important;
}
.registration .upload-box {
  transition: all 0.3s ease;
  position: relative;
}
.registration .text-success {
  color: #198754 !important;
  overflow: hidden;
  text-overflow: ellipsis;
}
.registration .registration-option {
  border-radius: 15px;
  border: 1px solid #e0e0e0;
  transition: 0.3s;
}
.registration .selected-disabled {
  background-color: #f1f1f1;
  border-color: #c5a059;
  opacity: 0.8;
}
.registration .custom-radio:checked {
  background-color: #c5a059;
  border-color: #c5a059;
}
.registration .text-gold {
  color: #c5a059 !important;
}
.registration .input-group .btn {
  border-color: #dee2e6;
  font-weight: bold;
}
.registration .input-group input {
  border-color: transparent;
}
.registration .btn-submit-final {
  background-color: #c5a059 !important;
  padding-left: 50px;
  padding-right: 50px;
}
.registration .checkout-card {
  background-color: #fff;
  border: 1px solid #e0e0e0;
}
.registration .success-circle {
  width: 100px;
  height: 100px;
  background-color: #e0e0e0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.registration .success-circle i {
  font-size: 50px;
  color: #c5a059;
}
.registration .important-notes-section ul li {
  color: var(--text-color-2);
}
.registration .important-notes-section .form-check-label {
  color: var(--text-color-2);
}

.form-control,
.form-select {
  border-radius: 10px !important;
  padding: 10px 15px;
  border-color: var(--secondary-color);
  background-color: transparent !important;
  color: var(--page-title-color);
  min-width: 100% !important;
}
.form-control::-moz-placeholder, .form-select::-moz-placeholder {
  color: var(--secondary-color);
}
.form-control::placeholder,
.form-select::placeholder {
  color: var(--secondary-color);
}
.form-control:focus,
.form-select:focus {
  color: var(--page-title-color);
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px var(--bg-body) inset !important;
  -webkit-text-fill-color: var(--page-title-color) !important;
}

.table-section {
  font-family: "Arial", sans-serif;
  margin: 20px;
  color: #333;
}

.table-title {
  font-size: 2rem;
  font-weight: 600;
  color: #526366;
  text-align: center;
}

.fees-table {
  width: 100%;
  border-collapse: collapse;
  border: 3px solid #CDA44C;
  /* The main teal border */
}

.fees-table thead {
  background-color: #CDA44C;
  color: white;
}

.fees-table th {
  padding: 15px;
  text-align: center;
  border: 1px solid white;
  font-weight: 600;
}

.fees-table th span {
  font-size: 12px;
  font-weight: normal;
}

.fees-table td {
  padding: 15px;
  text-align: center;
  border: 1px solid #CDA44C;
  font-size: 14px;
}

.fees-table td.category-name {
  text-align: center;
  font-weight: 500;
}

/* Hover effect for better UX */
.fees-table tbody tr:hover {
  background-color: #f0f9fb;
}

.contact-container {
  padding: 40px 20px;
}

.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-form {
  flex: 1;
  min-width: 300px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.input-group {
  margin-bottom: 15px;
}

input,
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  outline: none;
  transition: 0.3s;
}

input:focus,
textarea:focus {
  border-color: #CDA44C;
}

.submit-btn {
  background-color: #CDA44C;
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  width: 100%;
  font-size: 16px;
}

.info-card {
  display: flex;
  align-items: center;
  border: 1.5px solid #CDA44C;
  border-radius: 30px;
  padding: 10px 20px;
  margin-bottom: 15px;
  background: white;
  direction: ltr;
}

.info-card .icon {
  margin-right: 15px;
  color: #CDA44C;
  font-size: 20px;
}

.info-card p {
  margin: 0;
  color: #444;
  font-weight: 500;
}

.map-container {
  border-radius: 15px;
  overflow: hidden;
  margin-top: 20px;
  border: 1px solid #ddd;
}

.error-msg {
  color: #d9534f;
  font-size: 12px;
  height: 18px;
  display: block;
  margin-left: 5px;
}

.hero-section {
  position: relative;
  overflow: hidden;
}
.hero-section .hero-bg {
  position: relative;
  width: 100%;
  height: 100%;
  padding-top: 4.875rem;
}
.hero-section .vector-bg {
  position: absolute;
}
.hero-section .vector-bg.vector {
  max-width: 50%;
  height: 100%;
  top: 0;
  right: 0;
}
@media (max-width: 767px) {
  .hero-section .vector-bg {
    display: none;
  }
}

.logo-image {
  width: 6.125rem;
}

.navbar.fixed-top {
  background-color: var(--bg-body);
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1215686275);
}
@media (max-width: 767px) {
  .navbar.fixed-top .cta-button-container {
    margin-bottom: 0.9375rem;
  }
}

@media (min-width: 992px) {
  .navbar-expand-lg .navbar-collapse {
    justify-content: space-between;
  }
}
.navbar-nav {
  text-align: start;
}
.navbar-nav .nav-item {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.09625rem;
  padding: 0.3125rem;
  color: var(--text-main);
}
@media (max-width: 767px) {
  .navbar-nav .nav-item {
    flex-direction: column;
    justify-content: start;
  }
}
.navbar-nav .nav-item .dropdown-menu.show {
  right: 0;
  border: none;
  background-color: var(--secondary-color);
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.navbar-nav .nav-item .dropdown-menu.show li {
  text-align: center;
}
.navbar-nav .nav-item .dropdown-menu.show li .dropdown-item {
  color: var(--text-color);
}
.navbar-nav .nav-item .dropdown-menu.show li .dropdown-item:hover {
  background-color: transparent;
}
.navbar-nav .nav-item .dropdown-menu.show li .dropdown-item.active {
  background-color: #CDA44C !important;
}
.navbar-nav a.nav-link {
  color: var(--text-main) !important;
  text-decoration: none;
  text-transform: capitalize;
  font-size: 0.875rem;
}
.navbar-nav a.nav-link.show {
  border-bottom: 2px solid #CDA44C;
}
.navbar-nav a.nav-link.active {
  color: #CDA44C !important;
}

.event-date-card {
  display: flex;
  flex-direction: column;
  border-radius: 18px;
  border: 1px solid #0e1618;
  padding: 10px;
  margin-top: 1.875rem;
}
.event-date-card .event-date {
  font-weight: 700;
  color: #795275;
  font-size: 3rem;
}
.event-date-card .event-month {
  font-weight: 700;
  color: #795275;
  font-size: 1.5rem;
}

.event-title {
  margin-top: 1.375rem;
}
.event-title .event-number {
  font-weight: 800;
  color: #0e1618;
  font-size: 13.0625rem;
  line-height: 10.625rem;
}
.event-title .event-suffix {
  font-weight: 800;
  color: #0e1618;
  font-size: 5.25rem;
  line-height: 4.375rem;
}
.event-title .event-name {
  font-weight: 800;
  color: #6d6d92;
  font-size: 2.8125rem;
  line-height: 2.9375rem;
}
.event-title .event-subtitle {
  font-weight: 800;
  color: #795275;
  font-size: 1.4375rem;
  line-height: 1.875rem;
}

.event-location {
  margin-top: 1.25rem;
  font-weight: 600;
  color: #0e1618;
  font-size: 1.4375rem;
  line-height: 1.3125rem;
}

.countdown-container {
  display: flex;
  justify-content: space-between;
  background-color: var(--secondary-bg);
  border-radius: 0.875rem;
  padding: 1.4375rem;
  margin-top: -2.5rem;
  position: relative;
}
@media (max-width: 767px) {
  .countdown-container {
    flex-wrap: wrap;
    padding: 0.9375rem 0.9375rem;
  }
  .countdown-container::after, .countdown-container::before {
    display: none;
  }
}
.countdown-container .countdown-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.countdown-container .countdown-value {
  font-weight: 700;
  color: var(--text-color);
  font-size: 1.75rem;
  line-height: normal;
}
@media (max-width: 767px) {
  .countdown-container .countdown-value {
    font-size: 1.125rem;
  }
}
.countdown-container .countdown-label {
  font-weight: 500;
  color: var(--text-color);
  font-size: 1.125rem;
}
@media (max-width: 767px) {
  .countdown-container .countdown-label {
    font-size: 0.6875rem;
  }
}

.mb-hero-img {
  display: none;
  background: #12313a;
}
@media (max-width: 767px) {
  .mb-hero-img {
    display: block;
    width: 100%;
    height: auto;
    margin-top: 1.25rem;
  }
}

.hero-image {
  position: absolute;
  width: 751px;
  height: 743px;
  top: 97px;
  right: 117px;
}

.cta-button-container {
  position: relative;
}
.cta-button-container .cta-button {
  font-weight: 700;
  background-color: var(--btn-bg);
  border-radius: 2.1875rem;
  padding: 0.75rem;
  border: none;
  font-size: 1rem;
  text-align: center;
  border: none;
  cursor: pointer;
  padding: 0.75rem 2.5rem;
  color: var(--text-color);
  text-decoration: none;
}
.cta-button-container .cta-button.white {
  margin-inline-end: 0.9375rem;
  background-color: var(--secondary-color);
}

@media (max-width: 767px) {
  .event-card {
    margin-bottom: 1.25rem;
  }
}
.event-card .event-header {
  margin-top: 5rem;
}
.event-card .event-header .main-title {
  font-weight: 800;
  color: var(--secondary-color);
  font-size: 2.5625rem;
}
.event-card .event-details .date-container {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.event-card .event-details .date-container .date-text {
  color: #CDA44C;
  font-size: 1.3125rem;
  font-weight: 600;
}
.event-card .event-details .date-container .date-text p {
  margin: 0;
}
.event-card .event-details .location {
  margin: 1.5rem 0;
  font-weight: 600;
  color: var(--secondary-color);
  font-size: 0.875rem;
  line-height: 1.3125rem;
}
.event-card .event-description p {
  font-weight: 500;
  color: var(--secondary-color);
  font-size: 1.0625rem;
  line-height: 1.3125rem;
}

@media (max-width: 1199.98px) {
  .hero-section {
    height: auto;
    padding-bottom: 2.5rem;
  }
  .hero-image {
    position: relative;
    top: 1.25rem;
    right: 0;
    width: 100%;
    height: auto;
    margin-top: 2.5rem;
  }
  .countdown-container {
    position: relative;
    width: 100%;
    height: auto;
    top: 0;
    left: 0;
    margin-top: -2.5rem;
    z-index: 2;
  }
  .countdown-bg {
    width: 100%;
  }
}
@media (max-width: 991.98px) {
  .navigation {
    width: 100%;
    left: 0;
  }
  .event-title {
    width: 100%;
    left: 0;
  }
  .event-number {
    font-size: 150px;
  }
  .event-suffix {
    font-size: 60px;
  }
  .event-name {
    font-size: 36px;
  }
  .event-subtitle {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .about-section {
    margin-bottom: 1.5rem;
  }
}
.about-section .about-content {
  margin-top: 1.6875rem;
  font-size: rm(17);
  color: #474747;
  line-height: 1.375rem;
}
.about-section .about-card {
  margin-top: 1.5rem;
  background-color: var(--about-bg);
  border-radius: 1.5rem;
  padding: 1.5rem 1.5rem;
  height: 100%;
}
.about-section .about-card .about-icon {
  background-color: #526366;
  width: 3.625rem;
  height: 3.625rem;
  border-radius: 0.5rem;
  padding: 0.53125rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0.75rem;
}
.about-section .about-card h3 {
  font-weight: 600;
  color: #474747;
  font-size: 1.5rem;
  line-height: 1.8125rem;
}
.about-section .about-card p {
  font-weight: 500;
  color: #474747;
  font-size: 1.0625rem;
  line-height: 1.3125rem;
  margin-bottom: 0;
}

.mission-vision-section {
  padding: 3rem 0;
  display: flex;
}
@media (max-width: 767px) {
  .mission-vision-section .mission-col,
  .mission-vision-section .vision-col {
    margin-bottom: 0.9375rem;
  }
}
.mission-vision-section .vision-card,
.mission-vision-section .mission-card {
  background-color: #D3AF62;
  border-radius: 1.5rem;
  padding: 1.5rem 0.875rem;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.mission-vision-section .vision-card h3,
.mission-vision-section .mission-card h3 {
  font-weight: 700;
  color: #474747;
  font-size: 1.5625rem;
  line-height: 3rem;
}
.mission-vision-section .vision-card p,
.mission-vision-section .mission-card p {
  margin-top: 0.5rem;
  font-size: 1.0625rem;
  color: #474747;
  line-height: 1.375rem;
  text-align: justify;
}
@media (max-width: 767px) {
  .mission-vision-section .vision-card,
  .mission-vision-section .mission-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .mission-vision-section .vision-card h3,
  .mission-vision-section .mission-card h3 {
    font-size: 1.25rem;
  }
  .mission-vision-section .vision-card p,
  .mission-vision-section .mission-card p {
    font-size: 1rem;
  }
}
.mission-vision-section .icon {
  margin-inline-start: 0.75rem;
}

.directors-section .director-col {
  display: flex;
}
.directors-section .director-col .directors-card {
  background-color: #526366;
  border: 1px solid #CDA44C;
  border-radius: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  overflow: hidden;
}
@media (max-width: 767px) {
  .directors-section .director-col .directors-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 0.9375rem;
  }
}
.directors-section .director-col .directors-card .card-content {
  padding: 1.5rem;
}
.directors-section .director-col .directors-card .flag_img {
  display: flex;
  justify-content: end;
}
.directors-section .director-col .img_container {
  position: relative;
  min-width: 40%;
  height: 100%;
  display: flex;
  align-items: flex-end;
}
@media (max-width: 767px) {
  .directors-section .director-col .img_container {
    width: 100%;
  }
}
.directors-section .director-col .img_container .director-image {
  max-width: 100%;
}
.directors-section .director-col:first-child .img_container .flag_img {
  left: auto;
  right: 0;
}
.directors-section .director-name {
  margin-top: 2rem;
  font-weight: 700;
  color: #fff;
  font-size: 2.3125rem;
  line-height: 1.75rem;
}
.directors-section .director-name span {
  color: #fff;
  font-weight: 400;
  margin-top: 0.75rem;
  display: inline-block;
}
@media (max-width: 767px) {
  .directors-section .director-col:first-child .img_container {
    order: 1;
  }
}
@media (max-width: 767px) {
  .directors-section .director-col:last-child .img_container {
    justify-content: flex-end;
  }
}
.directors-section .director-title {
  margin-top: 1.1875rem;
  margin-bottom: 1.375rem;
  font-weight: 500;
  color: #D3AF62;
  font-size: 1.1875rem;
  line-height: 1.1875rem;
}
.directors-section .director-bio {
  font-size: 1.0625rem;
  color: #fff;
  line-height: 1.375rem;
}
@media (max-width: 767px) {
  .directors-section .director-bio {
    padding: 1rem;
  }
}

.partners-section {
  margin-top: 3.75rem;
}
.partners-section .partners-header {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .partners-section .partners-header {
    min-width: 100%;
  }
}
.partners-section .partners-title {
  font-weight: 700;
  color: #795275;
  font-size: 3rem;
  white-space: nowrap;
  margin: 0;
}
@media (max-width: 767px) {
  .partners-section .partners-title {
    font-size: 1.875rem;
    text-align: center;
  }
}
.partners-section .partners-area {
  background-color: var(--light-gray-2);
  padding: 1.5rem 0;
  margin-top: 1.5rem;
}
.partners-section .partners-area .section-title h2 {
  color: #474747;
  font-size: 1.9375rem;
  font-weight: 500;
}
.partners-section .partners-logos {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
  margin-inline-start: 6.25rem;
  overflow: hidden;
  align-items: center;
}
@media (max-width: 767px) {
  .partners-section .partners-logos {
    margin-inline-start: 0;
  }
}
.partners-section .partners-logos .partner-logo {
  max-width: 100%;
  margin-inline-end: 4.375rem;
}
@media (max-width: 767px) {
  .partners-section .partners-logos .partner-logo {
    margin-bottom: 0.9375rem;
    margin-inline-end: 0;
  }
}

.cta-section {
  margin-top: 3.75rem;
}
.cta-section .cta-card {
  max-width: 26.75rem;
  height: 100%;
  border-radius: 1.5rem;
  display: flex;
  align-items: center;
  padding: 0.9375rem 1.6875rem;
}
@media (max-width: 767px) {
  .cta-section .cta-card {
    flex-wrap: wrap;
    justify-content: center;
    height: auto;
  }
}
.cta-section .cta-calendar {
  background-color: white;
  border: 2px solid #6d6d92;
}
.cta-section .cta-calendar .cta-text {
  color: #6d6d92;
}
.cta-section .cta-book {
  background-color: #6d6d92;
}
.cta-section .cta-book .cta-text {
  color: white;
}
.cta-section .cta-image {
  width: 10rem;
  height: 9.5rem;
}
.cta-section .cta-icon {
  width: 7.75rem;
  height: 7.75rem;
}
.cta-section .cta-text {
  margin-inline-end: auto;
  margin-inline-start: 1.5rem;
  font-weight: 700;
  font-size: 1.625rem;
  text-align: center;
  letter-spacing: 0.11375rem;
  line-height: 1.8125rem;
}
@media (max-width: 767px) {
  .cta-section .cta-text {
    font-size: 1.125rem;
  }
}
.cta-section .info-grid .register-card {
  background-color: var(--secondary-bg);
  border-radius: 1.5rem;
  padding: 2.5rem 3.125rem;
}
@media (max-width: 767px) {
  .cta-section .info-grid .register-card {
    margin-bottom: 0.9375rem;
  }
}
.cta-section .info-grid .register-card .card-text {
  font-weight: 400;
  color: #fff;
  font-size: 1.0625rem;
  line-height: 1.375rem;
}
.cta-section .info-grid .register-card .card-small-title {
  font-weight: 300;
  color: #fff;
  font-size: 1.4375rem;
  line-height: 1.375rem;
}
.cta-section .info-grid .register-card .card-main-title {
  font-weight: 700;
  color: var(--btn-bg);
  font-size: 2.4375rem;
  line-height: 1.875rem;
}
.cta-section .info-grid .register-card .card-desc {
  font-weight: 300;
  color: #fff;
  font-size: 1.0625rem;
  line-height: 1.375rem;
}
.cta-section .info-grid .register-card .cta-button {
  color: #526366;
}
.cta-section .info-grid .register-card .cta-button img {
  margin-inline-start: 1.1875rem;
}

.pages-nav-section .nav-link,
.pages-nav-section .nav-item {
  color: #526366;
}
.pages-nav-section .nav-link.active,
.pages-nav-section .nav-item.active {
  color: #526366;
}
.pages-nav-section .navbar-toggler {
  background-color: #fff;
}

.page-title {
  margin-top: 11.875rem;
  margin-bottom: 3.125rem;
  display: flex;
  align-items: center;
}
.page-title h2 {
  color: var(--page-title-color);
  font-weight: 700;
  font-size: 2.9375rem;
  text-align: center;
}
.page-title::after {
  content: "";
  display: block;
  width: 13.875rem;
  height: 0.125rem;
  background-color: #CDA44C;
  margin: 0.625rem auto;
}
.page-title::before {
  content: "";
  display: block;
  width: 13.875rem;
  height: 0.125rem;
  background-color: #CDA44C;
  margin: 0.625rem auto;
}

.speakers-text p {
  color: var(--text-color-2);
  font-size: 1.0625rem;
  font-weight: 500;
  text-align: center;
}
.speakers-text p span {
  color: #CDA44C;
  font-weight: 700;
  font-size: 1.875rem;
}

.speakers-section {
  padding: 4.0625rem 2.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.875rem;
}
.speakers-section .speaker_card_outer {
  width: 13.9375rem;
}
.speakers-section .speaker_card {
  position: relative;
  overflow: hidden;
  width: 13.9375rem;
  height: 12.9375rem;
  background-color: var(--secondary-bg);
  border-radius: 1.5625rem;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
.speakers-section .speaker_card .speaker_flag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 3.3125rem;
  height: 2rem;
}
.speakers-section .speaker_name {
  font-weight: 700;
  color: var(--secondary-color);
  font-size: 1.25rem;
  text-align: center;
  margin-top: 1rem;
}

.scientific-committee-section {
  margin-top: 3.75rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.875rem;
}
.scientific-committee-section .speaker_card_outer {
  width: 13.9375rem;
}
.scientific-committee-section .speaker_card {
  position: relative;
  overflow: hidden;
  width: 13.9375rem;
  height: 12.9375rem;
  background-color: var(--secondary-bg);
  border-radius: 1.5625rem;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
.scientific-committee-section .speaker_card .speaker_flag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 3.3125rem;
  height: 2rem;
}
.scientific-committee-section .speaker_name {
  font-weight: 700;
  color: var(--secondary-color);
  font-size: 1.25rem;
  text-align: center;
  margin-top: 1rem;
}
.scientific-committee-section .title .title_text {
  font-weight: 700;
  color: #0e1618;
  font-size: 2.9375rem;
  text-align: center;
  margin-bottom: 2.25rem;
}
.scientific-committee-section .actions {
  display: flex;
  justify-content: center;
  margin-top: 1.25rem;
}
.scientific-committee-section .actions .action_button {
  background-color: #795275;
  color: #fff;
  padding: 1rem 2.0625rem;
  border-radius: 0.625rem;
  font-weight: 700;
  font-size: 1.125rem;
  text-decoration: none;
  border: none;
}
.scientific-committee-section .actions .action_button:hover {
  background-color: rgb(90.6009852217, 61.3990147783, 87.60591133);
}

.calender-section {
  margin-top: 3.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.calender-section .title .title_text {
  font-weight: 700;
  color: var(--secondary-color);
  font-size: 2.9375rem;
  text-align: center;
  margin-bottom: 2.25rem;
}
.calender-section .title .title_text span {
  color: #CDA44C;
}
.calender-section .calendar-container {
  width: 100%;
  padding: 1.25rem;
}
.calender-section .calendar-container .calendar-header {
  background-color: #CDA44C;
  border-radius: 0.5rem 0.5rem 0 0;
  padding: 0.625rem;
  text-align: center;
}
.calender-section .calendar-container .calendar-header .day {
  line-height: 2.0625rem;
  color: #fff;
  font-size: 1.375rem;
  font-weight: 700;
  margin: 0;
}
.calender-section .calendar-container .calendar_table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
}
.calender-section .calendar-container .calendar_table th,
.calender-section .calendar-container .calendar_table td {
  padding: 0.625rem;
}
.calender-section .calendar-container .calendar_table th {
  color: #fff;
  font-weight: 700;
  background-color: #526366;
}
.calender-section .calendar-container .calendar_table th:first-child {
  border-radius: 0 0 0 0.5rem;
}
.calender-section .calendar-container .calendar_table th:last-child {
  border-radius: 0 0 0.5rem 0;
}
.calender-section .calendar-container .calendar_table tbody tr {
  box-shadow: none;
}
.calender-section .calendar-container .calendar_table tbody tr:nth-child(odd) {
  background-color: #fff;
}
.calender-section .calendar-container .calendar_table tbody tr:nth-child(even) {
  background-color: #DADAE4;
}
.calender-section .calendar-container .calendar_table tbody tr td {
  background-color: transparent;
  color: #474747;
  font-size: 1.0625rem;
}
.calender-section .calendar-container .calendar_table tbody tr.active {
  background-color: #526366;
  color: #fff;
}
.calender-section .calendar-container .calendar_table tbody tr.active td {
  background-color: transparent;
  color: #fff;
  font-size: 1.0625rem;
}
.calender-section .calendar-container .calendar_table tbody tr.active td .live_badge {
  background-color: #F51E1E;
  font-weight: 400;
  font-size: 0.8125rem;
  border-radius: 0.3125rem;
  padding: 0.1875rem 0.25rem;
  margin-inline-end: 0.9375rem;
  white-space: nowrap;
}

@media (max-width: 1399.98px) {
  .mission-icon,
  .vision-icon {
    margin: 0 !important;
    margin-top: 0.9375rem !important;
  }
  .mission-col p,
  .vision-col p {
    width: 100%;
  }
}
@media (max-width: 1199.98px) {
  .cta-card {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media (max-width: 991.98px) {
  .director-bio {
    width: 100%;
  }
}
@media (max-width: 767.98px) {
  .about-section,
  .mission-vision-section,
  .directors-section,
  .partners-section,
  .cta-section {
    padding: 0 20px;
    overflow: hidden;
  }
  footer {
    overflow: hidden;
  }
  .partners-header {
    flex-direction: column;
  }
  .partners-logos {
    flex-direction: column;
    align-items: center;
  }
  .partner-logo-container {
    margin-left: 0;
    margin-top: 20px;
  }
}
.section-title {
  text-align: center;
  margin-top: 1.5rem;
}
.section-title p.des {
  font-weight: 500;
  color: var(--secondary-color);
  font-size: 1.0625rem;
  line-height: 1.3125rem;
}
.section-title h2 {
  font-weight: 700;
  color: var(--secondary-color);
  font-size: 2.375rem;
  line-height: 3rem;
}
.section-title h2 span {
  color: #CDA44C;
}
@media (max-width: 767px) {
  .section-title {
    font-size: 1.875rem;
    text-align: center;
  }
}

.details-list .detail-item {
  border: 1px solid var(--secondary-bg);
  padding: 0.9375rem 1.625rem;
  border-radius: 1.5rem;
  display: flex;
  align-items: center;
}
.details-list .detail-item span,
.details-list .detail-item a {
  font-weight: 400;
  color: var(--secondary-color);
  font-size: 1.125rem;
  text-decoration: none;
}
.details-list .detail-item svg {
  width: 1.5rem;
  margin-inline-end: 0.9375rem;
}
.details-list .detail-item svg path {
  fill: var(--secondary-color);
}

footer .payment-methods {
  height: 100%;
}
footer .payment-methods ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  height: 100%;
  padding: 0;
}
footer .payment-methods ul li {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  min-height: 1.875rem;
  min-width: 6.25rem;
  list-style: none;
  border: none;
  margin-bottom: 0.9375rem;
}
footer .payment-methods img {
  height: 2.0625rem;
  margin-inline-end: 4.6875rem;
}
@media (max-width: 767px) {
  footer .payment-methods img {
    margin-inline-end: 0.9375rem;
  }
}
footer .footer-content {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 0.9375rem 0 2.8125rem 0;
}
@media (max-width: 767px) {
  footer .footer-content .row {
    flex-direction: column;
  }
}
footer .footer-links {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  font-weight: 600;
  color: #6d6d92;
  font-size: 1rem;
  letter-spacing: 0.11rem;
}
@media (max-width: 767px) {
  footer .footer-links {
    padding: 0.9375rem;
    letter-spacing: 0;
    flex-direction: column;
    align-items: center;
  }
}
footer .footer-links li {
  margin: 0 0.3125rem;
}
@media (max-width: 767px) {
  footer .footer-links li {
    margin-bottom: 0.3125rem;
  }
}
footer .footer-links li:not(:last-child)::after {
  content: "|";
  margin: 0 0.3125rem;
}
@media (max-width: 767px) {
  footer .footer-links li:not(:last-child)::after {
    display: none;
  }
}
footer .footer-links a {
  color: #6d6d92;
  text-decoration: none;
  white-space: nowrap;
}
footer .copyright,
footer .design-credit {
  font-weight: 500;
  color: var(--secondary-color);
  font-size: 1.125rem;
}
footer .copyright {
  display: flex;
  align-items: center;
}
footer .copyright::before {
  content: "";
  width: 9.125rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
  height: 4.8125rem;
  margin-inline-end: 1.5rem;
}
footer .design-credit {
  margin-top: 1rem;
}

[data-theme=light] .copyright::before {
  background-image: url("../images/logo-light.png");
}
[data-theme=light] .payment-methods ul li.paypal {
  background-image: url("../images/payment/light/paypal.png");
}
[data-theme=light] .payment-methods ul li.visa {
  background-image: url("../images/payment/light/visa.png");
}
[data-theme=light] .payment-methods ul li.master-card {
  background-image: url("../images/payment/light/card.png");
}
[data-theme=light] .payment-methods ul li.apple-pay {
  background-image: url("../images/payment/light/apple-pay.png");
}

[data-theme=dark] .copyright::before {
  background-image: url("../images/logo-dark-theme.png");
}
[data-theme=dark] .payment-methods ul li.paypal {
  background-image: url("../images/payment/dark/paypal.png");
}
[data-theme=dark] .payment-methods ul li.visa {
  background-image: url("../images/payment/dark/visa.png");
}
[data-theme=dark] .payment-methods ul li.master-card {
  background-image: url("../images/payment/dark/card.png");
}
[data-theme=dark] .payment-methods ul li.apple-pay {
  background-image: url("../images/payment/dark/apple-pay.png");
}/*# sourceMappingURL=main.css.map */