/**
* Template Name: Story
* Template URL: https://bootstrapmade.com/story-bootstrap-blog-template/
* Updated: Aug 11 2025 with Bootstrap v5.3.7
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

@charset "UTF-8";

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "arial", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "arial black", sans-serif;
  --nav-font: "arial black", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #ffffff;
  /* Background color for the entire website, including individual sections */
  --default-color: #000000;
  /* Default color used for the majority of the text content across the entire website */
  --heading-color: rgb(0, 77, 160);
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: #2986cc;
  /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff;
  /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff;
  /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: rgba(110, 201, 255, 1);
  /* The default color of the main navmenu links */
  --nav-hover-color: rgba(0, 77, 160, 1);
  /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff;
  /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff;
  /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #212529;
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #2986cc;
  /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
  --important-color: #c0392b;
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f0f1f2;
  --surface-color: #ffffff;
}

ul {
  color: var(--default-color);
  font-size: 21px;
}

ol {
  color: var(--default-color);
  font-size: 21px;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  overflow-x: hidden;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}


.name {
  font-size: 24px;
  text-align: center;

}

.affiliation {
  color: var(--heading-color);
  font-family: var(--default-font);
  font-size: 24px;
  padding-bottom: 10px;
  text-align: center;

}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 60px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .header-social-links {
  padding-right: 15px;
}

.header .header-social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding-left: 6px;
  display: inline-block;
  transition: 0.3s;
  font-size: 16px;
}

.header .header-social-links a:hover {
  color: var(--accent-color);
}

.header .header-social-links a i {
  line-height: 0px;
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

.navmenu {
  padding: 0;
}

.navmenu ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navmenu li {
  position: relative;
}

.navmenu a,
.navmenu a:focus {
  color: var(--nav-color);
  padding: 18px 15px;
  font-size: 18px;
  font-family: var(--nav-font);
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: space-between;
  white-space: nowrap;
  transition: 0.3s;
}

.navmenu a i,
.navmenu a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
  transition: 0.3s;
}

.navmenu li:last-child a {
  padding-right: 0;
}

.navmenu li:hover>a,
.navmenu .active,
.navmenu .active:focus {
  color: var(--nav-hover-color);
  border-bottom: 2px solid color-mix(in srgb, var(--heading-color), transparent 10%);
}

.navmenu .dropdown ul {
  margin: 0;
  padding: 10px 0;
  background: var(--nav-dropdown-background-color);
  display: block;
  position: absolute;
  visibility: hidden;
  left: 14px;
  top: 130%;
  opacity: 0;
  transition: 0.3s;
  border-radius: 4px;
  z-index: 99;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
}

.navmenu .dropdown ul li {
  min-width: 200px;
}

.navmenu .dropdown ul a {
  padding: 10px 20px;
  font-size: 15px;
  text-transform: none;
  color: var(--nav-dropdown-color);
}

.navmenu .dropdown ul a i {
  font-size: 12px;
}

.navmenu .dropdown ul a:hover,
.navmenu .dropdown ul .active:hover,
.navmenu .dropdown ul li:hover>a {
  color: var(--nav-dropdown-hover-color);
}

.navmenu .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navmenu .dropdown .dropdown ul {
  top: 0;
  left: -90%;
  visibility: hidden;
}

.navmenu .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: -100%;
  visibility: visible;
}



/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background: var(--background-color);
  font-size: 15px;
  padding: 40px 0 0;
  position: relative;
  min-width: 1400px;
  /* border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%); */
}

.footer .top {
  max-width: 1800px;
  display: flex;
  align-items: center;
  min-width: 1400px;
}

.footer .container {
  min-width: 1400px;
}

.footer .footer-top {
  padding-bottom: 10px;
}

.footer .footer-brand {
  display: flex;
  justify-content: flex-start;
  align-self: stretch;
}

.footer .footer-links-wrap {
  display: flex;
  align-items: stretch;
  margin-left: auto;
  padding-left: 48px;
}

