@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@400;500;600;700&display=swap");

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
  list-style-type: none;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

html {
  font-size: 100%;
  box-sizing: inherit;
  scroll-behavior: smooth;
  height: -webkit-fill-available;
}

body {
  font-family: "Rubik", sans-serif;
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 400;
  line-height: 1.5;
  max-width: 1140px;
  margin: auto;
  overflow-x: hidden;
}

main {
  overflow: hidden;
}

.sum a {
  text-decoration: none;
  text-align: center;
  color: black;
}

.sum.header {
  display: grid;
  grid-template-columns: 160px auto auto;
  gap: 13px;
  text-align: center;
  padding: 15px 70px;
  /* ddd */
  margin: auto;
  max-width: 1140px;
}

.sum.header a {
  font-family: "Rubik", sans-serif;
  font-weight: 410;
  line-height: 22px;
}

.sum .nav {
  display: grid;
  grid-template-columns: 1px 1px 50px 70px 80px 200px 100px 1px 1px;
  margin: auto;
  gap: 20px;
}

.sum .headericon {
  display: grid;
  grid-template-columns: 40px 40px 40px;
  line-height: 50px;
  justify-content: right;
  align-items: center;
}

.header.on-scroll {
  background: white;
  box-shadow: var(--shadow-medium);
}

.navbar {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 4.25rem;
  margin: 0 auto;
}


.menu {
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  height: auto;
  padding: 4rem 0 3rem;
  overflow: hidden;
  background-color: var(--color-black-300);
  box-shadow: var(--shadow-medium);
  transition: all 0.4s ease-in-out;
}

.menu.is-active {
  top: 0;
  width: 100%;
  height: auto;
}

.menu.is-active .menu-link {
  color: white;

}

.menu-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
  row-gap: 1.25rem;
}

.menu-link {
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  color: black;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.menu-block {
  display: inline-block;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.25;
  user-select: none;
  white-space: nowrap;
  text-align: center;
  margin-left: auto;
  padding: 0.65rem 1.5rem;
  border-radius: 3rem;
  text-transform: capitalize;
  color: var(--color-white);
  background-color: var(--color-blue-600);
  box-shadow: var(--shadow-medium);
  transition: all 0.3s ease-in-out;
}

.menu-language {
  padding-left: 85px;
}

.highlight_fix {
  color: #cc9f52;
  padding-left: 10px;
}

#red {
  color: red;
}

.EN {
  color: red;
}

.menu.is-active .menu-inner {
  background-color: black;
}

.subdiv {
  display: flex;
  padding-right: 15%;
  padding-left: 30%;
  padding-top: 5%;
  padding-bottom: 5%;
  border-top: 1px solid orange;
}

.subdiv span {
  font-size: 14px;
}

.subdiv img {
  width: 15px;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 500px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  line-height: 2;
  text-align: center;
}

.dropdown {
  line-height: 22px;
}

.dropdown-content a {
  color: rgb(68, 68, 68);
  padding: 8px 14px;
  text-decoration: none;
  display: block;
}

#dpcontent {
  margin-left: -800%;
  margin-top: -13%;

}

@media only screen and (max-width: 1064px) {
  .menuicon {
    display: none;
  }

  #dpcontent {
    margin-left: 0px;
  }
}

@media only screen and (min-width: 1064px) {
  .menudownloadicon {
    display: none;

  }
}


.dropdown-content a:hover {
  background-color: #f1f1f1
}

.dropdown:hover .dropdown-content {
  display: block;
}

@media only screen and (min-width: 48rem) {
  .menu {
    position: relative;
    top: 0;
    width: auto;
    height: auto;
    padding: 0rem;
    padding-left: 70px;
    background: none;
    box-shadow: none;
  }

  .menu-inner {
    display: flex;
    flex-direction: row;
    column-gap: 2.5rem;
    margin: 0 auto;
  }

  .menu-link {
    text-transform: capitalize;
  }

  .menu-block {
    margin-left: 2rem;
  }
}

