:root {
  --header-edge: 30px;
  --bar-height: 6px;
  --button-height: 50px;
  --header-height: calc(120px + var(--bar-height));
}

header {
  position: sticky;
  top: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}
header .header-inner {
  display: grid;
  grid-template-columns: 35% 30% 35%;
  grid-template-areas: "side main nav";
  grid-template-rows: 100%;
  position: relative;
  width: calc(100% - var(--header-edge) * 2);
  height: 120px;
  max-width: 1600px;
}
header .header-inner .main-logo {
  grid-area: main;
  display: flex;
  align-items: center;
  justify-content: center;
}
header .header-inner .main-logo img {
  height: 75px;
  width: auto;
  object-fit: contain;
}
header .header-inner .side-logos {
  grid-area: side;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 35px;
}
header .header-inner .side-logos img {
  width: auto;
  object-fit: contain;
}
header .header-inner .side-logos img.doj {
  height: 80px;
}
header .header-inner .side-logos img.law-tech {
  height: 55px;
}
header .header-inner nav {
  grid-area: nav;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: end;
}
@media (min-width: 992px) {
  header .header-inner nav #main-nav.collapse {
    display: block;
  }
}
header .header-inner nav ul.navbar-nav {
  display: flex;
  flex-direction: row;
  list-style-type: none;
  justify-content: end;
  gap: 20px;
}
header .header-inner nav ul.navbar-nav > .nav-item > a {
  line-height: 1.25;
}
header .header-inner nav ul.navbar-nav li {
  color: white;
  display: flex;
  align-items: center;
}
header .header-inner nav ul.navbar-nav li a {
  text-decoration: none;
  font-size: 19px;
  font-weight: 600;
}
header .header-inner nav ul.navbar-nav li a.lang-selector {
  font-weight: 400;
  color: var(--text-blue);
  background-color: white;
  padding: 0;
  border-radius: 50%;
  aspect-ratio: 1/1;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Barlow", "NotoSans TC", "NotoSans SC", sans-serif;
}
header .header-inner nav ul.navbar-nav li a.lang-selector::after {
  content: none;
}
header .header-inner nav ul.navbar-nav #about-us-navbar-dropdown {
  display: flex;
  align-items: center;
  gap: 6px;
}
header .header-inner nav ul.navbar-nav #about-us-navbar-dropdown i {
  font-size: 14px;
}
header .header-inner nav ul.navbar-nav #about-us-navbar-dropdown i.bi-chevron-up {
  display: none;
}
header .header-inner nav ul.navbar-nav #about-us-navbar-dropdown i.bi-chevron-down {
  display: inline-block;
}
header .header-inner nav ul.navbar-nav #about-us-navbar-dropdown.show {
  color: var(--gold);
}
header .header-inner nav ul.navbar-nav #about-us-navbar-dropdown.show i {
  color: var(--gold);
}
header .header-inner nav ul.navbar-nav #about-us-navbar-dropdown.show i.bi-chevron-up {
  display: inline-block;
}
header .header-inner nav ul.navbar-nav #about-us-navbar-dropdown.show i.bi-chevron-down {
  display: none;
}
header .header-inner nav ul.navbar-nav #about-us-navbar-dropdown::after {
  content: none;
}
header .header-inner nav ul.navbar-nav #menu-about-us {
  background-color: var(--bg-blue);
  padding: 14px;
  padding-left: 20px;
}
header .header-inner nav ul.navbar-nav #menu-about-us ul {
  display: flex;
  flex-direction: column;
}
header .header-inner nav ul.navbar-nav #menu-about-us ul li {
  line-height: 1.85;
}
header .header-inner nav ul.navbar-nav #menu-about-us ul li a {
  font-size: 18px;
  font-weight: 500;
}
header .header-inner nav ul.navbar-nav #menu-about-us ul li a i {
  font-size: 16px;
  color: var(--gold);
}
header .header-inner nav ul.navbar-nav #menu-about-us .ul-1 li#legal-weeks {
  display: flex;
  flex-direction: column;
}
header .header-inner nav ul.navbar-nav #menu-about-us .ul-1 li#legal-weeks > a {
  text-align: left;
  align-self: start;
}
header .header-inner nav ul.navbar-nav #menu-about-us .ul-2 {
  list-style-type: disc;
  padding-left: 4px;
}
header .header-inner nav ul.navbar-nav #menu-about-us .ul-2 li {
  display: list-item;
}
header .header-inner nav ul.navbar-nav #menu-about-us .ul-2 li::marker {
  color: var(--gold);
}
header .header-inner nav ul.navbar-nav .ul-1 {
  list-style-type: none;
  padding-left: 0;
}
header .header-inner nav ul.navbar-nav #lang-navbar-dropdown.show {
  background-color: var(--gold);
  color: white;
}
header .header-inner nav ul.navbar-nav #menu-lang {
  background-color: transparent;
  padding: 0;
  border: none;
  min-width: unset;
}
header .register-interest {
  z-index: -2;
  transition: top 0.5s ease;
  position: absolute;
  top: 100%;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 21px;
  border-bottom-left-radius: calc(var(--button-height) / 3);
  height: var(--button-height);
  aspect-ratio: 4/1;
  width: auto;
  background-image: url("../images/shared/btn-bg.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  text-decoration: none;
  color: white;
}
header .background-container {
  z-index: -1;
  position: absolute;
  width: 100%;
  height: 100%;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow-x: hidden;
  overflow-y: clip;
}
header .background-container .bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
header .background-container .bar {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: var(--bar-height);
  object-fit: cover;
}

:root {
  --footer-height: calc(32px + var(--bar-height));
}

footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--footer-height);
}
footer .background-container {
  z-index: -1;
  position: absolute;
  width: 100%;
  height: 100%;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow-x: hidden;
  overflow-y: clip;
}
footer .background-container .bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
footer .background-container .bar {
  position: absolute;
  top: 0;
  width: 100%;
  height: var(--bar-height);
  object-fit: cover;
}