.footer .footer-brand .logo {
  height: 100%;
  align-items: center;
}

.footer .footer-logo-img {
  display: block;
  height: 100%;
  max-height: 96px;
  width: auto;
}

.footer .footer-links-grid {
  justify-content: flex-end;
}

.footer .footer-link-column {
  height: 100%;
}

.footer h5 {
  color: #333333;
  font-size: 20px;
  font-weight: 500;
  /* margin-bottom: 20px; */
  font-family: var(--heading-font);
  /* padding-left: 40px; */
}

.footer .footer-brand h1,
.footer .footer-brand .logo {
  margin: 0;
  line-height: 1;
  font-weight: 300;
}

.footer .footer-brand h1 .sitename,
.footer .footer-brand .logo .sitename {
  font-family: var(--heading-font);
  font-size: 26px;
  letter-spacing: 0.8px;
  color: var(--heading-color);
}

.footer .footer-brand .tagline {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 300;
  margin: 12px 0 0;
}

.footer .social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background-color: transparent;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: all 0.3s ease;
  text-decoration: none;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

.footer .social-links a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
  border-color: var(--accent-color);
}

.footer .social-links a i {
  font-size: 16px;
}

.footer .footer-links-grid h5 {
  color: #333333;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 20px;
  font-family: var(--heading-font);
  letter-spacing: 0.5px;
}


.footer .footer-links-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links-grid ul li {
  margin-bottom: 12px;
}

.footer .footer-links-grid ul li a {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  text-decoration: none;
  font-size: 15px;
  font-weight: 300;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 10px;
}

.footer .footer-links-grid ul li a::before {
  content: "→";
  position: absolute;
  left: 0;
  opacity: 0;
  transition: all 0.3s ease;
  color: var(--accent-color);
}

.footer .footer-links-grid ul li a:hover {
  color: var(--accent-color);
  padding-left: 16px;
}

.footer .footer-links-grid ul li a:hover::before {
  opacity: 1;
}

.footer .footer-cta h5 {
  color: var(--heading-color);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 18px;
  font-family: var(--heading-font);
}

.footer .footer-cta .btn-outline {
  background: transparent;
  color: var(--heading-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 4px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.footer .footer-cta .btn-outline:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
  transform: translateY(-2px);
}

.footer .footer-bottom {
  margin-top: 0px;
  padding: 25px 0;
  /* background-color: color-mix(in srgb, color percentage, color percentage) */
  background: color-mix(in srgb, var(--background-color), white 50%);
}

.footer .footer-bottom .footer-bottom-content {
  /* display: flex; */
  /* justify-content: space-between; */
  text-align: center;
  align-items: center;
}


.footer .footer-bottom .footer-bottom-content p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  font-weight: 300;
}

.footer .footer-bottom .footer-bottom-content p .sitename {
  color: var(--heading-color);
  font-weight: 500;
}

.footer .footer-bottom .footer-bottom-content .credits {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.footer .footer-bottom .footer-bottom-content .credits a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 400;
}

.footer .footer-bottom .footer-bottom-content .credits a:hover {
  text-decoration: underline;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}



/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section {
  text-align: left;
  padding: 30px 0;
  /* margin-bottom: 30px; */
  position: relative;
  min-width: 1400px;
}

.section h2 {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  position: relative;
  z-index: 2;
  padding-bottom: 10px;
  padding-top: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.section span {
  position: absolute;
  top: 4px;
  color: color-mix(in srgb, var(--heading-color), transparent 95%);
  left: 0;
  right: 0;
  z-index: 1;
  font-weight: 700;
  font-size: 52px;
  text-transform: uppercase;
  line-height: 1;
}

.section p {
  margin-bottom: 0;
  position: relative;
  font-size: 21px;
}


.sub-section {
  padding: 0;
}

.sub-section .sub-section-item {
  position: relative;
  height: 30vh;
  min-height: 300px;
}

.sub-section .sub-section-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sub-section .sub-section-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  padding: 60px;
  /* color: var(--contrast-color); */
  text-align: center;
  width: 100%;
}