.burger {
  position: relative;
  display: block;
  cursor: pointer;
  user-select: none;
  order: -1;
  z-index: 10;
  width: 1.75rem;
  height: 1rem;
  border: none;
  outline: none;
  background: none;
  visibility: visible;
  transform: rotate(0deg);
  transition: 0.35s ease;
}

@media only screen and (min-width: 48rem) {
  .burger {
    display: none;
    visibility: hidden;
  }
}

.burger-line {
  position: absolute;
  display: block;
  right: 0;
  width: 100%;
  height: 2px;
  border: none;
  outline: none;
  opacity: 1;
  transform: rotate(0deg);
  background-color: black;
  transition: 0.25s ease-in-out;
}

.burger-line:nth-child(1) {
  top: 0px;
}

.burger-line:nth-child(2) {
  top: 0.5rem;
}

.burger-line:nth-child(3) {
  top: 1rem;
}

.burger.is-active .burger-line:nth-child(1) {
  top: 0.5rem;
  transform: rotate(135deg);
}

.burger.is-active .burger-line:nth-child(2) {
  right: -1.5rem;
  opacity: 0;
  visibility: hidden;
}

.burger.is-active .burger-line:nth-child(3) {
  top: 0.5rem;
  transform: rotate(-135deg);
}

.home-logo img {
  height: 55px;
}

.menu-link:hover {
  color: #e60012;
}

.menu-link:active,
.menu-link:focus {
  color: #e60012;
}

@media only screen and (max-width: 600px) {
  .menu-language {
    display: none;
  }

  .home-logo img {
    height: 36px;
    margin-left: 10px;
  }

  .navbar {
    justify-content: space-between;
  }
}

/* business-overview-section */


.business-overview-section {

  position: relative;

  padding-bottom: 40%;
}

.business-overview-section img {
  width: 100%;
  float: right;
  padding-right: 0;
  /* height: 450px; */
}

.business-overview-header {
  position: absolute;
  top: 11vw;
  left: 44.2%;
}

.business-overview-header2 {
  position: absolute;
  bottom: 5%;
}

.business-overview-header h2 {
  color: #ffffff;
  font-size: 40px;
  position: absolute;
  text-transform: uppercase;
  padding-left: 0%;
  width: 520px;
  padding-bottom: 22px;
  font-weight: 600;
}

.button_download a {
  color: rgb(255, 255, 255);
  text-transform: uppercase;
  text-decoration: none;
  background-color: rgb(140, 52, 61);
  padding: 7px 20px 7px 42px;
  font-size: 20px;
  border-radius: 20px 20px 0px 0px;
  position: absolute;
  z-index: 999;
  right: 40px;
  top: 41px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
  transition: all 0.5s ease 0s;
}