body {
  background-image: url("../images/shared/bg.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
body main {
  width: 100%;
  max-height: calc(var(--100svh) - var(--header-height) - var(--footer-height));
  height: calc(var(--100svh) - var(--header-height) - var(--footer-height));
  overflow-y: auto;
  z-index: 2;
  position: relative;
}
body main section {
  --edge: 100px;
  width: calc(100% - var(--edge) * 2);
  margin: auto;
  max-width: 1400px;
  min-height: calc(var(--100svh) - var(--header-height) - var(--footer-height));
  height: fit-content;
  display: grid;
  grid-template-rows: 130px auto;
}
body main section > h2 {
  height: fit-content;
  align-items: center;
  align-self: end;
}

body.index {
  background-image: url("../images/index/bg.jpg");
  background-position: center top;
}
body.index header .background-container,
body.index header .main-logo, body.index header nav,
body.index header .register-interest {
  transition: opacity 0.5s ease;
}
body.index:not(.scroll) header .background-container,
body.index:not(.scroll) header .main-logo, body.index:not(.scroll) header nav,
body.index:not(.scroll) header .register-interest {
  opacity: 0;
  pointer-events: none;
}
body.index:not(.scroll) header .register-interest {
  z-index: -2;
  top: calc(100% - var(--button-height));
  transition: top 0.5s ease;
}
body.index:not(.scroll) main {
  margin-top: calc(var(--header-height) * -1);
  height: calc(var(--100svh) - var(--footer-height));
  max-height: calc(var(--100svh) - var(--footer-height));
}
body.index:not(.scroll) .glow {
  opacity: 1;
}
body.index:not(.scroll) section#hero {
  margin-top: var(--header-height);
}
body.index:not(.scroll) section#about {
  margin-top: 0;
}
body.index .glow {
  position: absolute;
  top: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  z-index: -1;
  user-select: none;
  pointer-events: none;
  /* transition: opacity 0.2s ease; */
}
body.index main section > h2 {
  height: fit-content;
  align-items: center;
  align-self: end;
}
body.index main section#hero {
  transition: all 0.5s ease;
  grid-template-rows: 33% auto;
  max-width: 650px;
  min-height: 620px;
  height: 100%;
}
body.index main section#hero h1 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
body.index main section#hero h1 img {
  width: auto;
  height: 100%;
  width: 100%;
}
body.index main section#hero > div {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  width: 100%;
  height: fit-content;
}
body.index main section#hero > div fieldset {
  border: 2px solid rgba(255, 255, 255, 0.5333333333);
  border-radius: 20px;
  height: fit-content;
  padding-bottom: var(--button-height);
}
body.index main section#hero > div fieldset * {
  color: #124472;
  font-family: "Montserrat", sans-serif;
  letter-spacing: -1px;
}
body.index main section#hero > div fieldset legend {
  font-size: 50px;
  float: unset;
  width: 70%;
  padding: 0 2%;
  text-align: center;
  margin: auto;
}
body.index main section#hero > div fieldset legend img {
  width: 100%;
  height: auto;
  margin: auto;
}
body.index main section#hero > div fieldset .date-n-venue {
  width: 100%;
  height: fit-content;
  display: flex;
  justify-content: center;
}
body.index main section#hero > div fieldset .date-n-venue img {
  width: 90%;
  height: auto;
  margin: auto;
}
body.index main section#hero > div #index-register-interest {
  position: absolute;
  top: calc(100% - var(--button-height) / 2);
  left: 50%;
  translate: -50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 21px;
  height: var(--button-height);
  aspect-ratio: 4/1;
  width: auto;
  background-image: url("../images/shared/btn-bg.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  text-decoration: none;
  color: white;
}
body.index main section#welcome {
  margin-top: -200px;
  transition: margin-top 1s ease;
}
body.index main section#welcome .section-content {
  display: grid;
  gap: 2.5%;
  grid-template-columns: 270px auto;
  grid-template-areas: "portrait text";
}
body.index main section#welcome .section-content .text {
  grid-area: text;
}
body.index main section#welcome .section-content .text h4 {
  margin-bottom: 24px;
}
body.index main section#welcome .section-content .text .text-content p, body.index main section#welcome .section-content .text .text-content ul {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.25;
  margin-bottom: 24px;
  text-align: justify;
}
body.index main section#welcome .section-content .text .text-content p:last-child, body.index main section#welcome .section-content .text .text-content ul:last-child {
  margin-bottom: 0;
}
body.index main section#welcome .section-content .text .text-content p:has(+ ul), body.index main section#welcome .section-content .text .text-content ul:has(+ ul) {
  margin-bottom: 6px;
}
body.index main section#welcome .section-content .text .text-content p b, body.index main section#welcome .section-content .text .text-content ul b {
  font-weight: 600;
}
body.index main section#welcome .section-content .text .text-content ul {
  padding-left: 20px;
}
body.index main section#welcome .section-content .portrait {
  grid-area: portrait;
  gap: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  width: 100%;
  height: fit-content;
}
body.index main section#welcome .section-content .portrait .image-container {
  width: 100%;
  position: relative;
}
body.index main section#welcome .section-content .portrait .image-container img {
  width: 100%;
  height: auto;
}
body.index main section#welcome .section-content .portrait p {
  text-align: center;
  line-height: 1.2;
  margin-bottom: 0;
  font-weight: 300;
}
body.index main section#welcome .section-content .portrait p span {
  white-space: nowrap;
}
body.index main section#welcome .section-content .portrait p b {
  font-weight: 500;
}
body.index main section#video {
  max-height: calc(var(--100svh) - var(--header-height) - var(--footer-height));
}
body.index main section#video .section-content {
  padding: 0 50px;
}
body.index main section#video .section-content .video-content {
  max-height: calc(var(--100svh) - var(--header-height) - var(--footer-height) - 130px);
  margin: auto;
  height: auto;
  aspect-ratio: 16/9;
  position: relative;
}
body.index main section#video .section-content .video-content a#watch-video {
  cursor: pointer;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
  z-index: 2;
}
body.index main section#video .section-content .video-content a#watch-video .thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body.index main section#video .section-content .video-content a#watch-video .play-icon {
  position: absolute;
  width: 8.5%;
  aspect-ratio: 1/1;
  bottom: 2%;
  right: 1.5%;
  height: auto;
}
body.index main section#video .section-content .video-content iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: none;
}
body.index main section#visit .section-content {
  margin: auto;
  display: flex;
  width: 100%;
  height: 100%;
  align-items: start;
  justify-content: center;
}
body.index main section#visit .section-content .visit-btns {
  display: grid;
  gap: 3.5%;
  grid-template-columns: repeat(3, 28%);
  max-width: 1200px;
  margin: 20px auto;
  justify-content: center;
}
body.index main section#visit .section-content .visit-btns .visit-btn span {
  white-space: nowrap;
}
body.index main section#visit .section-content .visit-btns .visit-btn:hover img {
  translate: -10px 10px;
}
body.index #index-skyline {
  position: fixed;
  bottom: 44px;
  width: 100%;
  height: fit-content;
  z-index: 1;
}
body.index #index-skyline img {
  height: 250px;
  object-fit: cover;
  width: 100%;
  object-position: center;
}
body.index.scroll-bottom #index-skyline {
  transition: opacity 0.5s ease;
  opacity: 1 !important;
}