.sub-section .sub-section-content h1 {
  color: var(--contrast-color);
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.sub-section .sub-section-content h2 {
  color: var(--contrast-color);
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.attractions-intro {
  padding-top: 40px;
  padding-bottom: 10px;
}

.attractions-intro h2,
.attractions-note h2 {
  font-size: 32px;
  margin-bottom: 14px;
}

.attractions-intro p,
.attractions-note p {
  font-size: 18px;
  line-height: 1.75;
  margin-bottom: 14px;
}

.attraction-card {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  background: var(--surface-color);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.attraction-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.attraction-card-body {
  padding: 18px 18px 20px;
}

.attraction-card h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.attraction-card p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 0;
}

.attractions-source {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 28%);
}





.main-section {
  padding: 0;
}

.main-section .main-section-slider {
  position: relative;
  overflow: hidden;
}

.main-section .main-section-item {
  position: relative;
  height: 80vh;
  min-height: 600px;
}

.main-section .main-section-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-section .main-section-item::after {
  content: "";
  position: absolute;
  inset: 0;
  /* background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.1) 100%); */
}

.main-section .main-section-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  padding: 60px;
  /* color: var(--contrast-color); */
  text-align: center;
  width: 100%;
}

.main-section .main-section-content .category {
  display: inline-block;
  background-color: var(--accent-color);
  /* color: var(--contrast-color); */
  padding: 6px 16px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.main-section .main-section-content h1 {
  color: var(--contrast-color);
  font-size: 120px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.main-section .main-section-content h2 {
  color: var(--contrast-color);
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}


.main-section .main-section-content .meta {
  margin-bottom: 30px;
  font-size: 14px;
}

.main-section .main-section-content .meta span {
  display: inline-block;
  margin-right: 20px;
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
}

.main-section .main-section-content .meta span:last-child {
  margin-right: 0;
}

.main-section .main-section-content .meta span a {
  color: var(--contrast-color);
  font-weight: 600;
}

.main-section .main-section-content .meta span a:hover {
  color: var(--accent-color);
}


.main-section .main-section-content .read-more {
  display: inline-flex;
  align-items: center;
  color: var(--contrast-color);
  font-weight: 500;
}

.main-section .main-section-content .read-more i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.main-section .main-section-content .read-more:hover {
  color: var(--accent-color);
}

.main-section .main-section-content .read-more:hover i {
  transform: translateX(5px);
}


.main-section .swiper-button-prev,
.main-section .swiper-button-next {
  color: var(--contrast-color);
  width: 60px;
  height: 60px;
}

.main-section .swiper-button-prev::after,
.main-section .swiper-button-next::after {
  font-size: 32px;
}

.main-section .swiper-button-prev:hover,
.main-section .swiper-button-next:hover {
  color: var(--accent-color);
}

.main-section .swiper-wrapper {
  height: auto !important;
}

/* Notice Section Styles */
.notice-content {
  margin-top: 1rem;
  margin-bottom: 2rem;
}

.notice-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #eee;
  transition: all 0.3s ease;
}

.notice-item:hover {
  transform: translateX(5px);
  border-radius: 5px;
}

.notice-date {
  min-width: 120px;
  font-weight: 600;
  color: var(--accent-color);
  padding-right: 1rem;
  transition: all 0.3s ease;
  font-size: 23px;
}

.notice-item:hover .notice-date {
  color: var(--accent-color);
  /* transform: scale(1.05); */
}

.notice-text {
  flex: 1;
  line-height: 1.6;
  font-size: 23px;
}

.notice-link {
  display: flex;
  align-items: center;
  color: var(--default-color);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.notice-link:hover {
  color: var(--accent-color);
  transform: translateX(3px);
}

.notice-link:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.notice-icon {
  font-size: 1.2em;
  transition: all 0.3s ease;
}

.notice-link:hover .notice-icon {
  transform: scale(1.1) rotate(5deg);
}

.notice-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}



table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 20px;
  text-align: center;
}