span.dot_circule_downlod {
  background: linear-gradient(90deg, rgb(175, 103, 42) 0%, rgb(249, 180, 94) 35%, rgb(175, 103, 42) 95%);
  padding: 15px;
  border-radius: 30px;
  position: absolute;
  left: -35px;
  text-align: center;
  top: -10px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.business-overview-header2 h1 {
  padding-bottom: 0;
  padding-left: 120%;
  width: 230%;
  font-size: 4.7vw;
  color: #9ebd2b;
  font-weight: bolder;
  line-height: 1.0;

}

.business-overview-content {

  background-color: #f7f9ee;
  /* padding-top: 4%; */
  text-align: center;
  align-items: center;
  color: #608734;
  padding: 6% 13%;
}

.business-overview-content p {
  font-size: 2vw;
  font-weight: 410;
}

.business-overview-sm-img {
  margin-top: -6px;
  padding: 0;
  position: relative;
}

.check-header {
  position: absolute;
  color: #c4965d;
  font-weight: 700;
  bottom: 0;
  left: 25px;
  font-size: 28px;
}

.check-header2 {
  position: absolute;
  color: #732489;
  font-weight: 700;
  bottom: 4px;
  left: 24vw;
  font-size: 1vw;
}

.togglebar {
  position: absolute;
  right: 65px;
  top: 25px;
  display: none;
}

/* business body */
.business-overview-body {
  max-width: 1140px;
}


/* footer check box */
.footer-checkbox {
  position: relative;
}

.scroll-left-right button {
  border: none;
  background-color: #c4965d;
  width: 13vw;
  font-size: 14px;
  color: white;
  padding: 3px;
  border-radius: 0 10px;
}

.scroll-left-right {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
}

.scroll-to-left {
  /* float: left; */
  padding-right: 2vw;
}

.scroll-to-right {
  /* float: right; */
}

.checkbox-section {
  padding-top: 4%;
}

/* progress */
.progress {
  /* width: 9%; */
  margin-left: 20%;
  height: 2vw;
  border-radius: unset;


}

.progress-progress {
  display: flex;

  margin-left: 20%;

}

.year-hk-head {
  display: flex;
  justify-content: center;
  margin: 30px 0;
}

.year-hk-head img {
  width: 100%;
}

/* .new img{
    margin-left: -190px !important;
  } */
.new2 img {
  margin-left: 0px !important;
}

.year-hk-head-left {
  padding: 1%;

}

.year-hk-head-centre {
  padding: 1%;
}

.year-hk-head-right {
  padding: 1%;
  padding-left: 20%;
  float: right;
}

.year {
  font-size: 1vw;
}

.color1 {
  background-color: #1a489d;
  color: #1a489d;
  /* color: black; */
}

.color2 {
  background-color: #7fbe26;
  color: #7fbe26;
  /* color: black; */
}

.color3 {
  background-color: #ed6c00;
  color: #ed6c00;
  /* color: black; */
}

.color4 {
  background-color: #c94e97;
  color: #c94e97;
  /* color: black; */
}

.color5 {
  color: #2b9ed4;
  background-color: #2b9ed4;
}

.progress-content {
  position: absolute;
  top: -18px;
  font-size: 0.8vw;
  align-self: center;
}

.progress-content span {
  font-size: 16px;
  /* padding-left: 5px; */
}

.progress-bar-main {
  position: relative;
  height: 30px;
}

.progress-flex {
  display: flex;
}

.progress-left-flex {
  flex: 75%;
  border-right: solid 6px #0067b6;
  line-height: normal;
}

.progress-right-outer-div {
  flex: 27%;
  margin-left: 2%;
}

.progress-right-flex {
  display: flex;
  flex: 27%;
  font-size: 1.2vw;
  /* height: 1.5vw; */
  height: min-content;
}

.progress-right-flex-1 {
  width: 1vw;
}

.progress-right-flex-2 {
  /* height: 1.5vw; */
  padding-left: 3%;
}

.progress-right-flex-2 p {
  margin: 0 0 0px;
}

/*  footer  */
#backtotop {

  align-items: center;

  justify-content: center;

  background-color: #da9f60;

  float: right;

  margin-right: 90px;

  align-items: center;

  justify-content: center;

  border: none;

  font-size: 38px;

  width: 70px;

  height: 37px;

  border-radius: 40px 40px 0 0;

  color: white;

  bottom: 150px;

  right: 30px;

  position: absolute;
}

.fa-caret-up:before {
  font-size: 35px
}

.scroll-to-top {
  position: relative;
  /* bottom: 5vw; */
}

.scroll-to-top button {
  font-size: 2.5vw;
}

.footer {
  text-align: center;
  padding: 30px 0px;
}

.footer p {
  font-size: 14px;
}

.togglebar {
  position: absolute;
  right: 65px;
  top: 25px;
  display: none;
}

@media (max-width: 1600px) {
  .business-overview-header {
    position: absolute;
    top: 13vw;
    left: 44.3%;
  }
    .scroll-left-right button {
      width: 19vw;
      font-size: 14px;
    }
}

@media (max-width: 1440px) {
  .business-overview-header {
    top: 15.5vw;
    left: 43.7%;
  }
}