body.visit-hk.venue-and-transportation main section .section-content {
  max-width: 1100px;
  margin: auto;
  padding: 1% 0 50px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
body.visit-hk.venue-and-transportation main section .section-content .welcome {
  max-width: 580px;
  margin: auto;
}
body.visit-hk.venue-and-transportation main section .section-content .welcome img {
  border-bottom-left-radius: 0px;
}
body.visit-hk.venue-and-transportation main section .section-content .welcome span {
  top: 8%;
}
body.visit-hk.venue-and-transportation main section .section-content .venue {
  text-align: center;
  margin-bottom: 60px;
}
body.visit-hk.venue-and-transportation main section .section-content .venue h4 {
  font-weight: 600;
  margin-bottom: 0;
  font-size: 20px;
}
body.visit-hk.venue-and-transportation main section .section-content .venue .address-lines {
  font-weight: 300;
  font-size: 20px;
  line-height: 1.3;
}
body.visit-hk.venue-and-transportation main section .section-content .transport h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 60px;
  text-align: center;
}
body.visit-hk.venue-and-transportation main section .section-content .transport .transport-blocks {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
body.visit-hk.venue-and-transportation main section .section-content .transport .transport-blocks .transport-block {
  display: grid;
  grid-template-rows: auto auto;
  grid-template-areas: "img text";
  grid-template-columns: max(360px, 40%) auto;
  gap: 0 max(36px, 4%);
}
body.visit-hk.venue-and-transportation main section .section-content .transport .transport-blocks .transport-block:nth-child(even) {
  grid-template-areas: "text img";
  grid-template-columns: auto max(360px, 40%);
}
body.visit-hk.venue-and-transportation main section .section-content .transport .transport-blocks .transport-block .deco-img {
  grid-area: img;
  --button-height: 36px;
}
body.visit-hk.venue-and-transportation main section .section-content .transport .transport-blocks .transport-block .deco-img span {
  width: 50%;
  top: calc(95% - var(--button-height) * 1.75);
}
body.visit-hk.venue-and-transportation main section .section-content .transport .transport-blocks .transport-block .text-info {
  grid-area: text;
  margin-top: -10px;
}
body.visit-hk.venue-and-transportation main section .section-content .transport .transport-blocks .transport-block .text-info h4 {
  color: white;
  font-size: 20px;
}
body.visit-hk.venue-and-transportation main section .section-content .transport .transport-blocks .transport-block .text-info ul {
  padding-left: 20px;
}
body.visit-hk.venue-and-transportation main section .section-content .transport .transport-blocks .transport-block .text-info ul li {
  font-weight: 300;
  font-size: 17px;
  text-align: justify;
}

@media (min-width: 992px) {
  .on-mobile {
    display: none !important;
  }
}
@media (max-width: 1200px) {
  header .header-inner {
    grid-template-columns: 37.5% 25% 37.5%;
  }
  header .header-inner .main-logo img {
    height: 55px;
  }
  header .header-inner .side-logos {
    gap: 25px;
  }
  header .header-inner .side-logos img.doj {
    height: 65px;
  }
  header .header-inner .side-logos img.law-tech {
    height: 50px;
  }
  body.index main section#hero {
    max-width: 550px;
  }
  body.index main section#video {
    min-height: unset;
  }
  body.index main section#video .section-content {
    padding: 0px;
  }
  body.index main section#visit .section-content .visit-btns .visit-btn span {
    font-size: 22px;
  }
}
@media (max-width: 1200px) and (max-width: 1100px) {
  body.index main section#visit .section-content .visit-btns .visit-btn span {
    font-size: 20px;
  }
}
@media (max-width: 992px) {
  .on-mobile {
    display: initial;
  }
  :root {
    --header-height: calc(70px + var(--bar-height));
    --bar-height: 4px;
  }
  body main section {
    --edge: 50px;
    width: 100%;
  }
}
@media (max-width: 992px) and (max-width: 660px) {
  body main section {
    --edge: 30px;
  }
}
@media (max-width: 992px) {
  body main section h2 {
    width: 100%;
  }
}
@media (max-width: 992px) and (max-width: 660px) {
  body main section h2 {
    font-size: 26px;
    gap: 10px;
  }
}
@media (max-width: 992px) {
  body main section .section-content {
    width: calc(100% - var(--edge) * 2);
    margin: auto;
  }
  header {
    z-index: 11;
  }
  header .background-container {
    z-index: 1;
  }
  header .header-inner {
    height: 70px;
  }
  header .header-inner .side-logos {
    display: none;
  }
  header .header-inner .main-logo {
    z-index: 3;
  }
  header .header-inner .main-logo img {
    height: 48px;
  }
  header nav .navbar-toggler {
    z-index: 10;
    border: none;
    position: relative;
    width: 30px;
    height: 1.5em;
    margin-left: auto;
    padding: 0;
  }
  header nav .navbar-toggler .navbar-toggler-icon {
    height: 3px;
    width: 1.5em;
    background-color: white;
    margin-top: -2px;
    background-image: none;
    transition: all 0.5s ease;
  }
  header nav .navbar-toggler .navbar-toggler-icon::before, header nav .navbar-toggler .navbar-toggler-icon::after {
    content: "";
    background-color: white;
    width: 1.5em;
    height: 3px;
    left: 0;
    position: absolute;
    transition: all 0.5s ease;
  }
  header nav .navbar-toggler .navbar-toggler-icon::before {
    top: 3px;
  }
  header nav .navbar-toggler .navbar-toggler-icon::after {
    bottom: 2px;
  }
  header nav #main-nav {
    position: fixed;
    top: 0;
    left: 0;
    height: var(--100svh);
    width: 360px;
    background-color: var(--bg-blue);
    transition: left 0.5s ease;
  }
  header nav #main-nav.collapse, header nav #main-nav.collapsing {
    left: -360px;
  }
  header nav #main-nav.collapse.show, header nav #main-nav.collapsing.show {
    left: 0;
  }
  header nav #main-nav.collapsing {
    transition: none;
  }
}
@media (max-width: 992px) and (max-width: 480px) {
  header nav #main-nav {
    width: 100%;
  }
  header nav #main-nav.collapse, header nav #main-nav.collapsing {
    left: -100%;
  }
  header nav #main-nav.collapse.show, header nav #main-nav.collapsing.show {
    left: 0%;
  }
}
@media (max-width: 992px) {
  header nav #main-nav > div {
    height: 100%;
    width: 100%;
    padding-left: 20px;
    position: relative;
    overflow: hidden;
    display: flex;
  }
  header nav #main-nav > div ul.navbar-nav {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    padding-top: calc(var(--header-height));
    padding-bottom: 100px;
    gap: 4px;
  }
  header nav #main-nav > div ul.navbar-nav > li.nav-item {
    flex-direction: column;
    align-items: start;
  }
  header nav #main-nav > div ul.navbar-nav #about-us-navbar-dropdown {
    pointer-events: none;
    color: var(--highlight-blue);
  }
  header nav #main-nav > div ul.navbar-nav #about-us-navbar-dropdown i {
    display: none;
  }
  header nav #main-nav > div ul.navbar-nav #menu-about-us {
    position: relative !important;
    transform: none !important;
    border: none !important;
    padding: 0 14px;
    display: block !important;
  }
  header nav #main-nav > div ul.navbar-nav li:has(#lang-navbar-dropdown) {
    margin-top: 20px;
    rotate: -90deg;
  }
  header nav #main-nav > div ul.navbar-nav li:has(#lang-navbar-dropdown) a {
    rotate: 90deg;
  }
  header nav #main-nav > div ul.navbar-nav li:has(#lang-navbar-dropdown) #menu-lang {
    margin: 10px 0 !important;
    inset: 0px 0px auto auto !important;
    transform: translate(0px, 42px) !important;
  }
  header nav #main-nav > div ul.navbar-nav li:has(#lang-navbar-dropdown) #menu-lang ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  header .register-interest {
    display: none;
  }
  body.index:not(.scroll) header .background-container,
  body.index:not(.scroll) header nav {
    opacity: 1;
  }
  body.index:not(.scroll) header nav {
    pointer-events: auto;
  }
  body.index:not(.scroll) main {
    margin-top: 0;
    max-height: calc(var(--100svh) - var(--header-height) - var(--footer-height));
    height: calc(var(--100svh) - var(--header-height) - var(--footer-height));
  }
  body.index main section#hero {
    grid-template-rows: 120px 180px auto;
  }
}
@media (max-width: 992px) and (max-width: 660px) {
  body.index main section#hero {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100svh;
    margin-top: calc(var(--header-height) * -1) !important;
    padding-top: calc(var(--header-height) + max(20px, 4vh));
    padding-bottom: calc(var(--footer-height) + 250px);
    justify-content: start;
  }
  body.index main section#hero > *:not(.logos) {
    width: 90%;
    margin: 0 auto;
  }
}
@media (max-width: 992px) {
  body.index main section#hero .on-mobile.logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 35px;
    gap: min(7svw, 35px);
  }
  body.index main section#hero .on-mobile.logos img {
    width: auto;
    object-fit: contain;
  }
  body.index main section#hero .on-mobile.logos img.doj {
    height: 80px;
  }
}
@media (max-width: 992px) and (max-width: 660px) {
  body.index main section#hero .on-mobile.logos img.doj {
    width: 30svw;
    max-width: 128px;
  }
}
@media (max-width: 992px) {
  body.index main section#hero .on-mobile.logos img.law-tech {
    height: 55px;
  }
}
@media (max-width: 992px) and (max-width: 660px) {
  body.index main section#hero .on-mobile.logos img.law-tech {
    width: 50svw;
    max-width: 240px;
  }
}
@media (max-width: 992px) {
  body.index main section#welcome {
    margin-top: -100px;
  }
  body.index main section#welcome .section-content {
    display: block;
  }
}
@media (max-width: 992px) and (max-width: 660px) {
  body.index main section#welcome .section-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 992px) {
  body.index main section#welcome .section-content .text {
    padding: 0;
  }
  body.index main section#welcome .section-content .text h4 {
    margin-bottom: 16px;
  }
  body.index main section#welcome .section-content .text .text-content p, body.index main section#welcome .section-content .text .text-content ul {
    font-size: 16px;
    margin-bottom: 16px;
  }
  body.index main section#welcome .section-content .text .text-content p:last-child, body.index main section#welcome .section-content .text .text-content ul:last-child {
    margin-bottom: 24px;
  }
  body.index main section#welcome .section-content .text .text-content p:has(+ ul), body.index main section#welcome .section-content .text .text-content ul:has(+ ul) {
    margin-bottom: 4px;
  }
  body.index main section#welcome .section-content .portrait {
    max-width: 250px;
    width: 250px;
    float: right;
    margin: 6px 0px 30px 30px;
  }
}
@media (max-width: 992px) and (max-width: 660px) {
  body.index main section#welcome .section-content .portrait {
    width: 100%;
    margin: 0 auto;
  }
}
@media (max-width: 992px) {
  body.index main section#welcome .section-content .portrait p {
    font-size: 14px;
  }
  body.index main section#visit {
    padding-bottom: 150px;
  }
  body.index main section#visit .section-content .visit-btns {
    display: flex;
    gap: 40px;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 0 20px;
  }
}
@media (max-width: 992px) and (max-width: 660px) {
  body.index main section#visit .section-content .visit-btns {
    flex-direction: column;
  }
}
@media (max-width: 992px) {
  body.index main section#visit .section-content .visit-btns .visit-btn {
    width: 280px;
  }
  body.index main section#visit .section-content .visit-btns .visit-btn:hover img {
    translate: 0px 0px;
  }
  body.index #index-skyline img {
    height: auto;
    width: 195%;
    position: relative;
    left: 50%;
    translate: -50%;
  }
}
@media (max-width: 992px) and (max-width: 660px) {
  body.visit-hk.venue-and-transportation main section .section-content .welcome span {
    font-size: 22px;
  }
}
@media (max-width: 992px) and (max-width: 660px) and (max-width: 480px) {
  body.visit-hk.venue-and-transportation main section .section-content .welcome span {
    font-size: 17px;
  }
}
@media (max-width: 992px) and (max-width: 480px) {
  body.visit-hk.venue-and-transportation main section .section-content .venue h4, body.visit-hk.venue-and-transportation main section .section-content .venue .address-lines {
    font-size: 16px;
  }
}
@media (max-width: 992px) and (max-width: 480px) {
  body.visit-hk.venue-and-transportation main section .section-content .venue h4 {
    margin-bottom: 4px;
  }
}
@media (max-width: 992px) {
  body.visit-hk.venue-and-transportation main section .section-content .transport .transport-blocks .transport-block {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 550px;
    width: 100%;
    margin: auto;
  }
  body.visit-hk.venue-and-transportation main section .section-content .transport .transport-blocks .transport-block .deco-img {
    max-width: 360px;
  }
}
@media (max-width: 992px) and (max-width: 480px) {
  body.visit-hk.venue-and-transportation main section .section-content .transport .transport-blocks .transport-block .text-info ul {
    font-size: 16px;
  }
}
:root {
  --gold: #bf934c;
  --bg-blue: #0d5b6e;
  --text-blue: #04626b;
  --highlight-blue: #30c7ce;
  --100svh: 100vh;
  --100svw: 100vw;
}
@supports (height: 100svh) {
  :root :root {
    --100svh: 100svh;
    --100svw: 100svw;
  }
}