.table-scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.table-scroll table {
  margin: 0;
  min-width: 720px;
}

.visa-overview {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.visa-overview-text {
  width: 70%;
}

.visa-overview-map {
  width: 30%;
}

.visa-overview-map iframe {
  display: block;
  width: 100%;
  border: 0;
}

table td,
table th {
  border: 1px solid #ddd;
  padding: 5px 5px;
}

table th {
  background-color: color-mix(in srgb, var(--nav-color), transparent 10%);
  color: var(--contrast-color);
  font-weight: 600;
}

.page-sponsorship .sponsorship-content {
  padding-top: 36px;
}

.page-sponsorship .sponsor-section {
  margin-bottom: 52px;
}

.page-sponsorship .sponsor-table-shell {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid #d6deea;
  border-radius: 8px;
  background: #fff;
}

.page-sponsorship .sponsor-table {
  margin: 0;
  min-width: 700px;
  font-size: 18px;
  border-collapse: collapse;
  text-align: center;
}

.page-sponsorship .sponsor-table th,
.page-sponsorship .sponsor-table td {
  border: 1px solid #d7deea;
  padding: 10px 12px;
}

.page-sponsorship .sponsor-table thead th {
  background: var(--heading-color);
  color: #fff;
}

.page-sponsorship .sponsor-program-table tbody th {
  background: #f7f9fc;
  color: var(--default-color);
  text-align: left;
  max-width: 200px;
}



.page-sponsorship .sponsor-schedule-table {
  min-width: 560px;
}

.page-paper-submission .paper-action-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: stretch;
}

.page-paper-submission .paper-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 220px;
  min-height: 54px;
  padding: 12px 20px;
  border: 2px solid var(--heading-color);
  border-radius: 6px;
  background: var(--surface-color);
  color: var(--heading-color);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.page-paper-submission .paper-action-btn i {
  font-size: 22px;
  line-height: 1;
}

.page-paper-submission .paper-action-btn:hover {
  background: color-mix(in srgb, var(--heading-color), transparent 92%);
  color: var(--heading-color);
}

.page-paper-submission .paper-action-primary {
  background: var(--heading-color);
  color: var(--contrast-color);
}

.page-paper-submission .paper-action-primary:hover {
  background: color-mix(in srgb, var(--heading-color), black 12%);
  color: var(--contrast-color);
}

.page-paper-submission .paper-system-note {
  font-size: 20px;
}

.page-sponsorship .exhibitor-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 20px;
}

.page-sponsorship .exhibitor-panel {
  padding: 22px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 82%);
  border-radius: 10px;
  background: #fff;
}

.page-sponsorship .exhibitor-panel h3 {
  margin-bottom: 14px;
}

.page-sponsorship .space-items {
  margin: 0;
  padding-left: 22px;
}

.page-sponsorship .space-items li {
  margin-bottom: 10px;
  line-height: 1.65;
}

.page-sponsorship .opportunity-list {
  list-style: none;
  padding: 10px 22px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 82%);
  border-radius: 10px;

}

.page-sponsorship .opportunity-list li {
  display: grid;
  grid-template-columns: 60% 30% 10%;
  gap: 12px;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 84%);
}

.page-sponsorship .opportunity-list li:last-child {
  border-bottom: 0;
}

.page-sponsorship .opportunity-list strong {
  color: var(--heading-color);
}

.page-sponsorship .opportunity-list em {
  font-style: normal;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.page-sponsorship .sponsor-note {
  margin-top: 16px;
  margin-bottom: 0;
  padding: 12px 14px;
  border-left: 4px solid var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.page-sponsorship .sponsor-contact {
  margin-bottom: 24px;
  padding: 20px 22px;
  border-radius: 10px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 84%);
}

.page-committees .section {
  min-width: 0;
  overflow: visible;
}

.page-committees .committee-ref-section {
  position: relative;
  isolation: isolate;
  z-index: 0;
  padding: 26px 24px;
}

.page-committees .committee-ref-section::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background: #ffffff;
  z-index: 0;
}