@media (max-width: 1280px) {
  .business-overview-header {
    top: 17.2vw;
  }
}
@media (max-width: 1100px) {
.business-overview-header {
    left: 42.8%;
  }
}
@media (max-width: 1024px) {
  .scroll-left-right {
    display: flex;
  }

  #backtotop {
    margin-right: 0;
  }

  .business-overview-header {
    top: 20vw;
    left: 46.7%;
  }

  .check-header {
    font-size: 2vw;
    bottom: 0px;
  }

  .scroll-left-right button {
    width: 23vw;
    font-size: 14px;
  }

  .year-hk-head img {
    width: 100%;
    margin-left: 0px;
  }

  .business-overview-header h2 {
    font-size: 30px;
    display: flex;
    width: 100%;
  }
}

@media (max-width:992px) {
  .business-overview-header h2 {
    font-size: 25px;
    display: flex;
    width: 100%;
  }

  .scroll-left-right button {
    width: 27vw;
    font-size: 12px;
  }

  .button_download a {
    right: 0;
    top: 41px;
  }

  .business-overview-header {
    top: 19vw;
    left: 45%;
  }
}

@media only screen and(min-width:800px) {

  .scroll-left-right {
    height: 2vh;
  }

}


@media only screen and (max-width: 761px) {
  .sum.header .dwn {
    width: 200px;
  }

  .subdiv a {
    width: 50px !important;
  }

  .subdiv {
    padding-left: 5%;
  }

  .menu-language {
    display: none;
  }

  .home-logo img {
    height: 36px;
    margin-left: 10px;
  }

  .navbar {
    justify-content: space-between;
  }

  .business-overview-header {
    top: 20vw;
    left: 48.2%;
  }

  .business-overview-header h2 {
    font-size: 19px;
    padding-left: 0%;
    width: 100%;
  }

  .year-hk-head img {
    width: 100%;
  }

  .check-header {
    font-weight: 600;
    bottom: 4px;
    left: 14vw;
    font-size: 7px;
  }

  .check-header2 {
    font-weight: 600;
    bottom: 4px;
    left: 46vw;
    font-size: 7px;
  }

  .scroll-to-left {
    float: left;
    padding-right: 3vw;
    padding-top: 0px;
    margin-left: 0px;
  }

  .scroll-to-right {
    padding-top: 0px;
    float: right;
  }

  .scroll-left-right button {
    width: 28vw;
    font-size: 1.7vw;
  }

  .scroll-left-right {}

  #backtotop {
    bottom: 80px;
  }

  .fa-caret-up:before {
    font-size: 22px;
  }

  .footer {
    padding: 15px 20px 10px;
  }

  .footer p {
    font-size: 10px;
  }
}

@media (max-width: 430px) {
  #backtotop {
    height: 25px !important;
    width: 45px !important;
    bottom: 80px !important;
    font-size: 28px;
  }

  .button_download {
    top: 0px !important;
  }

  .button_download a {
    right: 0;
    top: 10px;
    font-size: 12px;
  }

  span.dot_circule_downlod {
    left: -16px;
    top: -8px;
    width: 47px;
    height: 47px;
  }

  .business-overview-header {
    top: 16vw;
    left: 42.7%;
  }

  .business-overview-header h2 {
    font-size: 16px;
  }

  .year-hk-head img {
    width: 100%;
    margin-left: 0px;
  }

  .business-overview-section img {
    height: auto;
  }

  .check-header {
    left: 3vw;
    font-size: 10px;
  }

  .scroll-left-right {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
  }
}

@media (max-width: 395px) {
  .business-overview-header {
    top: 16vw;
    left: 43.4%;
  }

  .business-overview-header h2 {
    font-size: 14px;
  }
}


@media (max-width: 390px) {
  .business-overview-header {
    top: 15vw;
    left: 44.3%;
  }

  .business-overview-header h2 {
    font-size: 19px;
    padding-left: 0%;
    width: 63%;
  }
}

@media (max-width: 375px) {

  .business-overview-header h2 {
    font-size: 13px;
    padding-left: 0%;
    width: 63%;
  }
}

@media (max-width: 374px) {
  .business-overview-header {
    top: 15vw;
    left: 43.4%;
  }
}

@media (max-width: 325px) {
  .business-overview-header {
    top: 14vw;
    left: 41.1%;
  }
}