/* General */
:root {
  --nav-height: 75px;
}

html.hold {
  overflow: hidden;
}
html.hold > body {
  overflow: hidden;
}

body {
  font-size: 16px;
  color: hsl(60, 2%, 22%);
  font-family: "Noto Sans HK", sans-serif;
}

img {
  max-width: 100%;
  max-height: 100%;
}
img.object-cover, img.object-contain {
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
img.object-cover {
  -o-object-fit: cover;
     object-fit: cover;
}
img.object-contain {
  -o-object-fit: contain;
     object-fit: contain;
}

a {
  text-decoration: none;
  color: hsl(60, 2%, 22%);
}

ol, ul {
  padding-left: 1rem;
}

i.fa-solid, i.fa-regular, i.fa-brands {
  line-height: 1.5;
  font-size: 18px;
}

.color-1 {
  color: #1E2E45;
}

.color-2 {
  color: #94744E;
}

.color-3 {
  color: #9A9162;
}

.color-4 {
  color: #404040;
}

.color-5 {
  color: #E8E9E1;
}

.bg-color-1 {
  background-color: #1E2E45;
}

.bg-color-2 {
  background-color: #94744E;
}

.bg-color-3 {
  background-color: #9A9162;
}

.bg-color-4 {
  background-color: #404040;
}

.bg-color-5 {
  background-color: #E8E9E1;
}

.dm-serif {
  font-family: "DM Serif Display", sans-serif;
  font-weight: 400;
}

.nav-item.dropdown > .dropdown-menu {
  border-color: #ffffff;
  min-width: 8em;
}

.nav-link {
  font-size: 16px;
  color: hsl(60, 2%, 22%);
  white-space: nowrap;
}

input:focus, textarea:focus, button:focus, a:focus {
  box-shadow: none !important;
  outline: 0;
}

.page-heading .sub-title {
  letter-spacing: 0.1em;
  line-height: 1.75;
}

.submit-button {
  letter-spacing: 0.1em;
  text-transform: capitalize;
}
.submit-button:disabled {
  cursor: no-drop;
  background-color: light-dark(rgba(239, 239, 239, 0.3), rgba(19, 1, 1, 0.3));
  color: light-dark(rgba(16, 16, 16, 0.3), rgba(255, 255, 255, 0.3));
  border-color: light-dark(rgba(118, 118, 118, 0.3), rgba(195, 195, 195, 0.3));
}

/* Header */
nav {
  height: var(--nav-height);
  background-color: #ffffff;
  transition: background-color 0.2s ease;
  z-index: 1;
}
nav.text-white .navbar-brand img {
  filter: invert(100%);
}
nav.text-white .nav-link {
  color: #ffffff;
}
nav.text-white .navbar-toggler.collapsed .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
nav .navbar-brand {
  margin: 0;
  z-index: 1;
}
nav .navbar-brand img {
  width: 190px;
}
nav .navbar-toggler {
  z-index: 2;
}
nav .navbar-toggler.collapsed .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(25, 36, 52, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
nav .navbar-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='30' fill='%23FFFFFF' viewBox='-120 -120 550 550' width='30'%3E%3Cpath d='m194.800781 164.769531 128.210938-128.214843c8.34375-8.339844 8.34375-21.824219 0-30.164063-8.339844-8.339844-21.824219-8.339844-30.164063 0l-128.214844 128.214844-128.210937-128.214844c-8.34375-8.339844-21.824219-8.339844-30.164063 0-8.34375 8.339844-8.34375 21.824219 0 30.164063l128.210938 128.214843-128.210938 128.214844c-8.34375 8.339844-8.34375 21.824219 0 30.164063 4.15625 4.160156 9.621094 6.25 15.082032 6.25 5.460937 0 10.921875-2.089844 15.082031-6.25l128.210937-128.214844 128.214844 128.214844c4.160156 4.160156 9.621094 6.25 15.082032 6.25 5.460937 0 10.921874-2.089844 15.082031-6.25 8.34375-8.339844 8.34375-21.824219 0-30.164063zm0 0'/%3E%3C/svg%3E%0A");
}

/* Company profile & Personal profile */
#profile {
  overflow: hidden;
  padding-top: var(--nav-height);
}
#profile .banner::after {
  content: " ";
  display: block;
  padding-bottom: 40%;
}
#profile .banner .heading-area {
  position: relative;
  z-index: 11;
}
#profile .banner .heading-area .heading-line-1 {
  font-size: 200px;
}
#profile .banner .heading-area .heading-line-2 {
  font-size: 100px;
}
#profile .banner .heading-area .heading-line-3 {
  font-size: 60px;
}
#profile .banner img {
  -o-object-position: center center;
     object-position: center center;
}
#profile .intro-container > .row > .col-12:first-of-type {
  border-right: 1px solid #1E2E45;
}
#profile .info .intro {
  line-height: 1.5;
}
#profile .info .content {
  line-height: 2;
}