.page-committees .committee-ref-section:nth-of-type(3n+2)::before {
  background: #eaf2f8;
}

.page-committees .committee-ref-section:nth-of-type(3n)::before {
  background: #345f85;
}

.page-committees .committee-ref-section > * {
  position: relative;
  z-index: 1;
}

.page-committees .committee-ref-title {
  margin: 0 0 18px;
  padding: 20px 0 20px;
  font-size: 29px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.01em;
  text-transform: none;
  text-align: center;
  border-bottom: 0;
}

.page-committees .committee-ref-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  justify-content: center;
}

.page-committees .committee-ref-grid.cols-1 {
  max-width: 300px;
}

.page-committees .committee-ref-grid.cols-2 {
  max-width: 578px;
}

.page-committees .committee-ref-grid.cols-3 {
  max-width: 816px;
}

.page-committees .committee-ref-grid.cols-4 {
  max-width: 1094px;
}

.page-committees .committee-ref-person {
  flex: 0 1 260px;
  padding: 16px 14px 18px;
  text-align: center;
}

.page-committees .committee-ref-grid.cols-1 .committee-ref-person {
  flex-basis: 300px;
}

.page-committees .committee-ref-grid.cols-2 .committee-ref-person {
  flex-basis: 280px;
}

.page-committees .committee-ref-grid.cols-3 .committee-ref-person {
  flex-basis: 260px;
}

.page-committees .committee-ref-section:nth-of-type(3n+1) .committee-ref-title {
  color: #123f68;
}

.page-committees .committee-ref-section:nth-of-type(3n+1) .committee-ref-track {
  color: #b2872f;
}

.page-committees .committee-ref-section:nth-of-type(3n+1) .committee-ref-name {
  color: #1f3141;
}

.page-committees .committee-ref-section:nth-of-type(3n+1) .committee-ref-affiliation {
  color: #64798b;
}

.page-committees .committee-ref-section:nth-of-type(3n+1) .committee-ref-photo {
  border-color: rgba(18, 63, 104, 0.1);
  background: #f7fafc;
}

.page-committees .committee-ref-section:nth-of-type(3n+2) .committee-ref-title {
  color: #123f68;
}

.page-committees .committee-ref-section:nth-of-type(3n+2) .committee-ref-track {
  color: #b2872f;
}

.page-committees .committee-ref-section:nth-of-type(3n+2) .committee-ref-name {
  color: #21496e;
}

.page-committees .committee-ref-section:nth-of-type(3n+2) .committee-ref-affiliation {
  color: #5d7488;
}

.page-committees .committee-ref-section:nth-of-type(3n+2) .committee-ref-photo {
  border-color: rgba(18, 63, 104, 0.12);
  background: rgba(255, 255, 255, 0.72);
}

.page-committees .committee-ref-section:nth-of-type(3n) .committee-ref-title {
  color: #ffffff;
}

.page-committees .committee-ref-section:nth-of-type(3n) .committee-ref-track {
  color: #d7b46a;
}

.page-committees .committee-ref-section:nth-of-type(3n) .committee-ref-name {
  color: #f4f7fb;
}

.page-committees .committee-ref-section:nth-of-type(3n) .committee-ref-affiliation {
  color: #d6e0ea;
}

.page-committees .committee-ref-section:nth-of-type(3n) .committee-ref-photo {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.14);
}

.page-committees .committee-ref-photo {
  display: block;
  width: 100%;
  max-width: 170px;
  margin: 0 auto 12px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center center;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 82%);
  background: #f5f8fc;
}


.page-committees .committee-ref-name {
  margin-bottom: 6px;
  font-size: 21px;
  line-height: 1.25;
  font-weight: 700;
  white-space: nowrap;
  color: var(--heading-color);
}

.page-committees .committee-ref-track {
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
}

.page-committees .committee-ref-affiliation {
  font-size: 18px;
  line-height: 1.45;
  color: color-mix(in srgb, var(--default-color), transparent 24%);
}

