@charset "UTF-8";
/* CSS Document */
.NoScroll {
  overflow: hidden;
}
html {
  color: rgba(155, 45, 255, 1.00);
}
html, body {
  margin: 0px;
  padding: 0px;
  font-family: Arial, "sans-serif";
  background-position: top -300px center;
  background-image: url("../images/HKDIConnect2026Bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  scroll-behavior: smooth !important;
  box-sizing: border-box;
  overflow-x: hidden;
}
.Container {
  width: 100%;
}
/* Scroll Down Arrow Container */
.scroll-down-arrow {
  position: fixed;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  z-index: 999999;
}
/* The Arrow Segments */
.arrow-segment {
  display: block;
  width: 20px;
  height: 20px;
  border-bottom: 2px solid white;
  border-right: 2px solid white;
  transform: rotate(45deg);
  margin: -10px; /* Overlap them slightly for the double-arrow look */
  animation: arrow-bounce 2s infinite;
}
/* Offset the second segment animation delay for a "wave" effect */
.arrow-segment:nth-child(2) {
  animation-delay: -0.2s;
}
.arrow-segment:nth-child(3) {
  animation-delay: -0.4s;
}
/* Animation Keyframes */
@keyframes arrow-bounce {
  0% {
    opacity: 0;
    transform: rotate(45deg) translate(-20px, -20px);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: rotate(45deg) translate(20px, 20px);
  }
}
/* Optional Text Label */
.scroll-label {
  color: white;
  font-size: 11px;
  letter-spacing: 0px;
  text-transform: uppercase;
  margin-bottom: 20px;
  opacity: 0.6;
	text-shadow: 1px 1px 2px #333;
}
.TopMenuContainer {
  display: flex;
  position: fixed;
  width: 100%;
  /*background-color: rgba(84, 41, 128, 0.90);*/
  padding: 20px 0px;
  box-sizing: border-box;
  z-index: 999;
  transition: 0.5s;
  align-items: center;
}
.TopMenuContent {
  display: flex;
  margin: 0px auto;
  width: 98%;
  max-width: 1000px;
  justify-content: space-between;
  align-items: flex-end;
  transition: 0.1s;
}
.HKDILogo {
  background-position: center center;
  background-image: url("../images/HKDI_logo_Horizontal_White.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 260px;
  height: 79px;
  transition: 0.2s;
	  cursor: pointer;
}
.TopMenu {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.TopMenu a {
  color: #FFF;
  font-size: 13px;
  display: none;
  transition: 0.1s;
  margin-right: 30px;
  text-align: left;
  text-decoration: none;
}
.TopMenu a:hover {
  color: #FFF;
  text-decoration: underline;
}
.HeaderContainer {
  width: 90%;
  max-width: 1000px;
  margin: 0px auto;
}
.MainMenuBtn{
	cursor: pointer;
}
.Logo {
  position: relative;
  top: 0px;
  width: 100%;
  max-width: 1000px;
  height: 1917px;
  margin: 0px auto;
  background-position: top -200px center;
  background-image: url("../images/HKDIConnect2026Logo.png");
  background-repeat: no-repeat;
  background-size: 100%;
}
.HeaderMenu {
  display: block;
}
.HeaderMenuUp {
  position: relative;
  top: 130px;
}
.HeaderMenuDown {
  position: relative;
  top: 370px;
}
.HeaderMenu a {
  display: block;
  color: #FFF;
  font-size: 18px;
  width: 150px;
  margin-bottom: 30px;
  text-decoration: none;
}
.HeaderMenu a:hover {
  color: #FFF;
  text-decoration: underline;
}
.MainMenuBarContainer {
  position: relative;
  display: none;
  z-index: 999999999999;
  margin-left: 10px;
}
.MainMenuBar1, .MainMenuBar2, .MainMenuBar3 {
  width: 30px;
  height: 2px;
  background-color: #FFF;
  margin: 6px 0;
  transition: 0.4s;
  display: block !important;
}
.change .MainMenuBar1 {
  transform: translate(0, 8px) rotate(-45deg);
}
.change .MainMenuBar2 {
  transform: translate(0, 8px) rotate(-45deg);
  opacity: 0;
}
.change .MainMenuBar3 {
  transform: translate(0, -8px) rotate(45deg);
}
h2 {
  color: rgba(155, 45, 255, 1.00);
  font-size: 20px;
  text-align: left;
}
p {
  color: #333;
  font-size: 15px;
  text-align: left;
  line-height: 150%;
}
a {
  color: rgba(155, 45, 255, 1.00);
  text-decoration: none;
	font-weight: bold;
}
a:hover {
  color: rgba(155, 45, 255, 1.00);
  text-decoration: underline;
}
table {
  margin: 0px;
  padding: 0px;
  border-spacing: 0px;
	border: 0.5px solid #333;
	width: 100%;
}
tr {}
td {
  color: #333;
  margin: 0px;
  padding: 5px 20px 5px 0px;
  vertical-align: text-top;
  font-size: 15px;
}
th, td{
	border: 0.5px solid #333;
	padding: 5px;
	vertical-align: text-top;
}
th{
	background-color: rgba(155, 45, 255, 0.90);
}
th p{
	margin: 0px;
	color: #FFF;
}
.TableTopic{
	width: 20%;
}
.TableDetails{
	width: 60%;
}





.AboutContainer {
  display: block;
  width: 90%;
  max-width: 1000px;
  margin: -600px auto 50px;
  padding: 100px 0px 0px;
  box-sizing: border-box;
}
.AboutContent {
  width: 100%;
  max-width: 1000px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-direction: column-reverse;
}
.AboutText {
  padding: 20px 20px 50px 20px;
  /*background-color: rgba(0, 0, 0, 0.50);*/
  background-color:rgba(255,255,255,0.80);
  box-sizing: border-box;
}
.AboutImage {
	margin-bottom: -4px;
}
.AboutImage img {
  width: 100%;
}
.ExhibitionContainer {
  display: block;
  width: 100%;
  max-width: 1000px;
  margin: 0px auto 50px;
  padding: 85px 0px;
  /*background-color: rgba(0, 0, 0, 0.50);*/
  background-color:rgba(255,255,255,0.80);
  box-sizing: border-box;
}
.ExhibitionContainer h2 {
  padding: 0px 20px;
}
.ExhibitionContent {
  width: 100%;
  max-width: 1000px;
  padding: 0px 20px;
  display: flex;
  justify-content: space-between;
  box-sizing: border-box;
}
.ExhibitionText {
  padding-right: 20px;
  box-sizing: border-box;
}
.ExhibitionImage {}
.ExhibitionImage img {
  max-width: 400px;
}
.ProgrammeContainer {
  display: block;
  width: 100%;
  max-width: 1000px;
  margin: 0px auto 50px;
  padding: 85px 0px;
  /*background-color: rgba(0, 0, 0, 0.50);*/
  background-color:rgba(255,255,255,0.80);
  box-sizing: border-box;
}
.ProgrammeContainer h2 {
  padding: 0px 20px;
}
.ProgrammeContent {
  width: 100%;
  max-width: 1000px;
  padding: 0px 20px;
  display: flex;
  justify-content: space-between;
  box-sizing: border-box;
}
.ProgrammeText {
  padding-right: 20px;
  box-sizing: border-box;
}
.ProgrammeImage {}
.ProgrammeImage img {
  max-width: 400px;
}
.CareerSharingContainer {
  display: block;
  width: 100%;
  max-width: 1000px;
  margin: 0px auto 50px;
  padding: 85px 0px;
  /*background-color: rgba(0, 0, 0, 0.50);*/
  background-color:rgba(255,255,255,0.80);
  box-sizing: border-box;
}
.CareerSharingContainer h2 {
  padding: 0px 20px;
}
.CareerSharingContent {
  width: 100%;
  max-width: 1000px;
  padding: 0px 20px;
  display: flex;
  justify-content: space-between;
  box-sizing: border-box;
}
.CareerSharingText {
  padding-right: 20px;
  box-sizing: border-box;
}
.CareerSharingImage {}
.CareerSharingImage img {
  max-width: 400px;
}
.WorkshopsContainer {
  display: block;
  width: 100%;
  max-width: 1000px;
  margin: 0px auto 50px;
  padding: 85px 0px;
  /*background-color: rgba(0, 0, 0, 0.50);*/
  background-color:rgba(255,255,255,0.80);
  box-sizing: border-box;
}
.WorkshopsContainer h2 {
  padding: 0px 20px;
}
.WorkshopsContent {
  width: 100%;
  max-width: 1000px;
  padding: 0px 20px;
  display: flex;
  justify-content: space-between;
  box-sizing: border-box;
}
.WorkshopsText {
  padding-right: 20px;
  box-sizing: border-box;
}
.WorkshopsImage {}
.WorkshopsImage img {
  max-width: 400px;
}

.PerformancesContainer {
  display: block;
  width: 100%;
  max-width: 1000px;
  margin: 0px auto 50px;
  padding: 85px 0px;
  /*background-color: rgba(0, 0, 0, 0.50);*/
  background-color:rgba(255,255,255,0.80);
  box-sizing: border-box;
}
.PerformancesContainer h2 {
  padding: 0px 20px;
}
.PerformancesContent {
  width: 100%;
  max-width: 1000px;
  padding: 0px 20px;
  display: flex;
  justify-content: space-between;
  box-sizing: border-box;
}
.PerformancesText {
  padding-right: 20px;
  box-sizing: border-box;
}
.PerformancesImage {}
.PerformancesImage img {
  max-width: 400px;
}
.RegistrationContainer {
  display: block;
  width: 100%;
  max-width: 1000px;
  margin: 0px auto 50px;
  padding: 85px 0px;
  /*background-color: rgba(0, 0, 0, 0.50);*/
  background-color:rgba(255,255,255,0.80);
  box-sizing: border-box;
}
.RegistrationContainer h2 {
  padding: 0px 20px;
}
.RegistrationContent {
  width: 100%;
  max-width: 1000px;
  padding: 0px 20px;
  display: flex;
  justify-content: space-between;
  box-sizing: border-box;
}
.RegistrationText {
  padding-right: 20px;
  box-sizing: border-box;
}
.RegistrationImage {}
.RegistrationImage img {
  max-width: 400px;
}
.FooterContainer {
  display: block;
  width: 90%;
  max-width: 1000px;
  margin: 0px auto 150px;
  padding: 50px 0px;
}
.FooterContent {
  width: 98%;
  max-width: 1000px;
  display: flex;
  justify-content: center;
}
.FooterInformation {
  box-sizing: border-box;
  font-size: 15px;
}
.FooterInformation a {
	color: #FFF;
  font-size: 15px;
}
.FooterInformation p {
	color: #FFF;
  font-size: 15px;
}
.FooterInformation a.FB {
  display: block;
  padding: 5px 0px 5px 35px;
  background-position: left center;
  background-image: url("../images/FBIcon.png");
  background-repeat: no-repeat;
  background-size: contain;
  font-size: 13px;
}
.FooterInformation a.IG {
  margin-top: 10px;
  display: block;
  padding: 5px 0px 5px 35px;
  background-position: left center;
  background-image: url("../images/IGIcon.png");
  background-repeat: no-repeat;
  background-size: contain;
  font-size: 13px;
}
.FooterInformation a.X {
  margin-top: 10px;
  display: block;
  padding: 5px 0px 5px 35px;
  background-position: left center;
  background-image: url("../images/XIcon.png");
  background-repeat: no-repeat;
  background-size: contain;
  font-size: 13px;
}
.FooterInformation a.XHS {
  margin-top: 10px;
  display: block;
  padding: 5px 0px 5px 35px;
  background-position: left center;
  background-image: url("../images/XHSIcon.png");
  background-repeat: no-repeat;
  background-size: contain;
  font-size: 13px;
}
.FooterCopyRight {
  margin-top: 100px;
}
.FooterCopyRight p {
  text-align: center;
  font-size: 12px;
	color: #FFF;
}
/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (max-width: 1280px) and (orientation: portrait) {
  .Logo {
    background-image: url("../images/HKDIConnect2026Logo.png");
    background-position: top -10px center;
    background-size: contain;
    border: inset 10px transparent;
    box-sizing: border-box;
  }
  .AboutContainer {
    margin-top: -300px;
  }
  /* CSS rules for portrait mode */
}
@media only screen and (max-width: 1280px) and (orientation: landscape) {
  .Logo {
    background-image: url("../images/HKDIConnect2026LogoH.png");
    background-position: center center;
    background-size: 100%;
  }
  .AboutContainer {
    margin-top: -100px;
  }
}
@media only screen and (max-width: 1280px) {
  html, body {
    background-image: unset;
  }
  body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../images/HKDIConnect2026Bg.jpg");
    background-size: cover;
    z-index: -1;
  }
  .HKDILogo {
    width: 160px;
    height: 48px;
    margin-right: 10px;
  }
  .Logo {
    max-width: 100%;
    width: 100%;
    height: 100vh;
  }
  .HeaderContainer {
    width: 100%;
    max-width: 100%;
  }
  .HeaderMenu {
    display: none;
    overflow-y: scroll;
    width: 100%;
    height: 100%;
    background-color: rgba(155, 45, 255, 0.90);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    padding: 100px 20px;
    position: fixed;
    box-sizing: border-box;
    left: 0px;
    top: 0px;
  }
  .HeaderMenuUp {
    position: relative;
    top: unset;
  }
  .HeaderMenuDown {
    position: relative;
    top: unset;
  }
.HeaderMenu a {
  font-size: 13px;
  margin-bottom: 20px;
}
  .MainMenuBarContainer {
    display: block;
  }
  .AboutContainer h2 {
    padding: 0px;
  }
  .AboutContent {
    width: 100%;
    flex-direction: column-reverse;
  }
  .AboutText {
    padding: 0px 20px 80px;
  }
  .AboutImage {
    width: 100%;
	margin-bottom: -5px;
  }
  .AboutImage img {
    width: 100%;
    max-width: 100%;
  }
  .AboutContainer {
    width: 100%;
    padding: 65px 0px 0px 0px;
    margin-bottom: 5px;
  }
  .ExhibitionContainer {
    width: 100%;
    padding: 80px 0px;
    box-sizing: border-box;
    margin-bottom: 5px;
  }
  .ExhibitionContainer h2 {
    padding: 0px 20px;
  }
  .ExhibitionContent {
    width: 100%;
    padding: 0px 20px;
    flex-direction: column-reverse;
    box-sizing: border-box;
  }
  .ExhibitionText {
    padding: 0px;
  }
  .ExhibitionImage img {
    width: 100%;
    max-width: 100%;
  }
  .ProgrammeContainer {
    width: 100%;
    padding: 80px 0px;
    box-sizing: border-box;
    margin-bottom: 5px;
  }
  .ProgrammeContainer h2 {
    padding: 0px 20px;
  }
  .ProgrammeContent {
    width: 100%;
    padding: 0px 20px;
    flex-direction: column-reverse;
    box-sizing: border-box;
  }
  .ProgrammeImage img {
    width: 100%;
    max-width: 100%;
  }
  .CareerSharingContainer {
    width: 100%;
    padding: 80px 0px;
    box-sizing: border-box;
    margin-bottom: 5px;
  }
  .CareerSharingContainer h2 {
    padding: 0px 20px;
  }
  .CareerSharingContent {
    width: 100%;
    padding: 0px 20px;
    flex-direction: column-reverse;
    box-sizing: border-box;
  }
  .CareerSharingImage img {
    width: 100%;
    max-width: 100%;
  }
  .PerformancesContainer {
    width: 100%;
    padding: 80px 0px;
    box-sizing: border-box;
    margin-bottom: 5px;
  }
  .PerformancesContainer h2 {
    padding: 0px 20px;
  }
  .PerformancesContent {
    width: 100%;
    padding: 0px 20px;
    flex-direction: column-reverse;
    box-sizing: border-box;
  }
  .PerformancesImage img {
    width: 100%;
    max-width: 100%;
  }
  .WorkshopsContainer {
    width: 100%;
    padding: 80px 0px;
    box-sizing: border-box;
    margin-bottom: 5px;
  }
  .WorkshopsContainer h2 {
    padding: 0px 20px;
  }
  .WorkshopsContent {
    width: 100%;
    padding: 0px 20px;
    flex-direction: column-reverse;
    box-sizing: border-box;
  }
  .WorkshopsImage img {
    width: 100%;
    max-width: 100%;
  }
  .RegistrationContainer {
    width: 100%;
    padding: 80px 0px;
    box-sizing: border-box;
    margin-bottom: 5px;
  }
  .RegistrationContainer h2 {
    padding: 0px 20px;
  }
  .RegistrationContent {
    width: 100%;
    padding: 0px 20px;
    flex-direction: column-reverse;
    box-sizing: border-box;
  }
  .RegistrationImage img {
    width: 100%;
    max-width: 100%;
  }
  .FooterContainer {
    padding-bottom: 0px;
  }
}
/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (max-width: 992px) {}
/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (max-width: 768px) {}
/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
  html, body {
    background-image: unset;
  }
  body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image: url("../images/HKDIConnect2026Bg.jpg");
    background-size: cover;
    z-index: -1;
  }
  .HKDILogo {
    width: 150px;
    height: 45px;
  }
  .Logo {
    background-position: top -10px center;
    max-width: 100%;
    width: 100%;
    height: 100vh;
    background-size: contain;
    border: inset 10px transparent;
    box-sizing: border-box;
  }
  .HeaderContainer {
    width: 100%;
    max-width: 100%;
  }
  .HeaderMenu {
    display: none;
    width: 100%;
    height: 100%;
    background-color: rgba(155, 45, 255, 0.90);
    padding: 100px 20px;
    position: fixed;
  }
  .HeaderMenuUp {
    position: relative;
    top: unset;
  }
  .HeaderMenuDown {
    position: relative;
    top: unset;
  }
  .AboutContainer {
    width: 100%;
  }
  .AboutContainer h2 {
    padding: 0px;
  }
  .AboutContent {
    width: 100%;
    flex-direction: column-reverse;
  }
  .AboutText {
    padding: 0px 20px 80px;
  }
  .AboutImage {}
  .AboutImage {
    width: 100%;
  }
  .AboutImage img {
    width: 100%;
    max-width: 100%;
  }
  .AboutContainer {
    padding: 65px 0px 0px 0px;
  }
  .FooterContainer {
    padding-bottom: 0px;
  }
}
/* Extra small devices (phones, 400px and down) */
@media only screen and (max-width: 400px) {}