/* Services */
#services {
  overflow: hidden;
}
#services .banner-section .page-heading {
  position: relative;
  z-index: 11;
}
#services .banner-section .page-heading .page-title {
  font-size: 100px;
  line-height: 1.2;
  text-transform: capitalize;
}
#services .banner-section .page-heading .sub-title {
  font-size: 20px;
}
#services .banner-section .learn-more-button {
  min-width: 150px;
}
#services .banner-section .banner::after {
  content: " ";
  display: block;
  padding-bottom: 40%;
}
#services .banner-section .banner img {
  -o-object-position: center center;
     object-position: center center;
  transform: translateY(30%);
}
#services .breadcrumb-item + .breadcrumb-item {
  padding-left: 1rem;
}
#services .breadcrumb-item + .breadcrumb-item::before {
  padding-right: 1rem;
}
#services .service-item .item-heading-en {
  font-size: 14px;
}
#services .service-item .item-heading {
  font-size: 36px;
}
#services .service-item .item-content {
  font-size: 16px;
  line-height: 2;
}

/* Contact & Quote */
#contact, #quote {
  overflow: hidden;
}
#contact .banner::after, #quote .banner::after {
  content: " ";
  display: block;
  padding-bottom: 40%;
}
#contact .banner .heading-area, #quote .banner .heading-area {
  position: relative;
  z-index: 11;
}
#contact .banner .heading-area .page-title, #quote .banner .heading-area .page-title {
  font-size: 60px;
  line-height: 1.2;
  text-transform: capitalize;
}
#contact .banner .heading-area .sub-title, #quote .banner .heading-area .sub-title {
  font-size: 20px;
}
#contact .banner img, #quote .banner img {
  -o-object-position: center center;
     object-position: center center;
  filter: brightness(0.75) blur(10px) grayscale(1);
}
#contact .form-heading, #quote .form-heading {
  font-size: 50px;
  text-transform: capitalize;
  line-height: 1.2;
}
#contact .about-info span, #quote .about-info span {
  white-space: pre-line;
}