body {
  margin: 0;
  min-height: var(--100svh);
}

@font-face {
  font-display: swap;
  font-family: "Barlow";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/barlow/barlow-300.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
@font-face {
  font-display: swap;
  font-family: "Barlow";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/barlow/barlow-400.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
@font-face {
  font-display: swap;
  font-family: "Barlow";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/barlow/barlow-500.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
@font-face {
  font-display: swap;
  font-family: "Barlow";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/barlow/barlow-600.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
@font-face {
  font-display: swap;
  font-family: "NotoSans TC";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/notosans-tc/notosans-tc-300.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
@font-face {
  font-display: swap;
  font-family: "NotoSans TC";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/notosans-tc/notosans-tc-400.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
@font-face {
  font-display: swap;
  font-family: "NotoSans TC";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/notosans-tc/notosans-tc-500.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
@font-face {
  font-display: swap;
  font-family: "NotoSans TC";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/notosans-tc/notosans-tc-600.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
@font-face {
  font-display: swap;
  font-family: "NotoSans SC";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/notosans-sc/notosans-sc-300.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
@font-face {
  font-display: swap;
  font-family: "NotoSans SC";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/notosans-sc/notosans-sc-400.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
@font-face {
  font-display: swap;
  font-family: "NotoSans SC";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/notosans-sc/notosans-sc-500.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
@font-face {
  font-display: swap;
  font-family: "NotoSans SC";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/notosans-sc/notosans-sc-600.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
* {
  font-family: "Barlow", sans-serif;
  color: white;
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: white;
}

button {
  border: none;
  margin: 0;
  padding: 0;
  width: auto;
  overflow: visible;
  background: transparent;
  /* inherit font & color from ancestor */
  color: inherit;
  font: inherit;
  text-align: inherit;
  outline: none;
  /* Normalize `line-height`. Cannot be changed from `normal` in Firefox 4+. */
  line-height: normal;
  /* Corrects font smoothing for webkit */
  -webkit-font-smoothing: inherit;
  -moz-osx-font-smoothing: inherit;
  /* Corrects inability to style clickable `input` types in iOS */
  -webkit-appearance: none;
  /* Remove excess padding and border in Firefox 4+ */
}
button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

h2 {
  display: flex;
  color: white;
  font-weight: 600;
  font-size: 32px;
  width: 100%;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}
h2::before, h2::after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: white;
  opacity: 0.7;
}

.deco-img {
  z-index: 1;
  position: relative;
  height: fit-content;
}
.deco-img::after {
  content: "";
  z-index: -1;
  position: absolute;
  width: 100%;
  height: 95%;
  top: -10px;
  right: -10px;
  background-color: #c59d5c;
}
.deco-img img {
  transition: translate 0.5s ease;
  width: 100%;
  height: auto;
  border-bottom-left-radius: calc(var(--button-height) / 3);
}
.deco-img span {
  position: absolute;
  top: calc(95% - var(--button-height));
  right: 0;
  translate: 10px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 24px;
  border-bottom-left-radius: calc(var(--button-height) / 3);
  height: var(--button-height);
  width: calc(95% + 10px);
  background-image: url("../images/shared/btn-bg.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  text-decoration: none;
  color: white;
}

h4 {
  font-size: 24px;
}/*# sourceMappingURL=main.css.map */