@media (max-width: 1199px) {
  .header {
    padding: 12px 0;
  }

  .header .logo img {
    max-height: 44px;
  }

  .navmenu {
    width: 100%;
  }

  .navmenu ul {
    display: none;
  }

  .navmenu .mobile-nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    font-size: 30px;
    color: var(--nav-color);
    cursor: pointer;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .navmenu ul {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: fixed;
    inset: 0;
    padding: 72px 20px 24px;
    background: var(--nav-mobile-background-color);
    overflow-y: auto;
    z-index: 9999;
  }

  .page-sponsorship .exhibitor-layout {
    grid-template-columns: 1fr;
  }

  .page-committees .committee-ref-grid.cols-4 {
    max-width: 816px;
  }

  .page-committees .committee-ref-grid.cols-3 {
    max-width: 816px;
  }

  .page-committees .committee-ref-grid.cols-3 .committee-ref-person {
    flex-basis: 260px;
  }

  .page-committees .committee-ref-title {
    font-size: 27px;
  }

  .mobile-nav-active .navmenu .mobile-nav-toggle {
    position: fixed;
    top: 18px;
    right: 18px;
    margin-left: 0;
    z-index: 10000;
  }

  .navmenu li {
    width: 100%;
  }

  .navmenu a,
  .navmenu a:focus {
    padding: 14px 0;
    font-size: 16px;
    color: var(--nav-dropdown-color);
    white-space: normal;
  }

  .navmenu .dropdown ul {
    position: static;
    left: auto;
    top: auto;
    opacity: 1;
    visibility: visible;
    display: none;
    box-shadow: none;
    padding: 0 0 0 16px;
    margin: 0;
    border-radius: 0;
  }

  .navmenu .dropdown.dropdown-active > ul,
  .navmenu .dropdown.active > ul {
    display: block;
  }

  .navmenu .dropdown ul li {
    min-width: 0;
  }

  .navmenu .dropdown .toggle-dropdown {
    margin-left: auto;
  }

  .section,
  .footer,
  .footer .container,
  .footer .top {
    min-width: 0 !important;
  }

  .footer {
    padding-top: 24px;
  }

  .footer .footer-top .row,
  .footer .footer-top .d-flex.flex-wrap.gap-5,
  .footer .footer-links-grid {
    gap: 16px;
  }

  .footer .col-auto {
    width: 100%;
  }

  .footer .footer-brand {
    margin-bottom: 4px;
    justify-content: center;
  }

  .footer .footer-links-wrap {
    margin-left: 0;
    padding-left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .footer .footer-links-grid {
    width: 100%;
    justify-content: center !important;
  }

  .footer .footer-links-grid>.col {
    display: flex;
    justify-content: center;
  }

  .footer .footer-link-column {
    align-items: center;
  }

  .footer .footer-link-column,
  .footer .footer-link-column a,
  .footer .footer-link-column h5 {
    text-align: center;
    justify-content: center;
  }

  .footer .footer-link-column a {
    display: inline-flex;
  }

  .footer .footer-link-column h5 {
    width: 100%;
  }

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

  .footer .footer-bottom {
    padding: 20px 0;
  }

  .footer .footer-bottom .footer-bottom-content {
    text-align: left;
  }

  .main-section .main-section-item {
    height: 52vh;
    min-height: 320px;
  }

  .main-section .main-section-content {
    padding: 24px;
  }

  .main-section .main-section-content h1 {
    font-size: clamp(2rem, 8vw, 4rem);
  }

  .main-section .main-section-content h2 {
    font-size: clamp(1rem, 4vw, 1.6rem);
  }

  .sub-section .sub-section-item {
    height: 22vh;
    min-height: 200px;
  }

  .sub-section .sub-section-content {
    padding: 24px;
  }

  .sub-section .sub-section-content h1 {
    font-size: clamp(1.8rem, 7vw, 3rem);
  }

  .section {
    padding: 24px 0;
  }

  .section h2 {
    font-size: 24px;
  }

  .section p,
  .notice-text {
    font-size: 18px;
  }

  .notice-item {
    flex-direction: column;
  }

  .notice-date {
    min-width: 0;
    padding-right: 0;
    margin-bottom: 8px;
    font-size: 16px;
  }

  table {
    font-size: 16px;
  }

  .table-scroll table {
    min-width: 640px;
  }

  table td,
  table th {
    padding: 4px 4px;
  }

  .attractions-intro h2,
  .attractions-note h2 {
    font-size: 28px;
  }

  .attraction-card img {
    height: 230px;
  }

  .attraction-card h3 {
    font-size: 22px;
  }

  .attraction-card p {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .page-paper-submission .paper-action-panel {
    gap: 10px;
  }

  .page-paper-submission .paper-action-btn {
    width: 100%;
    min-width: 0;
    min-height: 50px;
    font-size: 16px;
  }

  .visa-overview {
    flex-direction: column;
    gap: 16px;
  }

  .visa-overview-text,
  .visa-overview-map {
    width: 100%;
  }

  .visa-overview-map iframe {
    height: 320px;
  }
}

@media (max-width: 575px) {
  .header .logo img {
    max-height: 38px;
  }

  .navmenu a,
  .navmenu a:focus {
    font-size: 15px;
  }

  .table-scroll table {
    min-width: 560px;
    font-size: 14px;
  }

  .main-section .main-section-item {
    height: 42vh;
    min-height: 260px;
  }

  .main-section .main-section-content h1 {
    font-size: clamp(1.5rem, 10vw, 2.8rem);
  }

  .main-section .main-section-content h2 {
    font-size: clamp(0.9rem, 4.8vw, 1.2rem);
  }

  .sub-section .sub-section-item {
    min-height: 160px;
  }

  .sub-section .sub-section-content h1 {
    font-size: clamp(1.4rem, 9vw, 2.4rem);
  }

  .section h2 {
    font-size: 20px;
  }

  .section p,
  .notice-text {
    font-size: 16px;
  }

  .attractions-intro p,
  .attractions-note p,
  .attraction-card p {
    font-size: 15px;
  }

  .attraction-card img {
    height: 200px;
  }

  .notice-date {
    font-size: 15px;
  }

  .footer .container,
  .main .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .visa-overview-map iframe {
    height: 300px;
  }

  .footer .footer-brand {
    display: none;
  }

  .footer .footer-links-grid {
    row-gap: 12px;
    column-gap: 12px;
  }

  .page-sponsorship .sponsor-table {
    min-width: 520px;
    font-size: 15px;
  }

  .page-sponsorship .opportunity-list li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .page-committees .committee-ref-section {
    padding: 18px 16px;
    border-radius: 12px;
  }

  .page-committees .committee-ref-title {
    font-size: 22px;
    margin-bottom: 14px;
  }

  .page-committees .committee-ref-grid.cols-1,
  .page-committees .committee-ref-grid.cols-2,
  .page-committees .committee-ref-grid.cols-3,
  .page-committees .committee-ref-grid.cols-4 {
    max-width: 100%;
  }

  .page-committees .committee-ref-person,
  .page-committees .committee-ref-grid.cols-1 .committee-ref-person,
  .page-committees .committee-ref-grid.cols-2 .committee-ref-person,
  .page-committees .committee-ref-grid.cols-3 .committee-ref-person {
    flex-basis: 100%;
  }

  .page-committees .committee-ref-photo {
    max-width: 150px;
  }

  .page-committees .committee-ref-name {
    font-size: 19px;
  }

  .page-committees .committee-ref-affiliation {
    font-size: 16px;
  }
}

@media (min-width: 576px) and (max-width: 991px) {
  .page-committees .committee-ref-grid.cols-4 {
    max-width: 538px;
  }

  .page-committees .committee-ref-grid.cols-3 {
    max-width: 538px;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .page-committees .committee-ref-grid.cols-2 {
    max-width: 280px;
  }
}