/* Form */
.form textarea {
  height: 160px;
  resize: none;
}
.form .form-select {
  border: 1px solid #1E2E45;
  border-radius: 0;
}
.form .form-floating .form-control {
  height: calc(4rem + 2px);
}
.form .form-floating textarea {
  height: 160px !important;
}
.form .form-control {
  border: 1px solid #1E2E45;
  border-radius: 0;
  line-height: 2;
}
.form .form-control.is-invalid ~ .btn {
  border-color: #dc3545 !important;
}
.form .form-control.is-valid ~ .btn {
  border-color: #198754 !important;
}
.form .form-control::-moz-placeholder {
  text-transform: capitalize;
  font-family: "dm-serif";
}
.form .form-control::placeholder {
  text-transform: capitalize;
  font-family: "dm-serif";
}
.form label {
  font-size: 15px;
  line-height: 1;
  text-transform: capitalize;
}
.form label[for=agree] {
  color: #9A9162;
}
.form label[for=agree] a {
  color: #9A9162;
}
.form[data-form=contact] label.required::after {
  content: " *";
}
.form[data-form=quote] label.required::before {
  content: "* ";
}
.form .form-check-input {
  float: none;
  margin-top: 0;
  display: inline-block;
  vertical-align: middle;
}
.form .form-check-input[type=radio] + .form-check-label {
  text-wrap: nowrap;
}
.form .form-check-input:checked {
  border-color: #1E2E45;
  background-color: #ffffff;
}
.form .form-check-input:checked[type=radio] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23192434'/%3e%3c/svg%3e");
}
.form .form-check-input:checked[type=checkbox] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23192434' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
}
.form .form-check-input + .form-check-label {
  vertical-align: middle;
}
.form .mention {
  font-size: 13px;
  font-weight: 300;
}

/* Error */
#error .image img {
  max-width: 250px;
}

/* Thankyou */
#thankyou .msg {
  font-size: 30px;
  line-height: 1.75;
}

/* Footer */
footer {
  font-size: 17px;
}
footer .logo {
  justify-self: center;
  border-bottom: 1px solid #ffffff;
}
footer .logo img {
  width: 250px;
  filter: invert(100%);
}
footer .footer-nav a {
  color: #ffffff;
}
footer .footer-nav a:hover {
  color: #94744E;
}
footer .footer-nav .service-items {
  font-size: 16px;
}
footer .footer-nav i {
  min-width: 20px;
}
footer .copyright {
  font-size: 14px;
  letter-spacing: 0.1em;
}

/* Responsive font size */
/* Medium md - 768px+ */
@media (min-width: 768px) {
  .position-md-absolute {
    position: absolute !important;
  }
  nav .nav-link:hover, nav .nav-link:focus {
    color: #9A9162;
  }
  .page-heading .page-title {
    font-size: 20px;
  }
  .page-heading .sub-title {
    font-size: 17px;
  }
}
/* Large lg - 992px+ */
@media (min-width: 992px) {
  nav .navbar-nav {
    width: auto;
  }
  .nav-item.dropdown .dropdown-menu {
    left: 0;
    margin-top: 0;
  }
  .nav-item.dropdown:hover > .dropdown-menu {
    display: block;
  }
  .nav-item.dropdown > .dropdown-toggle::after {
    display: none;
  }
}
/* Extra extra large xxl - 1200px+ */
/* Extra extra large xxl - 1400px+ */
/* Custom over 1920 - 1920px+ */
/* Custom under 1399px */
@media (max-width: 1399px) {
  /* Company profile & Personal profile */
  #profile .banner .heading-area .heading-line-3 {
    font-size: 50px;
  }
  /* Services */
  #services .banner-section .page-heading .page-title {
    font-size: 70px;
  }
  #services .banner-section .page-heading .sub-title {
    font-size: 20px;
  }
  #services .banner-section .banner::after {
    padding-bottom: 45%;
  }
  #services .service-item .item-heading {
    font-size: 32px;
  }
}
/* Custom under 1199px */
@media (max-width: 1199px) {
  nav .navbar-brand img {
    width: 150px;
  }
  nav .nav-item.dropdown .dropdown-item {
    font-size: 15px;
  }
  nav .nav-item .nav-link {
    font-size: 15px;
  }
  /* Company profile & Personal profile */
  #profile .banner .heading-area .heading-line-1 {
    font-size: 140px;
  }
  #profile .banner .heading-area .heading-line-2 {
    font-size: 70px;
  }
  #profile .banner .heading-area .heading-line-3 {
    font-size: 42px;
  }
  /* Services */
  #services .banner-section .page-heading .page-title {
    font-size: 60px;
  }
  #services .banner-section .banner::after {
    padding-bottom: 50%;
  }
  #services .banner-section .banner img {
    transform: translateY(25%);
  }
  #services .service-item .item-heading {
    font-size: 30px;
  }
  #services .service-item .item-content {
    font-size: 15px;
    line-height: 1.75;
  }
  /* Contact & Quote */
  #contact .banner .heading-area .page-title, #quote .banner .heading-area .page-title {
    font-size: 42px;
  }
  #contact .form-heading, #quote .form-heading {
    font-size: 40px;
  }
  /* Form */
  .form label {
    font-size: 14px;
  }
}
/* Custom under 991px */
@media (max-width: 991px) {
  :root {
    --nav-height: 50px;
  }
  nav.show {
    height: auto;
    background-color: #1E2E45 !important;
  }
  nav.show .navbar-brand img {
    filter: invert(100%);
  }
  nav .navbar-brand {
    height: var(--nav-height);
    margin: 0;
    z-index: 1;
    padding: 0.375rem 0.75rem;
  }
  nav .navbar-brand img {
    width: 170px;
  }
  nav .navbar-brand span {
    font-size: 28px;
  }
  nav .nav-item {
    transition: all 0.15s;
  }
  nav .nav-item.dropdown:has(> .dropdown-menu.show) {
    background-color: #ffffff;
    color: #1E2E45;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  }
  nav .nav-item.dropdown:has(> .dropdown-menu.show) .nav-link {
    color: #1E2E45;
  }
  nav .nav-item.dropdown:has(> .dropdown-menu.show) .nav-link:hover, nav .nav-item.dropdown:has(> .dropdown-menu.show) .nav-link:focus {
    color: #1E2E45;
  }
  nav .nav-item.dropdown:has(> .dropdown-menu.show) .nav-link.dropdown-toggle::after {
    border: 0;
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='25' height='12' viewBox='0 0 32 17' fill='none'%3E%3Cpath d='M1 1.31577L16 14.7852L31 1.31577' stroke='%23192434' stroke-width='2'/%3E%3C/svg%3E");
    transform: rotate(180deg);
  }
  nav .nav-item.dropdown > .dropdown-menu {
    border-color: transparent;
    background-color: transparent;
    box-shadow: none !important;
  }
  nav .nav-item.dropdown > .dropdown-menu .dropdown-item {
    font-size: 4.5vw;
    font-weight: 300;
    padding-left: 0;
    padding-right: 0;
  }
  nav .nav-item .nav-link {
    font-size: 5vw;
    font-weight: 300;
    color: #ffffff;
  }
  nav .nav-item .nav-link:hover, nav .nav-item .nav-link:focus {
    color: #ffffff;
  }
  nav .nav-item .nav-link.dropdown-toggle::after {
    border: 0;
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='25' height='12' viewBox='0 0 32 17' fill='none'%3E%3Cpath d='M1 1.31577L16 14.7852L31 1.31577' stroke='%23FFFFFF' stroke-width='2'/%3E%3C/svg%3E");
    transition: all 0.15s;
  }
  nav .navbar-toggler {
    position: absolute;
    right: 0.35rem;
    top: 0.35rem;
  }
  nav .navbar-nav {
    height: calc(100dvh - var(--nav-height));
    overflow-y: scroll;
  }
  /* Company profile & Personal profile */
  #profile .banner .heading-area .heading-line-1 {
    font-size: 100px;
  }
  #profile .banner .heading-area .heading-line-2 {
    font-size: 55px;
  }
  #profile .banner .heading-area .heading-line-3 {
    font-size: 35px;
  }
  /* Services */
  #services .banner-section .page-heading .page-title {
    font-size: 50px;
  }
  #services .banner-section .page-heading .sub-title {
    font-size: 18px;
  }
  #services .banner-section .banner::after {
    padding-bottom: 60%;
  }
  #services .service-item .item-heading-en {
    font-size: 14px;
  }
  #services .service-item .item-heading {
    font-size: 26px;
  }
  #services .service-item .item-content {
    font-size: 14px;
    line-height: 1.5;
  }
  /* Contact & Quote */
  #contact .banner .heading-area .page-title, #quote .banner .heading-area .page-title {
    font-size: 35px;
  }
  #contact .form-heading, #quote .form-heading {
    font-size: 30px;
  }
  /* Form */
  .form label {
    font-size: 13px;
  }
}
/* Mobile Parts */
@media (max-width: 767px) {
  body {
    font-size: 3.5vw;
  }
  /* Company profile & Personal profile */
  #profile .banner::after {
    padding-bottom: 120%;
  }
  #profile .banner .heading-area .heading-line-1 {
    font-size: 20vw;
    text-shadow: 0.5vw 0.5vw rgba(0, 0, 0, 0.25);
  }
  #profile .banner .heading-area .heading-line-2 {
    font-size: 12vw;
    color: #ffffff;
    text-shadow: 0.5vw 0.5vw rgba(0, 0, 0, 0.25);
  }
  #profile .banner .heading-area .heading-line-3 {
    font-size: 10vw;
    color: #ffffff;
    text-shadow: 0.5vw 0.5vw rgba(0, 0, 0, 0.25);
  }
  #profile .banner img {
    filter: brightness(0.75) blur(3px);
  }
  #profile .intro-container > .row > .col-12:first-of-type {
    border-right: none;
  }
  #profile .info .content {
    line-height: 1.5;
  }
  /* Services */
  #services .banner-section .page-heading .page-title {
    font-size: 12vw;
    text-shadow: 0.5vw 0.5vw rgba(0, 0, 0, 0.25);
  }
  #services .banner-section .page-heading .sub-title {
    font-size: 8vw;
    text-shadow: 0.5vw 0.5vw rgba(0, 0, 0, 0.25);
  }
  #services .banner-section .banner::after {
    padding-bottom: 120%;
  }
  #services .banner-section .banner img {
    transform: translateY(0);
    filter: brightness(0.75) blur(3px);
  }
  #services .service-item .item-heading-en {
    font-size: 3.75vw;
  }
  #services .service-item .item-heading {
    font-size: 5.5vw;
  }
  #services .service-item .item-content {
    font-size: 3.5vw;
  }
  /* Contact & Quote */
  #contact .banner::after, #quote .banner::after {
    padding-bottom: 120%;
  }
  #contact .banner .heading-area .page-title, #quote .banner .heading-area .page-title {
    font-size: 10vw;
    text-shadow: 0.5vw 0.5vw rgba(0, 0, 0, 0.25);
  }
  #contact .banner .heading-area .sub-title, #quote .banner .heading-area .sub-title {
    font-size: 8vw;
    text-shadow: 0.5vw 0.5vw rgba(0, 0, 0, 0.25);
  }
  #contact .form-heading, #quote .form-heading {
    font-size: 30px;
  }
  #contact .maps-section, #quote .maps-section {
    height: 45vh;
  }
  /* Form */
  .form .input-group .input-group-text {
    font-size: 4vw;
  }
  .form textarea {
    height: 90px;
  }
  .form .mention {
    font-size: 3vw;
  }
  .form label {
    font-size: 4vw;
  }
  .submit-button {
    font-size: 4.5vw;
  }
  .page-heading .page-title {
    font-size: 5vw;
  }
  .page-heading .sub-title {
    font-size: 5vw;
  }
  /* Privacy & Terms */
  #privacy, #terms {
    padding-top: 20%;
    padding-bottom: 20%;
  }
  /* Thankyou */
  #thankyou .msg {
    font-size: 5vw;
  }
  /* Footer */
  footer {
    font-size: 3.5vw;
  }
  footer .logo img {
    width: 55vw;
  }
  footer .footer-nav .service-items {
    font-size: 3.5vw;
  }
  footer .copyright {
    font-size: 2.75vw;
  }
}
/* Extra small *//*# sourceMappingURL=main.css.map */